
    :root {
      --bg: #fafafa;
      --fg: #1a2744;
      --muted: #6b7280;
      --accent: #c9a227;
      --accent-hover: #b8922a;
      --card: #ffffff;
      --border: #e5e7eb;
      --navy: #1a2744;
      --navy-light: #2d3a52;
      --gold-soft: rgba(201, 162, 39, 0.15);
    }

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

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .font-display {
      font-family: 'DM Serif Display', serif;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--navy);
      border-radius: 5px;
    }

    /* Header styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      background: transparent;
    }

    .header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 20px rgba(26, 39, 68, 0.1);
      backdrop-filter: blur(10px);
    }

    .header.scrolled .nav-link {
      color: var(--fg);
    }

    .header.scrolled .logo-text {
      color: var(--fg);
    }

    .nav-link {
      position: relative;
      color: white;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    /* Hero section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--navy) 0%, #0f1629 100%);
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      background-image: 
        radial-gradient(circle at 20% 80%, var(--gold-soft) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 20s linear infinite;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(60px, 60px); }
    }

    .hero-image {
      position: absolute;
      inset: 0;
      background: url('../img/hero.avif') center/cover;
      opacity: 0.15;
      mix-blend-mode: overlay;
    }

    /* Floating elements */
    .float-element {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .float-1 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
      opacity: 0.1;
      top: 10%;
      right: 10%;
      animation: float1 8s ease-in-out infinite;
    }

    .float-2 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      bottom: 20%;
      left: 5%;
      animation: float2 10s ease-in-out infinite;
    }

    @keyframes float1 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-30px, 30px) scale(1.1); }
    }

    @keyframes float2 {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(20px, -20px) scale(1.05); }
    }

    /* Buttons */
    .btn-primary {
      background: var(--accent);
      color: var(--fg);
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid var(--accent);
      cursor: pointer;
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      border-color: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.3);
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

    /* Section animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* Service cards */
    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(26, 39, 68, 0.12);
      border-color: var(--accent);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--gold-soft);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      background: var(--accent);
    }

    .service-card:hover .service-icon svg {
      stroke: var(--fg);
    }

    /* Benefits */
    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .benefit-item:hover {
      background: var(--gold-soft);
    }

    /* Form styles */
    .form-input {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid var(--border);
      border-radius: 6px;
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      transition: all 0.3s ease;
      background: var(--card);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 4px var(--gold-soft);
    }

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

    /* Testimonials carousel */
    .testimonial-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s ease;
    }

    .testimonial-card {
      min-width: 400px;
      background: var(--card);
      border-radius: 12px;
      padding: 32px;
      border: 1px solid var(--border);
      position: relative;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        min-width: 300px;
      }
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 16px;
      left: 24px;
      font-size: 80px;
      font-family: 'DM Serif Display', serif;
      color: var(--gold-soft);
      line-height: 1;
    }

    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26, 39, 68, 0.8);
      backdrop-filter: blur(4px);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-content {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: var(--card);
      border-radius: 16px;
      max-width: 600px;
      width: 90%;
      max-height: 80vh;
      overflow-y: auto;
      z-index: 2001;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal-content.active {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1);
    }

    /* Stars */
    .star {
      color: var(--accent);
    }

    /* Footer wave */
    .footer-wave {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--bg);
      clip-path: ellipse(60% 100% at 50% 0%);
    }

    /* Counter animation */
    .counter {
      font-size: 48px;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--navy);
      z-index: 1001;
      transition: right 0.3s ease;
      padding: 80px 24px 24px;
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Focus styles */
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* File input */
    .file-upload {
      border: 2px dashed var(--border);
      border-radius: 8px;
      padding: 24px;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .file-upload:hover {
      border-color: var(--accent);
      background: var(--gold-soft);
    }

    /* Map container */
    .map-container {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    /* Success message */
    .success-message {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      display: none;
    }

    .success-message.show {
      display: block;
      animation: slideIn 0.5s ease;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Carousel dots */
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .carousel-dot.active {
      background: var(--accent);
      width: 30px;
      border-radius: 5px;
    }
  