
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: #0a1628; color: #e2e8f0; overflow-x: hidden; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #0a1628; }
  ::-webkit-scrollbar-thumb { background: #d4a853; border-radius: 4px; }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
  }
  @keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-3deg); }
  }
  @keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,83,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212,168,83,0); }
  }
  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes scaleIn {
    from { opacity:0; transform: scale(0.8); }
    to { opacity:1; transform: scale(1); }
  }
  @keyframes slideDown {
    from { opacity:0; max-height:0; }
    to { opacity:1; max-height:500px; }
  }
  @keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .animate-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
  .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
  .animate-on-scroll.visible.delay-1 { transition-delay: 0.1s; }
  .animate-on-scroll.visible.delay-2 { transition-delay: 0.2s; }
  .animate-on-scroll.visible.delay-3 { transition-delay: 0.3s; }
  .animate-on-scroll.visible.delay-4 { transition-delay: 0.4s; }
  .animate-on-scroll.visible.delay-5 { transition-delay: 0.5s; }
  .animate-on-scroll.visible.delay-6 { transition-delay: 0.6s; }

  .glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .glass-strong {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .gold-gradient {
    background: linear-gradient(135deg, #d4a853, #e8c468, #c9952a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .gold-bg {
    background: linear-gradient(135deg, #d4a853, #c9952a);
  }
  .gold-bg:hover {
    background: linear-gradient(135deg, #e8c468, #d4a853);
  }

  .hero-bg {
    background: linear-gradient(135deg, #0a1628 0%, #0f2042 30%, #1a3a6b 60%, #0f2042 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
  }

  .floating-icon {
    animation: float 6s ease-in-out infinite;
  }
  .floating-icon-reverse {
    animation: floatReverse 7s ease-in-out infinite;
  }
  .floating-icon-slow {
    animation: float 8s ease-in-out infinite;
  }

  .btn-gold {
    background: linear-gradient(135deg, #d4a853, #c9952a);
    color: #0a1628;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  .btn-gold:hover::before { left: 100%; }
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,83,0.4);
  }

  .btn-outline {
    border: 2px solid rgba(212,168,83,0.5);
    color: #d4a853;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn-outline:hover {
    background: rgba(212,168,83,0.1);
    border-color: #d4a853;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,83,0.15);
  }

  .card-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(212,168,83,0.3);
  }

  .service-card {
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .service-card:hover {
    background: rgba(212,168,83,0.08);
    border-color: rgba(212,168,83,0.3);
    transform: translateY(-4px);
  }
  .service-card:hover .service-icon {
    background: rgba(212,168,83,0.15);
    color: #d4a853;
  }

  .tab-btn { transition: all 0.3s ease; cursor: pointer; }
  .tab-btn.active {
    background: linear-gradient(135deg, #d4a853, #c9952a);
    color: #0a1628;
    box-shadow: 0 4px 20px rgba(212,168,83,0.3);
  }
  .tab-btn:not(.active):hover {
    background: rgba(255,255,255,0.08);
  }

  .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 24px;
  }
  .faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
  }
  .faq-item .faq-chevron {
    transition: transform 0.3s ease;
  }
  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
  }

  .testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  input, select, textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 14px 18px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
  }
  input:focus, select:focus, textarea:focus {
    border-color: #d4a853;
    box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
    background: rgba(255,255,255,0.08);
  }
  input::placeholder, textarea::placeholder {
    color: #64748b;
  }
  select option {
    background: #0f2042;
    color: #e2e8f0;
  }

  .wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    overflow: hidden;
  }
  .wave-container svg {
    width: 100%;
    height: 100%;
    animation: waveMove 12s linear infinite;
  }

  .stat-number {
    font-variant-numeric: tabular-nums;
  }

  .nav-link {
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4a853;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }
  .nav-link:hover { color: #d4a853; }

  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.active { display: flex; }
  .modal-content {
    background: #0f2042;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    animation: scaleIn 0.3s ease;
  }

  .toast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 200;
    padding: 20px 28px;
    border-radius: 12px;
    font-weight: 500;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 400px;
  }
  .toast.show { transform: translateX(0); }
  .toast-success {
    background: linear-gradient(135deg, #065f46, #047857);
    border: 1px solid rgba(52,211,153,0.3);
    color: #d1fae5;
  }

  .mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(24px);
    z-index: 90;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 80px 30px 30px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-menu.open { right: 0; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 85;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-overlay.open { opacity: 1; pointer-events: all; }

  .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212,168,83,0.3);
    border-radius: 50%;
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .hero-title { font-size: 2.2rem !important; }
    .section-title { font-size: 2rem !important; }
    .modal-content { padding: 24px; }
  }

  /* ===============================
   ROOT VARIABLES (THEME)
================================ */
:root {
  --navy-950: #0b1120;
  --navy-900: #0f172a;
  --gold-500: #d4a853;
  --gold-400: #e6c06a;
  --gold-300: #f5d98c;
  --white: #ffffff;
  --slate-400: #94a3b8;
}

/* ===============================
   BASE STYLES
================================ */
body {
  background: var(--navy-950);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

/* ===============================
   SECTION STYLING
================================ */
.bg-navy-950 {
  background: var(--navy-950);
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.h-px {
  height: 1px;
}

/* Gradient divider */
.bg-gradient-to-r {
  background: linear-gradient(to right, transparent, rgba(212,168,83,0.3), transparent);
}

/* ===============================
   CONTAINER
================================ */
.max-w-3xl {
  max-width: 48rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ===============================
   GLASS EFFECT
================================ */
.glass-strong {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Rounded */
.rounded-2xl {
  border-radius: 1rem;
}

/* Padding */
.p-8 {
  padding: 2rem;
}

.p-12 {
  padding: 3rem;
}

/* ===============================
   GLOW BLOBS
================================ */
.blur-\[60px\] {
  filter: blur(60px);
}

.bg-gold-500\/10 {
  background: rgba(212,168,83,0.1);
}

.bg-gold-500\/5 {
  background: rgba(212,168,83,0.05);
}

/* ===============================
   ICON BOX
================================ */
.gold-bg {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.w-16 { width: 4rem; }
.h-16 { height: 4rem; }

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* ===============================
   TEXT STYLING
================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-white {
  color: var(--white);
}

.text-slate-400 {
  color: var(--slate-400);
}

.text-gold-400 {
  color: var(--gold-400);
}

.text-gold-300 {
  color: var(--gold-300);
}

.font-bold {
  font-weight: 700;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* ===============================
   FORM STYLING
================================ */
form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

form input::placeholder {
  color: rgba(148,163,184,0.7);
}

form input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px rgba(212,168,83,0.2);
  background: rgba(255,255,255,0.05);
}

/* Date label */
.text-xs {
  font-size: 0.75rem;
}

/* ===============================
   CHECKBOX
================================ */
input[type="checkbox"] {
  accent-color: var(--gold-500);
  cursor: pointer;
}

/* ===============================
   BUTTON (GOLD CTA)
================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,83,0.35);
}

.btn-gold:active {
  transform: scale(0.98);
}

/* ===============================
   SPACING UTILITIES
================================ */
.space-y-4 > * + * {
  margin-top: 1rem;
}

/* ===============================
   ANIMATIONS
================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spinner */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===============================
   HOVER LINKS
================================ */
a,
button {
  transition: all 0.25s ease;
}

button:hover {
  opacity: 0.95;
}

/* ===============================
   RESPONSIVE
================================ */
@media (min-width: 640px) {
  .sm\:text-3xl {
    font-size: 1.875rem;
  }

  .sm\:p-12 {
    padding: 3rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
