/*==================================================
        TEKİMAŞ TARIM - İLETİŞİM SAYFASI
==================================================*/

:root{
    --green:#2f8b3c;
    --green-dark:#216b2c;
    --green-light:#eef8ed;
    --burgundy:#870025;
    --white:#ffffff;
    --text:#1d2b20;
    --muted:#68726a;
    --border:#e5ece4;
    --shadow:0 20px 55px rgba(20,55,27,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#f8faf7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    display:block;
    max-width:100%;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}


/*==================================================
                    HEADER
==================================================*/

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 2px 18px rgba(0,0,0,.08);
}

.main-header .container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;
}

.logo{
    flex-shrink:0;
    display:flex;
    align-items:center;
}

.logo img{
    width:250px;
    height:auto;
    display:block;
}


nav ul{
    display:flex;
    align-items:center;
    gap:42px;

    list-style:none;
    margin:0;
    padding:0;
}


nav a{
    position:relative;

    color:#292f2a;
    font-size:16px;
    font-weight:600;

    transition:.3s;
}

nav a::after{
    content:"";

    position:absolute;
    left:0;
    bottom:-9px;

    width:0;
    height:3px;

    border-radius:20px;
    background:var(--green);

    transition:.3s;
}

nav a:hover,
nav a.active{
    color:var(--green);
}

nav a:hover::after,
nav a.active::after{
    width:100%;
}

.header-phone{

    display:flex;
    align-items:center;
    gap:10px;

    background:#2f9139;
    color:#fff;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    text-decoration:none;

}

.header-phone:hover{
    background:var(--green-dark);
    transform:translateY(-3px);
}


/*==================================================
                    PAGE HERO
==================================================*/

.page-hero{
    min-height:460px;
    margin-top:100px;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:
        url("../img/hero-v2.jpg")
        center center/cover
        no-repeat;
}

.page-hero-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(5,20,8,.46),
            rgba(5,20,8,.68)
        );
}

.page-hero-content{
    position:relative;
    z-index:2;

    color:#fff;
}

.page-hero-content span{
    display:inline-block;

    margin-bottom:18px;

    color:#9ce38d;

    font-size:15px;
    font-weight:700;
    letter-spacing:5px;
}

.page-hero-content h1{
    margin-bottom:18px;

    font-size:68px;
    font-weight:800;
}

.page-hero-content p{
    max-width:760px;
    margin:auto;

    font-size:20px;
    line-height:1.8;

    color:rgba(255,255,255,.9);
}


/*==================================================
                İLETİŞİM KARTLARI
==================================================*/

.contact-section{
    padding:110px 0 80px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span,
.small-title{
    display:inline-block;

    color:var(--green);

    font-size:15px;
    font-weight:800;
    letter-spacing:4px;
}

.section-title h2{
    margin:14px 0;

    color:#17351d;

    font-size:46px;
}

.section-title p{
    max-width:700px;
    margin:auto;

    color:var(--muted);

    font-size:17px;
    line-height:1.8;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:24px;
}

.contact-card{
    min-height:270px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:32px 24px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:24px;

    text-align:center;

    box-shadow:0 12px 35px rgba(30,70,35,.07);

    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.contact-icon{
    width:72px;
    height:72px;

    margin-bottom:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    background:var(--green);

    border-radius:22px;

    font-size:28px;

    box-shadow:0 12px 28px rgba(47,139,60,.28);
}

.contact-icon.whatsapp{
    background:#25d366;
}

.contact-card h3{
    margin-bottom:10px;

    color:#1d4425;

    font-size:22px;
}

.contact-card p{
    min-height:48px;

    color:var(--muted);
    font-size:15px;
    line-height:1.6;
}

.contact-card span{
    margin-top:15px;

    color:var(--green);

    font-size:14px;
    font-weight:700;
}


/*==================================================
                FORM VE HARİTA
==================================================*/

.contact-main{
    padding:40px 0 120px;
}

.contact-layout{
    display:grid;
    grid-template-columns:1.05fr .95fr;

    gap:35px;
}

.contact-form-box,
.map-box{
    background:#fff;

    border-radius:28px;

    box-shadow:var(--shadow);
}

.contact-form-box{
    padding:50px;
}

.contact-form-box h2{
    margin:12px 0 14px;

    color:#183a20;

    font-size:40px;
}

.form-description{
    margin-bottom:32px;

    color:var(--muted);
    line-height:1.8;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:20px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;

    margin-bottom:9px;

    color:#2b3a2d;

    font-size:14px;
    font-weight:700;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:15px 17px;

    color:#263029;
    background:#f8faf7;

    border:1px solid #dfe8de;
    border-radius:13px;

    outline:none;

    font-family:'Poppins',sans-serif;
    font-size:14px;

    transition:.3s;
}

.form-group textarea{
    resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    background:#fff;

    border-color:var(--green);

    box-shadow:0 0 0 4px rgba(47,139,60,.10);
}

.submit-button{
    border:none;
    cursor:pointer;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 32px;

    color:#fff;
    background:
        linear-gradient(
            135deg,
            #55bd45,
            #237e30
        );

    border-radius:45px;

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:700;

    box-shadow:0 14px 30px rgba(47,139,60,.30);

    transition:.35s;
}

.submit-button:hover{
    transform:translateY(-4px);

    box-shadow:0 20px 38px rgba(47,139,60,.40);
}

.map-box{
    min-height:620px;

    position:relative;
    overflow:hidden;
}

.map-box iframe{
    display:block;

    width:100%;
    height:100%;
    min-height:620px;
}

.map-info{
    position:absolute;
    left:25px;
    right:25px;
    bottom:25px;

    display:flex;
    align-items:center;
    gap:16px;

    padding:20px;

    background:rgba(255,255,255,.94);
    backdrop-filter:blur(10px);

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.16);
}

.map-info i{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    background:var(--green);

    border-radius:15px;
}

.map-info strong,
.map-info span{
    display:block;
    line-height:1.7;
    color:#666;
}

.map-info strong{
    display:block;
    margin-bottom:8px;
    font-size:20px;
    color:#17351d;
}

.map-info span{
    margin-top:4px;

    color:var(--muted);
    font-size:14px;
}


/*==================================================
                    FOOTER
==================================================*/

.footer{
    color:#fff;
    background:#102716;
}

.footer-content{
    padding:70px 0;

    display:grid;
    grid-template-columns:1.3fr .7fr 1fr;

    gap:70px;
}

.footer-brand img{
    width:260px;
    margin-bottom:20px;

    filter:brightness(0) invert(1);
}

.footer-brand p{
    max-width:420px;

    color:rgba(255,255,255,.72);
    line-height:1.8;
}

.footer h3{
    margin-bottom:20px;

    color:#fff;
    font-size:19px;
}

.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-links a,
.footer-contact a,
.footer-contact p{
    margin-bottom:12px;

    color:rgba(255,255,255,.75);
    font-size:14px;

    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#8ddb76;
    transform:translateX(4px);
}

.footer-contact i{
    width:24px;

    color:#85d872;
}

.footer-bottom{
    padding:20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);
}

.footer-bottom p{
    color:rgba(255,255,255,.65);
    font-size:13px;
}
.footer-address{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:0;
}

.footer-address i{
    color:#74d15d;
    margin-top:4px;
    font-size:18px;
    flex-shrink:0;
}

.footer-address span{
    line-height:1.8;
    color:#fff;
}

/*==================================================
                    RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .logo img{
        width:210px;
    }

    nav ul{
        gap:22px;
    }

    .header-phone{
        display:none;
    }

    .contact-cards{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:900px){

    .header-container{
        min-height:auto;

        padding:15px 0;

        flex-direction:column;
    }

    .main-header{
        position:relative;
    }

    .page-hero{
        margin-top:0;
    }

    nav ul{
        justify-content:center;
        flex-wrap:wrap;
    }

    .contact-layout{
        grid-template-columns:1fr;
    }

    .footer-content{
        grid-template-columns:1fr;
        gap:40px;
    }

}

@media(max-width:650px){

    .logo img{
        width:190px;
    }

    nav ul{
        gap:14px;
    }

    nav a{
        font-size:13px;
    }

    .page-hero{
        min-height:390px;
    }

    .page-hero-content h1{
        font-size:44px;
    }

    .page-hero-content p{
        font-size:16px;
    }

    .contact-section{
        padding:80px 0 50px;
    }

    .section-title h2{
        font-size:34px;
    }

    .contact-cards{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:28px 20px;
    }

    .contact-form-box h2{
        font-size:32px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .map-box,
    .map-box iframe{
        min-height:480px;
    }

}
.page-hero{
    margin-top:105px;
}