    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      background: linear-gradient(180deg, #0A1128 0%, #1E3A8A 50%, #0F1729 100%);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .luxury-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .luxury-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(63, 186, 194, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .luxury-card:hover::before {
      opacity: 1;
    }

    .luxury-card:hover {
      transform: translateY(-12px) scale(1.02);
      border-color: rgba(63, 186, 194, 0.5);
      box-shadow: 0 30px 80px rgba(63, 186, 194, 0.3), 0 0 80px rgba(63, 186, 194, 0.2);
    }

    .glass-effect {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(30px);
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .fade-in {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: all 0.4s ease;
    }

    .sticky-header.scrolled {
      background: rgba(10, 17, 40, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(63, 186, 194, 0.2);
      border-bottom: 1px solid rgba(63, 186, 194, 0.2);
    }

    .btn-luxury {
      background: linear-gradient(135deg, #3FBAC2 0%, #1E3A8A 100%);
      box-shadow: 0 10px 40px rgba(63, 186, 194, 0.4);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-luxury::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-luxury:hover::before {
      width: 400px;
      height: 400px;
    }

    .btn-luxury:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 50px rgba(63, 186, 194, 0.6);
    }

    .btn-luxury span {
      position: relative;
      z-index: 1;
    }

    .shimmer {
      position: relative;
      overflow: hidden;
    }

    .shimmer::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    .gradient-text-luxury {
      background: linear-gradient(135deg, #3FBAC2 0%, #FFD700 50%, #3FBAC2 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: gradient-shift 3s ease infinite;
    }

    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .floating {
      animation: floating 6s ease-in-out infinite;
    }

    @keyframes floating {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .glow-effect {
      box-shadow: 0 0 40px rgba(63, 186, 194, 0.5), 0 0 80px rgba(63, 186, 194, 0.3);
      animation: glow-pulse 2s ease-in-out infinite;
    }

    @keyframes glow-pulse {
      0%, 100% { box-shadow: 0 0 40px rgba(63, 186, 194, 0.5), 0 0 80px rgba(63, 186, 194, 0.3); }
      50% { box-shadow: 0 0 60px rgba(63, 186, 194, 0.7), 0 0 120px rgba(63, 186, 194, 0.5); }
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-content {
      background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(10, 17, 40, 0.95));
      backdrop-filter: blur(30px);
      border: 1px solid rgba(63, 186, 194, 0.3);
      border-radius: 24px;
      max-width: 550px;
      width: 90%;
      max-height: 90%;
      overflow-y: auto;
      transform: scale(0.8);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 30px 80px rgba(63, 186, 194, 0.4);
    }

    .modal-overlay.active .modal-content {
      transform: scale(1);
    }

    .hero-section {
      min-height: 100%;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      opacity: 0.1;
      background-image: 
        radial-gradient(circle at 20% 50%, rgba(63, 186, 194, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 58, 138, 0.3) 0%, transparent 50%);
    }

    .particles {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(63, 186, 194, 0.5);
      border-radius: 50%;
      animation: float-particle 20s infinite ease-in-out;
    }

    @keyframes float-particle {
      0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translate(100px, -1000px);
        opacity: 0;
      }
    }

    .stats-counter {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 900;
      background: linear-gradient(135deg, #3FBAC2, #FFD700);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(63, 186, 194, 0.5);
    }

    input, textarea, select {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      color: rgb(9, 9, 9) !important;
      transition: all 0.3s ease;
    }

    input:focus, textarea:focus, select:focus {
      background: rgba(255, 255, 255, 0.08) !important;
      border-color: #3FBAC2 !important;
      box-shadow: 0 0 30px rgba(63, 186, 194, 0.3) !important;
    }

    input::placeholder, textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);    }

    label {
      color: #3FBAC2 !important;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.875rem;
    }

    .testimonial-luxury {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 2.5rem;
      position: relative;
      transition: all 0.4s ease;
    }

    .testimonial-luxury::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 30px;
      font-size: 6rem;
      color: #3FBAC2;
      opacity: 0.2;
      font-family: Georgia, serif;
    }

    .testimonial-luxury:hover {
      background: rgba(63, 186, 194, 0.05);
      border-color: rgba(63, 186, 194, 0.3);
      transform: translateY(-8px);
    }

    .service-icon-luxury {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(63, 186, 194, 0.2), rgba(30, 58, 138, 0.2));
      border: 1px solid rgba(63, 186, 194, 0.3);
      transition: all 0.4s ease;
      position: relative;
    }

    .luxury-card:hover .service-icon-luxury {
      background: linear-gradient(135deg, #3FBAC2, #1E3A8A);
      transform: scale(1.15) rotate(-5deg);
      box-shadow: 0 20px 40px rgba(63, 186, 194, 0.6);
    }

    .section-dark {
      background: rgba(10, 17, 40, 0.5);
      backdrop-filter: blur(20px);
    }

    .luxury-divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, #3FBAC2, transparent);
      margin: 4rem 0;
    }

    ::-webkit-scrollbar {
      width: 12px;
    }

    ::-webkit-scrollbar-track {
      background: #0A1128;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #3FBAC2, #1E3A8A);
      border-radius: 6px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #1E3A8A, #3FBAC2);
    }
