/*==============================
GLOBAL
===============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f5;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    width:100%;
    display:block;
}

.container{
    width:92%;
    max-width:1280px;
    margin:auto;
}

/*==============================
HEADER
===============================*/

header{
        background:#21492d;

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:20px 0;
    transition:.4s ease;
}

header.scrolled{

    background:rgba(34,78,41,.95);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 10px 35px rgba(0,0,0,.15);

    padding:14px 0;
}

/*==============================
NAVBAR
===============================*/


/* Right Side */

.header-right{

    display:flex;

    align-items:center;

    gap:20px;

}

/* Active Menu */

nav ul li a.active{

    color:#B8D84F;

}

nav ul li a.active::after{

    width:100%;

}


header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/*==============================
LOGO
===============================*/

.logo{

    display:flex;

    align-items:center;
}

.logo img{

    width:55px;
border-radius:30%;
    transition:.3s;
}

.logo img:hover{

    transform:scale(1.05);
}

/*==============================
NAVIGATION
===============================*/

nav{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:60px;

    padding:10px 28px;
}

nav ul{

    display:flex;

    align-items:center;

    gap:35px;
}

nav ul li{

    position:relative;
}

nav ul li a{

    color:#fff;

    font-size:15px;

    font-weight:500;

    letter-spacing:.3px;

    transition:.35s;
}

/* underline animation */

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#b8d84f;

    transition:.35s;
}

nav ul li:hover a{

    color:#b8d84f;
}

nav ul li:hover a::after{

    width:100%;
}

/*==============================
BUTTON
===============================*/

.visit-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:#b8d84f;

    color:#21492d;

    padding:14px 28px;

    border-radius:60px;

    font-size:15px;

    font-weight:600;

    transition:.35s;
}

.visit-btn:hover{

    background:#fff;

    color:#21492d;

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/*==============================
MENU ICON
===============================*/

.menu-btn{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;
}

.menu-btn:hover{

    transform:rotate(90deg);
}

/*==============================
RESPONSIVE
===============================*/

@media(max-width:992px){

nav{

    position:fixed;

    top:90px;

    left:-100%;

    width:92%;

    margin-left:4%;

    border-radius:25px;

    background:#245d2d;

    padding:30px;

    transition:.4s;
}

nav.active{

    left:0;
}

nav ul{

    flex-direction:column;

    gap:25px;

    align-items:flex-start;
}

.visit-btn{

    display:none;
}

.menu-btn{

    display:block;
}

}

@media(max-width:768px){

.logo img{

    width:60px;
}

header{

    padding:15px 0;
}

}










/*==================================
CONTACT HERO
===================================*/

.contact-banner{
margin-top: 100px;
height:72vh;

background:url("../images/farm-tour.jpg")
center/cover no-repeat;

position:relative;

display:flex;

align-items:center;

}

.contact-banner .overlay{

position:absolute;

inset:0;

background:rgba(18,60,35,.72);

}

.contact-banner .banner-content{

position:relative;

z-index:2;

max-width:720px;

color:#fff;

}

.contact-banner span{

display:inline-block;

padding:10px 24px;

background:#B8D84F;

color:#21492d;

border-radius:30px;

font-weight:600;

margin-bottom:25px;

}

.contact-banner h1{

font-size:64px;

line-height:1.1;

margin-bottom:25px;

}

.contact-banner p{

font-size:18px;

line-height:1.9;

margin-bottom:35px;

max-width:650px;

}

.breadcrumb{

display:flex;

align-items:center;

gap:12px;

color:#fff;

font-weight:500;

}

.breadcrumb a{

color:#fff;

transition:.3s;

}

.breadcrumb a:hover{

color:#B8D84F;

}

@media(max-width:768px){

.contact-banner{

height:65vh;

}

.contact-banner h1{

font-size:42px;

}

.contact-banner p{

font-size:16px;

}

}

























/*===================================
CONTACT INFORMATION
====================================*/

.contact-info{

    padding:120px 0;

    background:#f8fbf6;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.contact-card{

    background:#fff;

    border-radius:28px;

    padding:45px 30px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.contact-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#B8D84F;

    transform:scaleX(0);

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.contact-card:hover::before{

    transform:scaleX(1);

}

.contact-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(135deg,#21502f,#2f7b45);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    transition:.4s;

}

.contact-card:hover .contact-icon{

    background:#B8D84F;

    color:#21492d;

    transform:rotate(8deg) scale(1.08);

}

.contact-card h3{

    font-size:28px;

    color:#21492d;

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:18px;

}

.contact-card a{

    display:block;

    color:#21502f;

    font-weight:600;

    margin-bottom:10px;

    transition:.3s;

}

.contact-card a:hover{

    color:#8cb321;

}

.contact-card strong{

    display:block;

    font-size:20px;

    color:#21502f;

    margin-bottom:12px;

}

.contact-card small{

    color:#888;

    display:block;

    line-height:1.7;

}

/* Responsive */

@media(max-width:1100px){

.contact-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contact-info{

padding:90px 0;

}

.contact-grid{

grid-template-columns:1fr;

gap:25px;

}

.contact-card{

padding:40px 25px;

}

.contact-icon{

width:75px;

height:75px;

font-size:28px;

}

.contact-card h3{

font-size:24px;

}

}











/*===================================
CONTACT FORM
====================================*/

.contact-form-section{

    padding:120px 0;

    background:#fff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* Left */

.contact-image{

    position:relative;

}

.contact-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.reply-badge{

    position:absolute;

    bottom:35px;

    left:35px;

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:20px 28px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.reply-badge i{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#21502f;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.reply-badge h4{

    color:#21492d;

    margin-bottom:5px;

}

.reply-badge span{

    color:#777;

    font-size:14px;

}

/* Right */

.contact-form-box h2{

    font-size:48px;

    color:#21492d;

    margin:20px 0;

}

.contact-form-box p{

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.input-box{

    position:relative;

    margin-bottom:25px;

}

.input-box input,

.input-box textarea{

    width:100%;

    border:2px solid #e6e6e6;

    border-radius:16px;

    padding:18px 20px;

    font-size:16px;

    background:#fff;

    outline:none;

    transition:.35s;

}

.input-box textarea{

    resize:none;

}

.input-box label{

    position:absolute;

    top:18px;

    left:20px;

    color:#777;

    background:#fff;

    padding:0 6px;

    transition:.3s;

    pointer-events:none;

}

.input-box input:focus,

.input-box textarea:focus,

.input-box input:valid,

.input-box textarea:valid{

    border-color:#21502f;

}

.input-box input:focus + label,

.input-box textarea:focus + label,

.input-box input:valid + label,

.input-box textarea:valid + label{

    top:-10px;

    font-size:13px;

    color:#21502f;

    font-weight:600;

}

.send-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#21502f;

    color:#fff;

    border:none;

    padding:18px 36px;

    border-radius:50px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.send-btn:hover{

    background:#B8D84F;

    color:#21492d;

    transform:translateY(-4px);

}

/* Responsive */

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-image img{

height:500px;

}

}

@media(max-width:768px){

.contact-form-section{

padding:90px 0;

}

.contact-form-box h2{

font-size:36px;

}

.form-grid{

grid-template-columns:1fr;

}

.reply-badge{

position:relative;

left:0;

bottom:0;

margin-top:20px;

}

.send-btn{

width:100%;

justify-content:center;

}

}












/*===================================
FIND US
====================================*/

.find-us{

    padding:120px 0;

    background:#f8fbf6;

}

.location-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    margin-top:60px;

    align-items:center;

}

/* Map */

.map-area{

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.map-area iframe{

    width:100%;

    height:600px;

    border:none;

}

/* Info */

.location-info h3{

    font-size:42px;

    color:#21492d;

    margin-bottom:20px;

}

.location-info p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.location-list{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-bottom:40px;

}

.location-list>div{

    display:flex;

    gap:18px;

    align-items:flex-start;

}

.location-list i{

    width:60px;

    height:60px;

    flex-shrink:0;

    border-radius:50%;

    background:#21502f;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    transition:.35s;

}

.location-list>div:hover i{

    background:#B8D84F;

    color:#21492d;

    transform:rotate(10deg);

}

.location-list h4{

    color:#21492d;

    margin-bottom:8px;

    font-size:20px;

}

.location-list span{

    color:#777;

    line-height:1.7;

}

.location-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* Responsive */

@media(max-width:991px){

.location-wrapper{

grid-template-columns:1fr;

}

.map-area iframe{

height:450px;

}

}

@media(max-width:768px){

.find-us{

padding:90px 0;

}

.location-info h3{

font-size:34px;

}

.map-area iframe{

height:350px;

}

.location-buttons{

flex-direction:column;

}

.location-buttons a{

width:100%;

text-align:center;

}

.location-list i{

width:52px;

height:52px;

font-size:18px;

}

}
























/*=================================
FOOTER
==================================*/

.footer{

    background:#1b4025;

    color:#fff;

    position:relative;

    margin-top:120px;

}

.footer-top{

    height:10px;

    background:linear-gradient(90deg,#B8D84F,#2d6b38,#B8D84F);

}

.footer .container{

    padding:90px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-col p{

    color:#d7e5d6;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-col h3{

    margin-bottom:25px;

    color:#B8D84F;

    font-size:22px;

}

.footer-col ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-col ul li a{

    color:#d7e5d6;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#B8D84F;

    padding-left:8px;

}

.footer-col i{

    color:#B8D84F;

    margin-right:10px;

}

/* Social */

.social-links{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.35s;

}

.social-links a:hover{

    background:#B8D84F;

    color:#21492d;

    transform:translateY(-5px);

}

/* Newsletter */

.newsletter{

    margin-top:70px;

    background:#24552f;

    border-radius:25px;

    padding:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

}

.newsletter h2{

    margin-bottom:10px;

}

.newsletter p{

    color:#d7e5d6;

}

.newsletter form{

    display:flex;

    flex:1;

    max-width:520px;

}

.newsletter input{

    flex:1;

    padding:18px;

    border:none;

    outline:none;

    border-radius:50px 0 0 50px;

}

.newsletter button{

    border:none;

    padding:18px 35px;

    background:#B8D84F;

    color:#21492d;

    font-weight:600;

    border-radius:0 50px 50px 0;

    cursor:pointer;

}

/* Bottom */

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:50px;

    padding-top:30px;

    color:#d7e5d6;

}

/* Back To Top */

.back-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#B8D84F;

    color:#21492d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.3s;

}

.back-top:hover{

    transform:translateY(-6px);

}

/* Responsive */

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.newsletter{

flex-direction:column;

align-items:flex-start;

}

.newsletter form{

width:100%;

max-width:none;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.newsletter{

padding:30px 25px;

}

.newsletter form{

flex-direction:column;

gap:15px;

}

.newsletter input,

.newsletter button{

width:100%;

border-radius:50px;

}

.back-top{

right:20px;

bottom:20px;

width:50px;

height:50px;

}

}
