:root {
        --dark-green: #315e26;
        --light-green: #a5c32d;
        --bg-color: #f7f7f0;
        --text-dark: #2d2d2d;
        --white: #ffffff;
    }

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

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--bg-color);
        color: var(--text-dark);
        line-height: 1.6;
        scroll-behavior: smooth;
    }

    a,button{
      -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
            -o-transition: all 0.5s;
               transition: all 0.5s;
    }

    h1, h2, h3 {
        font-family: 'Playfair Display', serif;
        color: var(--dark-green);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width:100%;
    }

    header .container {
          max-width: 1250px;
        }

    /* --- Header & Navigation --- */
    header {
        background: #f7f7f0;
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
display: flex;
align-items: center;
justify-content: space-between;
}

nav ul {
list-style: none;
display: flex;
gap: 25px;
margin: 0;
padding: 0;
align-items: center;
}

.nav-toggle {
display: none;
background: transparent;
border: 0;
font-size: 2em;
color: #315e26;
cursor: pointer;
}

header>div.wrap {
max-width: 1250px;
width: 100%;
margin: 0 auto;
}
header>div.wrap {
  box-sizing: border-box;

}

    .logo {
        font-size: 26px;
        font-weight: 700;
        color: var(--dark-green);
        text-decoration: none;
        font-family: 'Playfair Display', serif;
    }

    .nav-links a {
text-decoration: none;
color: var(--text-dark);
margin-left: 30px;
font-weight: 400;
font-size: 16px;
transition: color 0.3s;
}

    .nav-links a:hover {
        color: var(--light-green);
    }

    nav a.cta-button {
display: block;
padding: 9px 18px;
background-color: var(--dark-green);
color: white;
font-weight: 600;
border-radius: 20px;
letter-spacing: 1px;
margin-top: 0;
transition: background-color 0.3s;
font-size: 15px;
-webkit-transition: all 0.5s;
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
transition: all 0.5s;
}

.shimmerBtn {
position: relative;
overflow: hidden;
}
.shimmerBtn span {
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
transform: skewX(-30deg);
animation: shimmer 2s infinite;
}

    /* --- Hero Section --- */
    .hero {
padding: 80px 0 100px;
background: linear-gradient(90deg ,rgb(49 94 38), rgba(247, 247, 240, 0.85)), url(img/hero-bg.webp);
background-size: cover;
background-position: center;
}

    .hero h1 {
        font-size: 48px;
        margin-bottom: 2px;
        color: #ffffff
    }

    section.hero p {
      max-width: 555px;
      font-weight: 300;
   }
     section.hero p strong{
       font-weight: 600;
     }
   section.hero p.hero-txt2{
    color:#a5c32d;
    margin-bottom: 20px;
    font-weight: 400;
  }

  section.hero a {
margin-top: 20px;
}

    .hero p {
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .cta-button {
        background-color: var(--light-green);
        color: var(--white);
        padding: 15px 40px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        display: inline-block;
        border: none;
        cursor: pointer;
        letter-spacing: 1px;
        -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
              -o-transition: all 0.5s;
                 transition: all 0.5s;
    }

    .cta-button:hover {
        background-color: var(--dark-green);
    }

    .announcement-bar {
  background-color: var(--dark-green);
  color: #ffffff;
  padding: 7px 10px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

    /* --- Appointment Form --- */
    .appointment-section {
        padding: 80px 0;
        background-color: var(--bg-color);
    }

    .form-container {
        background: var(--white);
        max-width: 700px;
        margin: 0 auto;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    form#contactForm {
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

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



    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--dark-green);
    }

    .form-group input, .form-group select, .form-group textarea {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: inherit;
        font-size: 15px;
    }

    .form-group textarea{
      height: 100px;
    }

    .form-group.full-width {
        grid-column: span 2;
    }

    .submit-btn {
        grid-column: span 2;
        background-color: var(--dark-green);
        color: white;
        padding: 15px;
        border: none;
        border-radius: 8px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 10px;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .submit-btn:hover {
        background-color: var(--light-green);
    }

    /* --- Sticky WhatsApp Button --- */
    .whatsapp-sticky {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 35px;
        box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
        z-index: 1000;
        transition: transform 0.3s;
        text-decoration: none;
    }

    .whatsapp-sticky:hover {
        transform: scale(1.1);
        color: white;
    }

    /* --- Services Section --- */
    .services {
        padding: 80px 0;
        background-color: var(--white);
    }

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

    .section-title h2 {
    font-size: 42px;
    font-weight: 600;
}

    .section-title .underline {
        width: 60px;
        height: 3px;
        background: var(--light-green);
        margin: 10px auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .service-card {
      padding: 12px;
      background: var(--bg-color);
      border-radius: 15px;
      text-align: center;
      transition: 0.3s;
      border-bottom: 4px solid transparent;
  }

    .service-card:hover {
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border-bottom: 4px solid var(--light-green);
    }

    .service-card i {
        font-size: 30px;
        color: var(--dark-green);
        margin-bottom: 15px;
    }

    section#about {
      background: var(--white);
      padding: 60px 0;
    }

    .about-image{
        text-align: center;
    }
    .about-image span {
    color: #a1b648;
}
.about-text h2 {
    font-size: 41px;
    text-align: center;
    padding-bottom: 20px;
}
.about-text p {
    line-height: 1.9em;
    margin-bottom: 15px;
}

    /* --- Contact Info --- */
    .contact-info {
        padding: 50px 0;

    }

    .info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 50px;
    }

    .info-item {
        display: flex;
        margin-bottom: 15px;
    }

    .info-item i {
        color: var(--light-green);
        margin-right: 15px;
        font-size: 20px;
    }


@keyframes shimmer {
0% {
    left: -100%
}

100% {
    left: 100%
}
}

@keyframes bg-move {
0%   { background-position: -500px 0; }
100% { background-position: 1000px 0; }
}

.announcement-bar img {
width: 24px;
vertical-align: middle;
}

    /* --- Footer --- */
    footer {
        background: var(--dark-green);
        color: var(--white);
        text-align: center;
        padding: 22px 0;
        font-size: 14px;
    }

    footer a{
      color: #a5c32d;
      text-decoration: none;
    }
    footer a:hover{
      text-decoration: underline;
    }

    .service-card img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.logo-container p:last-child {
    font-size: 14px;
    color: #829828;
    text-align: center;
}
p.logo {
    line-height: initial;
}

.section-title p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9em;
    padding-top: 14px;
}

section#contact h3 {
    padding-bottom: 16px;
}

/* -------------------------- Responsive---------------- */

@media (max-width: 980px) {
      .nav-toggle {
         display: inline-block;
}
     .nav-links.show {
display: block;
}
.nav-links {
display: none;
flex-direction: column;
background: #315e26;
position: absolute;
top: 100%;
right: 0;
left: 0;
text-align: center;
padding: 0px 0;
border-top: 1px solid rgba(255,255,255,0.2);
}
.nav-links  a {
color: #fff;
display: block;
width: 100%;
border-bottom: 1px solid rgba(255,255,255,0.2);
padding: 10px 15px;
}
.nav-links a{
 margin-left: 0;

}
a.cta-button.shimmerBtn {
background: #588f4b;
border-radius: 0;
}
a.cta-button.shimmerBtn:hover{
color: #ffffff;
}
header>div.wrap {
box-sizing: border-box;
padding: 0  5px 0 20px;
}

   }

@media (max-width: 768px) {
        .info-grid, .appointment-form {
            grid-template-columns: 1fr;
        }
        .form-group.full-width, .submit-btn {
            grid-column: span 1;
        }
        .hero h1 { font-size: 26px; }
        .nav-links { display: none; }
        section.hero p {
    font-size: 16px;
}
section.hero {
    padding: 40px 0 48px;
}
.about-text h2,
.section-title h2 {
    font-size: 26px;
    line-height: 1.4em;
}

section#about {
    padding: 40px 0;
}

.services,
.appointment-section {
    padding: 40px 0 60px;
  }
  .form-container {
    padding: 15px;
    border-radius: 15px;
}
.hero {
    background: linear-gradient(180deg ,rgb(49 94 38) 10%, rgba(247, 247, 240, 0.85)), url(img/hero-bg.webp);
    background-size: cover;
background-position: center;
}

.hero  .cta-button {
    background-color: #305d25;
  }
  .about-image span {
    font-size: 14px;
    padding-bottom: 10px;
    display: block;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.services-grid >.service-card:last-child {
    grid-column: span 2;
}
.info-item {
    margin-bottom: 12px;
}
.info-grid {
    gap: 20px;
}
.announcement-bar {
    font-size: 13px;
}
.logo {
    font-size: 22px;
    text-align: left;
  }
  .logo-container p:last-child {
    font-size: 12px;
    text-align: left;
}

}
