    html,
    body {
      overflow-x: hidden;
    }

    /* Chrome, Edge, Safari */
    ::-webkit-scrollbar {
      display: none;
    }

    /* Firefox */
    html {
      scrollbar-width: none;
    }

    /* Internet Explorer / old Edge */
    body {
      -ms-overflow-style: none;
    }

    :root {
      --green-dark: #0d3d1e;
      --green-mid: #1a6b35;
      --green-bright: #2ea84b;
      --green-light: #4ecb71;
      --green-pale: #d4f5de;
      --gold: #f0b429;
      --white: #ffffff;
      --gray-light: #f4f9f6;
      --gray: #6b7c74;
      --text-dark: #0a1f12;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ========= NAVBAR ========= */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(13, 61, 30, 0.97);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--green-bright);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 75px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
    }

    .nav-logo img {
      height: 52px;
      width: auto;
      filter: drop-shadow(0 0 8px rgba(46, 168, 75, 0.6));
    }

    .nav-logo-text {
      display: flex;
      flex-direction: column;
    }

    .nav-logo-text span:first-child {
      font-size: 15px;
      font-weight: 800;
      color: var(--green-light);
      letter-spacing: 1px;
      line-height: 1;
    }

    .nav-logo-text span:last-child {
      font-size: 10px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.85);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 8px 14px;
      border-radius: 4px;
      transition: all 0.3s;
    }

    .nav-links a:hover {
      color: var(--green-light);
      background: rgba(46, 168, 75, 0.12);
    }

    .nav-cta {
      background: var(--green-bright) !important;
      color: var(--white) !important;
      border-radius: 25px !important;
      padding: 10px 22px !important;
    }

    .nav-cta:hover {
      background: var(--green-light) !important;
      transform: scale(1.05);
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      cursor: pointer;
      background: rgba(46, 168, 75, 0.15);
      border: 1px solid rgba(46, 168, 75, 0.35);
      border-radius: 8px;
      padding: 8px;
      transition: background 0.3s;
      flex-shrink: 0;
    }

    .nav-hamburger:hover {
      background: rgba(46, 168, 75, 0.28);
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--green-light);
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 75px;
      left: 0;
      right: 0;
      z-index: 999;
      background: rgba(10, 48, 22, 0.98);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--green-bright);
      padding: 16px 20px 24px;
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
    }

    .mobile-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .mobile-menu ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu ul li a {
      display: block;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 12px 16px;
      border-radius: 8px;
      transition: all 0.25s;
      border-left: 3px solid transparent;
    }

    .mobile-menu ul li a:hover,
    .mobile-menu ul li a:active {
      color: var(--green-light);
      background: rgba(46, 168, 75, 0.12);
      border-left-color: var(--green-bright);
    }

    .mobile-menu ul li a.nav-cta {
      background: var(--green-bright) !important;
      color: var(--white) !important;
      border-radius: 25px !important;
      padding: 12px 22px !important;
      text-align: center;
      margin-top: 8px;
      border-left: none !important;
    }

    .mobile-menu ul li a.nav-cta:hover {
      background: var(--green-light) !important;
    }

    @media (max-width: 768px) {
      .nav-hamburger {
        display: flex;
      }

      .mobile-menu {
        display: block;
      }
    }

    /* ========= PAGES ========= */
    .page {
      display: none;
      padding-top: 75px;
      min-height: 100vh;
    }

    .page.active {
      display: block;
    }

    /* ========= HOME HERO ========= */
    .hero {
      min-height: calc(100vh - 75px);
      background: linear-gradient(135deg, var(--green-dark) 0%, #0f4a25 40%, #1a6b35 70%, #0d3d1e 100%);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232ea84b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-bg-circle {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(46, 168, 75, 0.15), transparent);
    }

    .hero-bg-circle.c1 {
      width: 600px;
      height: 600px;
      top: -100px;
      right: -150px;
    }

    .hero-bg-circle.c2 {
      width: 400px;
      height: 400px;
      bottom: -100px;
      left: -100px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1300px;
      margin: 0 auto;
      padding: 60px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-text .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(46, 168, 75, 0.2);
      border: 1px solid rgba(46, 168, 75, 0.4);
      color: var(--green-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 25px;
      margin-bottom: 24px;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      background: var(--green-light);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(1.3)
      }
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4.5vw, 62px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .hero-text h1 span {
      color: var(--green-light);
    }

    .hero-text p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 480px;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--green-bright);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 8px 25px rgba(46, 168, 75, 0.4);
    }

    .btn-primary:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(46, 168, 75, 0.5);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-outline:hover {
      border-color: var(--green-light);
      color: var(--green-light);
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item {
      text-align: center;
    }

    .stat-item .num {
      font-size: 32px;
      font-weight: 900;
      color: var(--green-light);
      line-height: 1;
    }

    .stat-item .lbl {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    /* Hero right card */
    .hero-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 24px;
      backdrop-filter: blur(10px);
    }

    .hero-card h3 {
      color: var(--green-light);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .quick-form input,
    .quick-form select {
      width: 100%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 10px;
      padding: 12px 16px;
      color: var(--white);
      font-size: 13px;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 12px;
      outline: none;
      transition: border 0.3s;
    }

    .quick-form input:focus,
    .quick-form select:focus {
      border-color: var(--green-light);
    }

    .quick-form input::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .quick-form select option {
      background: var(--green-dark);
      color: var(--white);
    }

    .quick-form .btn-primary {
      width: 100%;
      justify-content: center;
    }

    /* ========= SECTION BASE ========= */
    .section {
      padding: 90px 40px;
    }

    .section-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-label {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green-mid);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 25px;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 16px;
    }

    .section-title span {
      color: var(--green-bright);
    }

    .section-sub {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ========= SERVICES ========= */
    .services-bg {
      background: var(--gray-light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .service-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 28px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid transparent;
      transition: all 0.4s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--green-bright);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .service-card:hover {
      border-color: var(--green-pale);
      box-shadow: 0 12px 40px rgba(46, 168, 75, 0.15);
      transform: translateY(-6px);
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      width: 72px;
      height: 72px;
      background: var(--green-pale);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 32px;
      transition: all 0.3s;
    }

    .service-card:hover .service-icon {
      background: var(--green-bright);
    }

    .service-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 12px;
    }

    .service-card p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.7;
    }

    /* ========= GALLERY ========= */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 220px;
      gap: 16px;
      grid-auto-flow: dense;
    }

    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: var(--green-pale);
      cursor: pointer;
    }

    .gallery-item.tall {
      grid-row: span 2;
    }

    .gallery-item.wide {
      grid-column: span 2;
    }

    .gallery-item img,
    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
      min-height: 200px;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13, 61, 30, 0.85), transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .gallery-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
      z-index: 3;
      pointer-events: none;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
    }

    .video-item .gallery-content {
      top: 15px !important;
      left: 15px !important;
      transform: none !important;
      text-align: left;
    }

    .video-item .gallery-overlay {
      z-index: 1;
    }

    .video-item video {
      position: relative;
      z-index: 2;
    }


    .gallery-content strong {
      display: block;
      font-size: 20px;
      margin-top: 5px;
    }

    .gallery-content p {
      font-size: 13px;
      opacity: 0.9;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay span {
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
    }

    .gallery-item video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      min-height: 200px;
      background: linear-gradient(135deg, var(--green-pale), #b8e8c8);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--green-mid);
      font-size: 13px;
      font-weight: 600;
      text-align: center;
      padding: 20px;
    }

    .gallery-placeholder .icon {
      font-size: 36px;
    }

    .upload-hint {
      background: var(--green-pale);
      border: 2px dashed var(--green-mid);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
      color: var(--green-mid);
      font-size: 13px;
      margin-top: 20px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .upload-hint:hover {
      background: #c4f0d4;
      border-color: var(--green-bright);
    }

    /* ========= ABOUT ========= */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .about-visual {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      height: 420px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .about-badge-float {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--white);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      text-align: center;
      min-width: 140px;
    }

    .about-badge-float .num {
      font-size: 36px;
      font-weight: 900;
      color: var(--green-bright);
      line-height: 1;
    }

    .about-badge-float .lbl {
      font-size: 11px;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
    }

    .about-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .about-content p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px;
    }

    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .feature-icon-sm {
      width: 40px;
      height: 40px;
      background: var(--green-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .about-feature h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 4px;
    }

    .about-feature p {
      font-size: 12px;
      color: var(--gray);
      margin: 0;
    }

    /* ========= WHY CHOOSE ========= */
    .why-bg {
      background: linear-gradient(135deg, var(--green-dark) 0%, #0f4a25 100%);
      color: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .why-card {
      text-align: center;
      padding: 36px 20px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s;
    }

    .why-card:hover {
      background: rgba(46, 168, 75, 0.15);
      border-color: rgba(46, 168, 75, 0.3);
      transform: translateY(-4px);
    }

    .why-num {
      font-size: 42px;
      font-weight: 900;
      color: var(--green-light);
      line-height: 1;
      margin-bottom: 10px;
    }

    .why-card h4 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .why-card p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.6;
    }

    /* ========= PARTNERS ========= */
    .partners-bg {
      background: var(--gray-light);
    }

    .partners-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }

    .partner-chip {
      background: var(--white);
      border: 2px solid var(--green-pale);
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      min-width: 120px;
      transition: all 0.3s;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
      cursor: default;
    }

    .partner-chip:hover {
      border-color: var(--green-bright);
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(46, 168, 75, 0.15);
    }

    .partner-logo-box {
      width: 200px;
      height: 104px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px 10px;
      overflow: hidden;
    }

    .partner-logo-box img {
      max-width: 100%;
      max-height: 88px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .partner-chip span {
      font-size: 11px;
      font-weight: 700;
      color: var(--gray);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      text-align: center;
    }

    .partners-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: stretch;
    }

    /* ========= TESTIMONIALS ========= */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      border: 1px solid var(--green-pale);
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(46, 168, 75, 0.12);
    }

    .stars {
      color: var(--gold);
      font-size: 16px;
      margin-bottom: 16px;
    }

    .testimonial-card p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green-bright);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
    }

    .author-info h5 {
      font-size: 14px;
      font-weight: 700;
      color: var(--green-dark);
    }

    .author-info span {
      font-size: 11px;
      color: var(--gray);
    }

    /* ========= CONTACT FORM ========= */
    .contact-bg {
      background: var(--gray-light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 16px;
    }

    .contact-info p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      background: var(--green-pale);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-detail h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 4px;
    }

    .contact-detail p {
      font-size: 13px;
      color: var(--gray);
      margin: 0;
      line-height: 1.5;
    }

    .form-box {
      background: var(--white);
      border-radius: 24px;
      padding: 44px;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
    }

    .form-subtitle {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      border: 2px solid #e8f5ec;
      border-radius: 12px;
      padding: 13px 16px;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      color: var(--text-dark);
      outline: none;
      transition: all 0.3s;
      background: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green-bright);
      box-shadow: 0 0 0 4px rgba(46, 168, 75, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-group select option {
      font-family: 'Montserrat', sans-serif;
    }

    .submit-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: var(--white);
      border: none;
      border-radius: 12px;
      padding: 16px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .submit-btn:hover {
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(46, 168, 75, 0.35);
    }

    .success-msg {
      display: none;
      background: var(--green-pale);
      border: 2px solid var(--green-bright);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      color: var(--green-dark);
      font-weight: 600;
      font-size: 14px;
      margin-top: 16px;
    }

    /* ========= PROCESS ========= */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--green-pale), var(--green-bright), var(--green-pale));
      z-index: 0;
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-circle {
      width: 72px;
      height: 72px;
      background: var(--white);
      border: 3px solid var(--green-bright);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 26px;
      box-shadow: 0 4px 15px rgba(46, 168, 75, 0.2);
      transition: all 0.3s;
    }

    .process-step:hover .step-circle {
      background: var(--green-bright);
    }

    .process-step h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 11px;
      color: var(--gray);
      line-height: 1.5;
    }

    /* ========= PRICING ========= */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .pricing-card {
      background: var(--white);
      border-radius: 24px;
      padding: 40px 32px;
      text-align: center;
      border: 2px solid var(--green-pale);
      transition: all 0.3s;
      position: relative;
    }

    .pricing-card.popular {
      border-color: var(--green-bright);
      box-shadow: 0 12px 40px rgba(46, 168, 75, 0.18);
      transform: scale(1.04);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green-bright);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 5px 20px;
      border-radius: 25px;
      text-transform: uppercase;
    }

    .pricing-icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .pricing-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--green-dark);
      margin-bottom: 8px;
    }

    .pricing-card .price {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 24px;
      font-style: italic;
    }

    .pricing-list {
      list-style: none;
      margin-bottom: 28px;
      text-align: left;
    }

    .pricing-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--gray);
      padding: 8px 0;
      border-bottom: 1px solid var(--green-pale);
    }

    .pricing-list li::before {
      content: '✓';
      color: var(--green-bright);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pricing-card .btn-primary {
      width: 100%;
      justify-content: center;
    }

    .pricing-card:hover {
      box-shadow: 0 12px 40px rgba(46, 168, 75, 0.15);
    }

    /* ========= FOOTER ========= */
    footer {
      background: var(--green-dark);
      color: var(--white);
      padding: 70px 40px 30px;
    }

    .footer-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 50px;
    }

    .footer-brand img {
      height: 60px;
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.8;
      max-width: 260px;
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--green-light);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.3s;
      cursor: pointer;
    }

    .footer-col ul li a:hover {
      color: var(--green-light);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
    }

    .footer-socials {
      margin-right: 50px;
      display: flex;
      gap: 15px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }

    .social-btn:hover {
      background: var(--green-bright);
      border-color: var(--green-bright);
      color: var(--white);
    }

    /* ========= FLOATING CTA ========= */
    .floating-contact {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
    }

    .floating-call {
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      cursor: pointer;
    }

    .contact-option {
      position: absolute;
      right: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s;
      
    }

    .call {
      bottom: 70px;
    }

    .whatsapp {
      bottom: 130px;
    }

    .email {
      bottom: 190px;
    }

    .floating-contact.active .contact-option {
      opacity: 1;
      pointer-events: auto;
    }

    .main-contact {
      width: 45px;
      transition: 0.3s;
    }

    /* .floating-call:hover { width: 55px; } */
    .floating-call:hover .main-contact {
      transform: scale(1.15);
    }

    .contact-option:hover .contact-whatsapp,
    .contact-option:hover .contact-email,
    .contact-option:hover .contact-call {
      transform: scale(1.15);
    }

    .contact-message {
      position: absolute;
      right: 70px;
      background: #d30909;
      color: #fff;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 13px;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(10px);
      transition: 0.3s;
      pointer-events: none;
    }

    .contact-message.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* ========= ABOUT PAGE ========= */
    .about-hero {
      background: linear-gradient(135deg, var(--green-dark), #1a6b35);
      padding: 80px 40px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232ea84b' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .about-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      position: relative;
    }

    .about-hero p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 16px;
      position: relative;
    }

    .page-hero {
      background: linear-gradient(135deg, var(--green-dark), #1a6b35);
      padding: 70px 40px;
      text-align: center;
      color: var(--white);
    }

    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 46px;
      font-weight: 700;
    }

    .page-hero p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 12px;
    }

    /* Values grid */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .value-card {
      background: var(--green-pale);
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      transition: all 0.3s;
    }

    .value-card:hover {
      background: var(--green-bright);
      color: var(--white);
      transform: translateY(-4px);
    }

    .value-card .v-icon {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .value-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 10px;
    }

    .value-card p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.7;
    }

    .value-card:hover h3,
    .value-card:hover p {
      color: rgba(255, 255, 255, 0.9);
    }

    /* Team */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .team-card {
      text-align: center;
    }

    .team-avatar {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: var(--white);
      font-weight: 700;
      box-shadow: 0 6px 20px rgba(46, 168, 75, 0.3);
    }

    .team-card h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 4px;
    }

    .team-card span {
      font-size: 12px;
      color: var(--gray);
    }

    /* Gallery page */
    .gallery-filter {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .filter-btn {
      background: var(--white);
      border: 2px solid var(--green-pale);
      border-radius: 25px;
      padding: 9px 22px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray);
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Montserrat', sans-serif;
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--green-dark);
      color: var(--white);
      border-color: var(--green-dark);
    }

    .gallery-page-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-page-item {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: var(--green-pale);
      aspect-ratio: 4/3;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .gallery-page-item:hover {
      transform: scale(1.02);
    }

    .gallery-page-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-page-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(46, 168, 75, 0.75), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .gallery-page-item:hover::after {
      opacity: 1;
    }

    .gallery-page-item:hover img {
      transform: scale(1.05);
      transition: transform 0.4s;
    }

    .gallery-add-box {
      margin-top: 30px;
      grid-column: span 3;
      background: linear-gradient(135deg, var(--green-pale), #c4efd4);
      border: 3px dashed var(--green-mid);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      color: var(--green-dark);
    }

    .gallery-add-box h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .gallery-add-box p {
      font-size: 14px;
      color: var(--gray);
      margin-bottom: 24px;
    }

    /* Upload section */
    .photo-categories {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .photo-cat {
      background: var(--white);
      border-radius: 20px;
      padding: 32px;
      text-align: center;
      border: 2px solid var(--green-pale);
      transition: all 0.3s;
    }

    .photo-cat:hover {
      border-color: var(--green-bright);
      box-shadow: 0 8px 28px rgba(46, 168, 75, 0.12);
    }

    .photo-cat .cat-icon {
      font-size: 40px;
      margin-bottom: 14px;
    }

    .photo-cat h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
    }

    .photo-cat p {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.6;
    }

    /* FAQ */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border-radius: 16px;
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    }

    .faq-q {
      padding: 20px 24px;
      font-size: 14px;
      font-weight: 700;
      color: var(--green-dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }

    .faq-q:hover {
      background: var(--green-pale);
    }

    .faq-a {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s;
      font-size: 13px;
      color: var(--gray);
      line-height: 1.8;
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 20px;
    }

    .faq-arrow {
      transition: transform 0.3s;
      font-size: 12px;
      color: var(--green-bright);
    }

    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-steps {
        grid-template-columns: repeat(3, 1fr);
      }

      .process-steps::before {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .logo-title {
        font-size: 14px;
      }

      nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      .hero-content {
        grid-template-columns: 1fr;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .pricing-card.popular {
        transform: none;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gallery-add-box {
        grid-column: span 2;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .photo-categories {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
      }

      .section {
        padding: 60px 20px;
      }

      footer {
        padding: 50px 20px 24px;
      }

      .hero-content {
        padding: 40px 20px;
      }

      .about-hero,
      .page-hero {
        padding: 50px 20px;
      }

      .about-hero h1,
      .page-hero h1 {
        font-size: 32px;
      }

      .partners-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .partner-chip {
        width: 100%;
      }

      .partner-logo-box {
        width: 100%;
        height: 90px;
      }
    }
    @media (max-width: 768px) {

  .why-grid {
    grid-template-columns: 1fr 1fr; /* 2 cards per row */
    gap: 16px;
  }

  .why-card {
    padding: 24px 16px;
  }

  .why-num {
    font-size: 32px;
  }

}