html,
body {
      margin: 0;
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      box-sizing: border-box;
      color: var(--text);
      background-color: #e9edf1;
    }
    :root {
      --primary: #34be6b;
      --primary-dark: #0d8a5f;
      --black: #0f1720;
      --light-gray: #e5e7eb;
      --text: #111827;
      --muted-text: #4b5563;
      --surface: #f8fafc;
      --line: #d6dce3;
    }
    
    * {
      scroll-behavior: smooth;
    }
    
    .font-heading {
      font-family: 'Playfair Display', serif;
    }
    
.font-body {
  font-family: 'Montserrat', sans-serif;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-nav {
  height: 140px;
  max-width: 320px;
}

.brand-logo-footer {
  height: 180px;
  max-width: 270px;
}
    
    .gradient-hero {
      background:
        radial-gradient(circle at 80% 18%, rgba(16, 185, 129, 0.14), transparent 38%),
        linear-gradient(120deg, #f8fafc 0%, var(--light-gray) 58%, #cfd6de 100%);
    }

    .hero-photo {
      background-image:
        linear-gradient(115deg, rgba(15, 23, 32, 0.82) 0%, rgba(15, 23, 32, 0.62) 42%, rgba(229, 231, 235, 0.62) 100%),
        url('/src/img/Hero.jpeg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .hero-blueprint {
      background-image:
        repeating-linear-gradient(0deg, rgba(15, 23, 32, 0.08) 0, rgba(15, 23, 32, 0.08) 1px, transparent 1px, transparent 42px),
        repeating-linear-gradient(90deg, rgba(15, 23, 32, 0.08) 0, rgba(15, 23, 32, 0.08) 1px, transparent 1px, transparent 42px),
        linear-gradient(135deg, rgba(15, 23, 32, 0.15) 0%, transparent 55%);
      mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
      -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2));
    }
    
    .accent-green {
      color: var(--primary);
    }
    
    .bg-accent-green {
      background-color: var(--primary);
    }

    .bg-accent-green:hover {
      background-color: var(--primary-dark);
    }

    .glass-nav {
      background: rgba(248, 250, 252, 0.9);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    
    .card-hover {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.1);
    }
    
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #10b981;
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .animate-float {
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }
    
    .whatsapp-btn {
      animation: bounce-gentle 2s ease-in-out infinite;
    }
    
    @keyframes bounce-gentle {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    
    .gallery-item {
      overflow: hidden;
    }
    
    .gallery-item img {
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }

    section[id] {
      scroll-margin-top: 6rem;
    }

    .contact-shell {
      background:
        radial-gradient(circle at 100% 0%, rgba(13, 138, 95, 0.16), transparent 44%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
      border: 1px solid rgba(148, 163, 184, 0.28);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .contact-form-card {
      position: relative;
      overflow: hidden;
    }

    .contact-form-card::after {
      content: '';
      position: absolute;
      inset: auto -140px -160px auto;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(52, 190, 107, 0.16), transparent 72%);
      pointer-events: none;
    }

    .contact-info-card {
      background:
        linear-gradient(155deg, #0f3f33 0%, #13674f 52%, #0d8a5f 100%);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .contact-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 0.95rem;
      padding: 0.9rem;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.06);
      border-radius: 0.9rem;
      transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    }

    a.contact-detail-item:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .contact-channel-btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 0.75rem;
      padding: 0.7rem 0.85rem;
      font-size: 0.92rem;
      font-weight: 600;
      color: #ffffff;
      background: linear-gradient(135deg, #0d8a5f, #10b981);
      transition: transform 0.25s ease, filter 0.25s ease;
    }

    .contact-channel-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    .contact-channel-btn-muted {
      color: #0f1720;
      background: #e5e7eb;
    }

    .contact-channel-btn-muted:hover {
      filter: brightness(0.97);
    }

    .footer-shell {
      background:
        radial-gradient(circle at 10% 0%, rgba(16, 185, 129, 0.14), transparent 42%),
        linear-gradient(180deg, #0b1220 0%, #0f1720 100%);
    }

    .footer-highlight {
      background: linear-gradient(120deg, rgba(16, 185, 129, 0.2), rgba(15, 23, 32, 0.35));
    }

    .footer-link {
      color: #cbd5e1;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-link:hover {
      color: #34be6b;
      transform: translateX(2px);
    }

    .footer-social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.35rem;
      height: 2.35rem;
      border-radius: 999px;
      color: #cbd5e1;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: rgba(148, 163, 184, 0.08);
      transition: all 0.2s ease;
    }

    .footer-social-link:hover {
      color: #ffffff;
      border-color: rgba(52, 190, 107, 0.65);
      background: rgba(52, 190, 107, 0.22);
      transform: translateY(-1px);
    }

    @media (max-width: 1023px) {
      .card-hover:hover {
        transform: none;
      }
    }

@media (max-width: 767px) {
  .brand-logo-nav {
    height: 120px;
    max-width: 300px;
  }

  .brand-logo-footer {
    height: 120px;
    max-width: 260px;
  }

  .hero-photo {
    background-position: 62% center;
  }

      .hero-blueprint {
        opacity: 0.5;
      }

      .contact-shell {
        border-radius: 1.25rem;
      }

      .contact-detail-item {
        padding: 0.8rem;
      }
    }
