    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: #023336;
      background: #eaf8e7;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, textarea, select { font-family: inherit; }
    .serif { font-family: 'Playfair Display', Georgia, serif; }

    /* ===== COLOR TOKENS ===== */
    :root {
      --dark: #023336;
      --green: #4da674;
      --green-light: #c1e6ba;
      --green-bg: #eaf8e7;
      --white: #ffffff;
    }

    /* ===== UTILITY ===== */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--dark);
      transition: all 0.35s ease;
    }
    .navbar.scrolled {
      background: rgba(2, 51, 54, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 4px 30px rgba(2, 51, 54, 0.25);
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 24px; max-width: 1200px; margin: 0 auto; height: 72px;
    }
    .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .logo-img {
      height: 46px; width: auto; border-radius: 4px;
      object-fit: contain;
    }

    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
      padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500;
      color: rgba(193,230,186,0.75); transition: all 0.25s; white-space: nowrap;
      position: relative;
    }
    .nav-links a:hover { color: var(--white); background: rgba(77, 166, 116, 0.1); }
    .nav-links a.active {
      color: var(--white); background: rgba(77, 166, 116, 0.15);
    }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
      width: 20px; height: 2px; background: var(--green); border-radius: 2px;
    }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      padding: 10px; border-radius: 8px; transition: background 0.25s;
    }
    .hamburger:hover { background: rgba(77, 166, 116, 0.15); }
    .hamburger .bar {
      width: 22px; height: 2.5px; background: var(--green-light); border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }
    .hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    .mobile-menu {
      display: none; flex-direction: column; padding: 8px 20px 20px;
      background: var(--dark); border-top: 1px solid rgba(77,166,116,0.12);
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    }
    .mobile-menu.open { display: flex; max-height: 500px; }
    .mobile-menu a {
      padding: 14px 16px; font-size: 14.5px; font-weight: 500;
      color: rgba(193,230,186,0.75); border-radius: 8px; transition: all 0.25s;
      border-bottom: 1px solid rgba(77,166,116,0.07);
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { background: rgba(77,166,116,0.12); color: var(--white); }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 100vh; display: flex; align-items: center;
      padding-top: 72px; overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; z-index: 0; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(2,51,54,0.96) 0%, rgba(2,51,54,0.85) 45%, rgba(2,51,54,0.55) 100%);
    }
    .hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 10px 20px; border-radius: 50px; margin-bottom: 28px;
      background: rgba(77,166,116,0.1); border: 1px solid rgba(77,166,116,0.3);
    }
    .hero-badge svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
    .hero-badge span { font-size: 11px; font-weight: 700; color: var(--green-light); letter-spacing: 2px; text-transform: uppercase; }
    .hero h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 700;
      line-height: 1.12; color: var(--white); margin-bottom: 28px;
      text-wrap: balance;
    }
    .hero h1 .accent { color: var(--green); }
    .hero-desc { font-size: 17px; line-height: 1.75; color: rgba(193,230,186,0.85); margin-bottom: 16px; }
    .hero-sub { font-size: 15px; line-height: 1.75; color: rgba(193,230,186,0.55); margin-bottom: 40px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 15px 30px; border-radius: 12px; font-size: 14px; font-weight: 600;
      color: var(--white); background: var(--green);
      box-shadow: 0 4px 20px rgba(77,166,116,0.35); transition: all 0.3s;
    }
    .btn-primary:hover { background: #3d8d60; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(77,166,116,0.4); }
    .btn-primary svg { width: 16px; height: 16px; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 15px 30px; border-radius: 12px; font-size: 14px; font-weight: 600;
      color: var(--green-light); background: transparent;
      border: 1.5px solid rgba(193,230,186,0.25); transition: all 0.3s;
    }
    .btn-outline:hover { border-color: rgba(193,230,186,0.5); background: rgba(193,230,186,0.06); }
    .hero-fade {
      position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 1;
      background: linear-gradient(to top, var(--green-bg), transparent);
    }

    /* ===== SECTION SHARED ===== */
    .section-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 20px; border-radius: 50px; margin-bottom: 16px;
      background: rgba(193,230,186,0.4); border: 1px solid rgba(77,166,116,0.2);
      font-size: 11px; font-weight: 700; color: var(--dark); letter-spacing: 2px; text-transform: uppercase;
    }
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
      color: var(--dark); margin-bottom: 16px; text-wrap: balance;
    }
    .section-header p { max-width: 580px; margin: 0 auto; font-size: 15px; line-height: 1.75; color: rgba(2,51,54,0.6); }

    /* ===== SERVICES INFO CARDS ===== */
    .services-section { background: var(--green-bg); padding: 100px 0; }
    .services-grid {
      display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
    }
    .service-chip {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      padding: 32px 16px; border-radius: 20px; background: var(--white);
      border: 1px solid rgba(193,230,186,0.6);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .service-chip:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(2,51,54,0.1);
      border-color: var(--green);
    }
    .service-chip-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--dark);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; transition: all 0.4s;
      box-shadow: 0 4px 16px rgba(2,51,54,0.2);
    }
    .service-chip-icon svg { width: 28px; height: 28px; color: var(--green); transition: color 0.4s; }
    .service-chip:hover .service-chip-icon { background: var(--green); box-shadow: 0 6px 20px rgba(77,166,116,0.35); }
    .service-chip:hover .service-chip-icon svg { color: var(--white); }
    .service-chip h3 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; }
    .service-chip p { font-size: 12.5px; color: rgba(2,51,54,0.5); margin-top: 8px; line-height: 1.5; }

    /* ===== CONTACT MAIN SECTION ===== */
    .contact-main { background: var(--white); padding: 100px 0; }
    .contact-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 32px; align-items: start; }

    /* Contact Info Sidebar */
    .contact-info {
      background: var(--dark); border-radius: 24px; padding: 48px 36px;
      color: var(--white); position: relative; overflow: hidden;
    }
    .contact-info-pattern {
      position: absolute; bottom: -50px; right: -50px; width: 240px; height: 240px;
      border-radius: 50%; border: 50px solid rgba(77,166,116,0.05);
      pointer-events: none;
    }
    .contact-info-pattern-2 {
      position: absolute; top: -30px; left: -30px; width: 120px; height: 120px;
      border-radius: 50%; border: 30px solid rgba(77,166,116,0.04);
      pointer-events: none;
    }
    .contact-info-photo {
      width: 100%; height: 200px; object-fit: cover; border-radius: 16px;
      margin-bottom: 28px; position: relative; z-index: 2;
    }
    .contact-info h3 {
      font-size: 22px; font-weight: 700; margin-bottom: 8px;
      position: relative; z-index: 2;
    }
    .contact-info-desc {
      font-size: 14px; line-height: 1.7; color: rgba(193,230,186,0.5);
      margin-bottom: 36px; position: relative; z-index: 2;
    }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 24px; position: relative; z-index: 2;
    }
    .contact-item:last-child { margin-bottom: 0; }
    .contact-icon-wrap {
      width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
      background: rgba(77,166,116,0.12); display: flex; align-items: center; justify-content: center;
    }
    .contact-icon-wrap svg { width: 20px; height: 20px; color: var(--green); }
    .contact-item-label {
      font-size: 11px; font-weight: 700; color: var(--green);
      margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1.5px;
    }
    .contact-item-value { font-size: 15px; color: var(--white); font-weight: 500; line-height: 1.5; }
    .contact-divider {
      width: 100%; height: 1px; background: rgba(77,166,116,0.12);
      margin: 28px 0; position: relative; z-index: 2;
    }
    .contact-social { display: flex; gap: 12px; position: relative; z-index: 2; margin-top: 28px; }
    .social-btn {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(77,166,116,0.1); display: flex; align-items: center; justify-content: center;
      transition: all 0.3s; cursor: pointer;
    }
    .social-btn:hover { background: var(--green); transform: translateY(-2px); }
    .social-btn svg { width: 18px; height: 18px; color: var(--green); transition: color 0.3s; }
    .social-btn:hover svg { color: var(--white); }

    /* Contact Form */
    .contact-form-card {
      background: var(--green-bg); border: 1px solid rgba(193,230,186,0.6);
      border-radius: 24px; padding: 48px 40px;
    }
    .form-header { margin-bottom: 32px; }
    .form-header h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .form-header p { font-size: 14px; line-height: 1.7; color: rgba(2,51,54,0.5); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group:last-of-type { margin-bottom: 24px; }
    .form-label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
    .form-input, .form-textarea, .form-select {
      width: 100%; padding: 14px 16px; border-radius: 12px; font-size: 14px;
      color: var(--dark); background: var(--white);
      border: 1.5px solid rgba(193,230,186,0.7); outline: none; transition: all 0.25s;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(2,51,54,0.3); }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: var(--green); box-shadow: 0 0 0 4px rgba(77,166,116,0.1);
    }
    .form-textarea { resize: vertical; min-height: 130px; }
    .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23023336' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m2 4 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
    .form-select option { color: var(--dark); }

    .btn-submit {
      display: inline-flex; align-items: center; gap: 10px; width: 100%;
      justify-content: center;
      padding: 16px 28px; border-radius: 12px; font-size: 15px; font-weight: 700;
      color: var(--white); background: var(--green); border: none;
      box-shadow: 0 4px 16px rgba(77,166,116,0.3); transition: all 0.3s; cursor: pointer;
      letter-spacing: 0.3px;
    }
    .btn-submit:hover { background: #3d8d60; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(77,166,116,0.35); }
    .btn-submit svg { width: 18px; height: 18px; }

    .form-success {
      display: none; flex-direction: column; align-items: center;
      justify-content: center; text-align: center; padding: 60px 20px; min-height: 360px;
    }
    .form-success.show { display: flex; }
    .form-success-icon {
      width: 80px; height: 80px; border-radius: 50%; margin-bottom: 24px;
      background: rgba(77,166,116,0.1); display: flex; align-items: center; justify-content: center;
      animation: successPulse 2s ease infinite;
    }
    @keyframes successPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(77,166,116,0.2); }
      50% { box-shadow: 0 0 0 16px rgba(77,166,116,0); }
    }
    .form-success-icon svg { width: 36px; height: 36px; color: var(--green); }
    .form-success h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .form-success p { font-size: 15px; color: rgba(2,51,54,0.6); max-width: 360px; line-height: 1.7; }

    /* ===== MAP / CTA BANNER ===== */
    .cta-banner { position: relative; background: var(--dark); padding: 80px 0; overflow: hidden; }
    .cta-bg { position: absolute; inset: 0; z-index: 0; }
    .cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
    .cta-pattern {
      position: absolute; inset: 0; opacity: 0.04; z-index: 1;
      background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
      background-size: 40px 40px;
    }
    .cta-glow {
      position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
      border-radius: 50%; z-index: 1;
      background: radial-gradient(ellipse, rgba(77,166,116,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-content {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
    }
    .cta-text { max-width: 600px; }
    .cta-text h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700;
      color: var(--white); margin-bottom: 16px; text-wrap: balance;
    }
    .cta-text p { font-size: 15px; line-height: 1.75; color: rgba(193,230,186,0.55); }
    .cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

    /* ===== FOOTER ===== */
    .footer { background: var(--dark); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    .footer-logo { height: 42px; width: auto; margin-bottom: 16px; border-radius: 4px; }
    .footer-brand-text { font-size: 14px; line-height: 1.75; color: rgba(193,230,186,0.45); max-width: 340px; }
    .footer-heading {
      font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase;
      letter-spacing: 2.5px; margin-bottom: 24px;
    }
    .footer-links a {
      display: block; padding: 6px 0; font-size: 14px;
      color: rgba(193,230,186,0.45); transition: all 0.25s;
    }
    .footer-links a:hover { color: var(--white); padding-left: 4px; }
    .footer-bottom {
      border-top: 1px solid rgba(77,166,116,0.1);
      padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
      font-size: 13px; color: rgba(193,230,186,0.3);
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: rgba(193,230,186,0.3); transition: color 0.25s; }
    .footer-bottom-links a:hover { color: rgba(193,230,186,0.7); }

    /* ===== SCROLL ANIMATION ===== */
    .fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-d1 { transition-delay: 0.1s; }
    .fade-up-d2 { transition-delay: 0.2s; }
    .fade-up-d3 { transition-delay: 0.3s; }
    .fade-up-d4 { transition-delay: 0.4s; }

    /* ===== BACK TO TOP ===== */
    .back-to-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 90;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--green); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(77,166,116,0.4);
      opacity: 0; transform: translateY(20px); transition: all 0.35s;
      cursor: pointer; border: none;
    }
    .back-to-top.show { opacity: 1; transform: translateY(0); }
    .back-to-top:hover { background: #3d8d60; transform: translateY(-2px); }
    .back-to-top svg { width: 20px; height: 20px; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .contact-layout { grid-template-columns: 1fr; }
      .cta-content { flex-direction: column; text-align: center; }
      .cta-actions { justify-content: center; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .navbar-inner { height: 64px; padding: 0 16px; }
      .logo-img { height: 38px; }
      .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
      .service-chip { padding: 24px 12px; }
      .service-chip-icon { width: 52px; height: 52px; }
      .service-chip-icon svg { width: 22px; height: 22px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-outline { justify-content: center; width: 100%; }
      .services-section, .contact-main { padding: 64px 0; }
      .cta-banner { padding: 52px 0; }
      .section-header { margin-bottom: 44px; }
      .contact-info { padding: 36px 24px; }
      .contact-form-card { padding: 32px 24px; }
      .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
      .cta-actions { flex-direction: column; width: 100%; }
      .cta-actions a { width: 100%; justify-content: center; }
    }
    @media (max-width: 420px) {
      .services-grid { grid-template-columns: 1fr; }
    }