/*=====================
GOOGLE FONT
======================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=====================
RESET
======================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=====================
COLORS
======================*/

:root{

    --primary:#2E7D32;
    --secondary:#43A047;
    --accent:#8BC34A;

    --white:#fff;
    --black:#222;
    --gray:#666;
    --light:#f5f5f5;

    --shadow:0 10px 30px rgba(0,0,0,.1);

}

/*=====================
BUTTON
======================*/

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.btn:hover{

    background:#1b5e20;

    transform:translateY(-5px);

}

.btn-outline{

    background:transparent;

    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*=====================
HEADER
======================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    box-shadow:0 5px 15px rgba(0,0,0,.08);
    
}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:1px 0;

}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:200px;
    height:100px;
    object-fit:contain;

    margin-right:-72px;   /* Adjust between -10px and -25px */
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo-text h2{

    font-family:'Cinzel',serif;

    font-size:28px;

    color:#0B5D2A;

    font-weight:800;

    letter-spacing:1px;

}

.logo-text span{

    font-size:13px;
    color:#555;

    margin-top:4px;

    display:block;

    letter-spacing:0.5px;

}

.nav-links{

    display:flex;

    gap:30px;

}

.nav-links li a{

    font-size:16px;

    font-weight:500;

    position:relative;

}

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-5px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-links li a:hover::after{

    width:100%;

}

.active{

    color:var(--primary);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}


.about-company{

padding:80px 0;
margin-bottom:10px;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.image-box{

position:relative;

}

.image-box img{

width:100%;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.experience{

position:absolute;

bottom:-30px;

right:-30px;

background:#2E7D32;

padding:25px;

width:180px;

border-radius:18px;

text-align:center;

color:white;

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.experience h2{

font-size:48px;

}

.small-title{

color:#2E7D32;

font-weight:700;

letter-spacing:4px;

margin-bottom:15px;

text-transform:uppercase;

}

.right h2{

font-size:48px;

line-height:1.3;

margin-bottom:25px;

font-family:'Montserrat';

}

.right h2 span{

color:#2E7D32;

}

.about-text{

line-height:2;

font-size:17px;

color:#666;

margin-bottom:40px;

}

.features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:40px;

}

.feature{

display:flex;

gap:15px;

padding:22px;

background:#F8FBF6;

border-radius:15px;

transition:.3s;

}

.feature:hover{

transform:translateY(-8px);

box-shadow:0 15px 30px rgba(0,0,0,.08);

}

.feature i{

font-size:34px;

color:#2E7D32;

}

.feature h4{

margin-bottom:6px;

}

.about-btn{

display:inline-block;

padding:18px 38px;

background:#2E7D32;

color:#fff;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.4s;

}

.about-btn:hover{

background:#1B5E20;

}
/* =========================
   HERO
========================= */

.hero{
    height:100vh;
    background:url("../main/contact.jpeg")
    center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:750px;
}

.hero-content h4{
    letter-spacing:4px;
    margin-bottom:15px;
    color:#b7f28f;
}

.hero-content h1{
    font-size:65px;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    background:#5e9f2e;
    color:#fff;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.hero-btn:hover{
    background:#487a20;
    transform:translateY(-3px);
}

/* =========================
   CONTACT CARDS
========================= */

.contact-cards{
    width:90%;
    max-width:1400px;
    margin:-80px auto 80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
    z-index:10;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#5e9f2e;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
    font-size:22px;
}

.card p{
    color:#666;
    line-height:1.8;
}

.card a{
    color:#5e9f2e;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

.hero-content h1{
    font-size:45px;
}

.contact-cards{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.navbar{
    flex-direction:column;
    gap:15px;
}

.navbar ul{
    flex-wrap:wrap;
    justify-content:center;
}

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.contact-cards{
    grid-template-columns:1fr;
}
}


/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding:90px 8%;
    background:#f7f9f5;
}

.contact-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:stretch;
}

.contact-left{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-left h2{
    font-size:42px;
    margin-bottom:15px;
    color:#222;
}

.contact-left p{
    color:#666;
    margin-bottom:30px;
    line-height:1.8;
}

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    transition:.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    outline:none;
    border-color:#5e9f2e;
    box-shadow:0 0 8px rgba(94,159,46,.2);
}

.input-group textarea{
    height:180px;
    resize:none;
}

.contact-left button{
    background:#5e9f2e;
    color:#fff;
    border:none;
    padding:16px 35px;
    border-radius:12px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.contact-left button:hover{
    background:#46771f;
}

.contact-right iframe{
    width:100%;
    height:100%;
    min-height:650px;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* =========================
   FAQ
========================= */

.faq{
    padding:90px 8%;
    background:#fff;
}

.faq-title{
    text-align:center;
    margin-bottom:50px;
}

.faq-title h2{
    font-size:42px;
    color:#222;
}

.faq-title p{
    color:#666;
    margin-top:10px;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#f8f9f5;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.faq-item h3{
    color:#5e9f2e;
    margin-bottom:10px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#1d2a1d;
    color:#fff;
    padding:70px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
}

.footer-box p,
.footer-box a{
    color:#ddd;
    line-height:1.8;
}

.footer-box ul{
    padding:0;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box a:hover{
    color:#7fd13a;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#5e9f2e;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    color:#bbb;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    z-index:999;
}

.whatsapp:hover{
    transform:scale(1.08);
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-right iframe{
    min-height:400px;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.social-icons{
    justify-content:center;
}
}
#contact {
  padding-top: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px 72px;
  align-items: start;
}

.contact-grid h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
  margin: 10px 0 16px;
}

.contact-grid p {
  margin: 0 0 22px;
  max-width: 430px;
  line-height: 1.75;
  color: var(--muted);
}

.contact-form {
  background: linear-gradient(180deg, rgba(19, 26, 34, 0.96), rgba(16, 21, 28, 0.96));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.5);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 14.5px;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list a {
  border-bottom: 1px solid var(--border);
}

.contact-list a:hover {
  color: var(--android);
  border-color: var(--android);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--body);
  font-size: 14.5px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--flutter);
  outline: none;
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

