  /* ===== CSS Custom Properties ===== */
  :root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --green-600: #52B788;
    --green-500: #74C69D;
    --green-400: #95D5B2;
    --green-300: #B7E4C7;
    --green-200: #D8F3DC;
    --green-100: #EDF7F0;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --white: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --shadow-sm: 0 1px 3px rgba(45, 106, 79, 0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(45, 106, 79, 0.10), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(45, 106, 79, 0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(45, 106, 79, 0.15), 0 8px 20px rgba(0,0,0,0.10);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
  }

  /* ===== Reset & Base ===== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

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

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

  button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
  }

  input, textarea, select {
    font-family: inherit;
    font-size: inherit;
  }

  ul {
    list-style: none;
  }

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

  /* ===== Typography ===== */
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
  }

  .text-highlight {
    color: var(--green-700);
  }

  .text-highlight-light {
    color: var(--green-300);
  }

  /* ===== Section Shared ===== */
  .section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
  }

  .section-tag-light {
    color: var(--green-300);
    background: rgba(255,255,255,0.15);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 16px;
  }

  .section-title-light {
    color: var(--white);
  }

  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
  }

  .section-subtitle-light {
    color: rgba(255,255,255,0.8);
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-header .section-subtitle {
    margin: 0 auto;
  }

  /* ===== Buttons ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(64, 145, 108, 0.35);
  }

  .btn-primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64, 145, 108, 0.45);
  }

  .btn-secondary {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-md);
  }

  .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-white {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-md);
  }

  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
  }

  .btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn-full {
    width: 100%;
    justify-content: center;
  }

  /* ===== Navigation ===== */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.08);
    transition: var(--transition);
  }

  .nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    box-shadow: var(--shadow-sm);
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--green-900);
  }

  .nav-logo-text {
    font-family: var(--font-display);
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
  }

  .nav-link:hover {
    color: var(--green-700);
    background: var(--green-100);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    background: var(--green-700);
    padding: 10px 20px;
    border-radius: 50px;
    margin-left: 8px;
    transition: var(--transition);
  }

  .nav-cta:hover {
    background: var(--green-800);
    transform: translateY(-1px);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
  }

  .nav-toggle-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--green-800);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* ===== Hero Section ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--green-100) 50%, var(--cream-dark) 100%);
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 80%, rgba(64, 145, 108, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(82, 183, 136, 0.06) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(45, 106, 79, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }

  .hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-200);
    color: var(--green-800);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
  }

  .hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-600);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }

  .hero-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--green-900);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-subheadline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
  }

  /* Floating Stat Cards */
  .hero-float-cards {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    z-index: 2;
  }

  .float-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: float-in 0.6s ease-out both;
  }

  .float-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }

  .float-card-1 { animation-delay: 0.1s; }
  .float-card-2 { animation-delay: 0.2s; }
  .float-card-3 { animation-delay: 0.3s; }
  .float-card-4 { animation-delay: 0.4s; }

  @keyframes float-in {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .float-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .float-card-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
  }

  .float-card-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-800);
  }

  /* ===== Services Section ===== */
  .services {
    padding: 100px 24px;
    background: var(--white);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .service-card-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  .service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .service-card:hover .service-card-visual img {
    transform: scale(1.05);
  }

  .service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.4), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
  }

  .service-card:hover .service-card-overlay {
    opacity: 1;
  }

  .service-card-body {
    padding: 28px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    background: var(--green-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .service-name {
    font-size: 1.3rem;
    color: var(--green-900);
    margin-bottom: 10px;
  }

  .service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .service-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
  }

  .service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-600);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ===== About Section ===== */
  .about {
    padding: 100px 24px;
    background: var(--cream);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
  }

  .about-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-accent-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-700);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
  }

  .about-content .section-tag {
    margin-bottom: 16px;
  }

  .about-content .section-title {
    margin-bottom: 24px;
  }

  .about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-feature strong {
    display: block;
    font-size: 1rem;
    color: var(--green-800);
    margin-bottom: 2px;
  }

  .about-feature span {
    font-size: 0.9rem;
    color: var(--text-muted);
  }

  /* ===== Why Us Section ===== */
  .why-us {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
    position: relative;
    overflow: hidden;
  }

  .why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(116, 198, 157, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(82, 183, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
  }

  .why-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
  }

  .why-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    margin-bottom: 16px;
  }

  .why-card-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
  }

  .why-card-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }

  /* ===== Gallery Section ===== */
  .gallery {
    padding: 100px 24px;
    background: var(--white);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.08);
  }

  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
  }

  .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
  }

  .gallery-item-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
  }

  /* ===== CTA Section ===== */
  .cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
  }

  .cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 0%, transparent 50%),
      radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
  }

  .cta-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
  }

  .cta-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cta-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
  }

  .cta-stat:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(4px);
  }

  .cta-stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-stat-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
  }

  .cta-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
  }

  /* ===== Contact Section ===== */
  .contact {
    padding: 100px 24px;
    background: var(--cream);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .contact-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-detail-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--green-200);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-detail strong {
    display: block;
    font-size: 1rem;
    color: var(--green-800);
    margin-bottom: 4px;
  }

  .contact-detail p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .contact-detail a {
    color: var(--green-700);
    font-weight: 600;
    transition: var(--transition);
  }

  .contact-detail a:hover {
    color: var(--green-900);
  }

  /* Contact Form */
  .contact-form-wrapper {
    position: relative;
  }

  .contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
  }

  .contact-form-title {
    font-size: 1.5rem;
    color: var(--green-900);
    margin-bottom: 8px;
  }

  .contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
  }

  .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--green-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
  }

  .form-input:focus {
    border-color: var(--green-600);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
  }

  .form-input::placeholder {
    color: var(--text-muted);
  }

  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  /* Form Success */
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }

  .form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .form-success-icon {
    width: 72px;
    height: 72px;
    background: var(--green-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .form-success-title {
    font-size: 1.4rem;
    color: var(--green-800);
    margin-bottom: 10px;
  }

  .form-success-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
  }

  .form-success-text a {
    color: var(--green-700);
    font-weight: 700;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== Map Section ===== */
  .map-section {
    padding: 0 24px 0;
    background: var(--cream);
  }

  .map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-logo span {
    color: var(--green-400);
  }

  .footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
  }

  .footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-400);
    margin-bottom: 20px;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
  }

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
  }

  .footer-contact-list a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
  }

  .footer-contact-list a:hover {
    color: var(--white);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
  }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .hero-container {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .hero-float-cards {
      max-width: 500px;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-image-accent {
      right: 0;
    }

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

    .cta-card {
      grid-template-columns: 1fr;
      gap: 40px;
    }

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

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }

    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: var(--white);
      flex-direction: column;
      align-items: flex-start;
      padding: 100px 32px 40px;
      gap: 4px;
      box-shadow: var(--shadow-xl);
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.open {
      right: 0;
    }

    .nav-link {
      width: 100%;
      padding: 12px 16px;
      font-size: 1.05rem;
    }

    .nav-cta {
      margin-left: 0;
      margin-top: 16px;
      justify-content: center;
      width: 100%;
    }

    .hero {
      padding: 100px 24px 60px;
      min-height: auto;
    }

    .hero-card {
      padding: 32px;
    }

    .hero-float-cards {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .float-card {
      padding: 16px;
    }

    .float-card-icon {
      width: 40px;
      height: 40px;
    }

    .float-card-label {
      font-size: 0.7rem;
    }

    .float-card-value {
      font-size: 0.95rem;
    }

    .why-grid {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  @media (max-width: 480px) {
    .hero-float-cards {
      grid-template-columns: 1fr;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .hero-actions {
      flex-direction: column;
    }

    .hero-actions .btn {
      justify-content: center;
    }

    .cta-actions {
      flex-direction: column;
    }

    .cta-actions .btn {
      justify-content: center;
    }
  }

  /* ===== Mobile Overlay ===== */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.show {
    display: block;
  }
