@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&display=swap');

:root {
  --navy: #050b14;
  --navy-light: #0d1a2d;
  --navy-mid: #14243b;
  --gold: #dfb163;
  --gold-light: #f5cf8c;
  --gold-dark: #a87f3b;
  --white: #ffffff;
  --off-white: #f0f0f0;
  --gray-100: #e2e2e2;
  --gray-400: #8892b0;
  --gray-500: #ccd6f6;
  --success: #10b981;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 32px;
  --shadow-glow: 0 0 30px rgba(223, 177, 99, 0.2);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --glass-bg: rgba(13, 26, 45, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-500);
  background-color: var(--navy);
  background-image: url('dark-texture.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Typography */
h1, h2, h3, h4 { 
  font-family: 'Playfair Display', serif; 
  color: var(--white); 
  line-height: 1.1; 
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; letter-spacing: -1px; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
p { margin-bottom: 1.5rem; font-size: 1.125rem; }

.text-gold { color: var(--gold); }
.text-italic { font-style: italic; font-weight: 400; color: var(--gold-light); }

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

/* Buttons & Links */
a { text-decoration: none; color: inherit; transition: var(--transition); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 40px; border-radius: 100px; font-weight: 600; font-size: 1.1rem;
  letter-spacing: 0.5px; transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden; z-index: 1; border: none; font-family: 'Outfit', sans-serif;
}

.btn::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: 0.6s; z-index: -1;
}

.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-4px); box-shadow: 0 10px 40px rgba(223, 177, 99, 0.4);
}

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(223, 177, 99, 0.05);
  transform: translateY(-4px);
}

/* Glassmorphism Utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 25px 0; transition: var(--transition); border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 15px 0; background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 15px; }
.logo-mark {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--navy);
  box-shadow: 0 4px 20px rgba(223,177,99,0.3);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child { font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: 0.5px; line-height: 1.1; }
.logo-text span:last-child { font-size: 0.75rem; font-weight: 400; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }

.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-link { font-size: 1rem; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  background: rgba(223, 177, 99, 0.1); border: 1px solid var(--gold); color: var(--gold);
}
.nav-cta:hover { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-glow); }

/* Hero Section */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 100px; overflow: hidden;
}
.hero-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2;
  background-image: url('hero-premium.png?v=2'); background-size: cover; background-position: center;
  transform: scale(1.05); animation: slowZoom 30s infinite alternate linear;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
  background: linear-gradient(to right, rgba(5,11,20,0.95) 0%, rgba(5,11,20,0.7) 40%, rgba(5,11,20,0.2) 100%);
}

.hero-content { max-width: 800px; }
.status-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px; color: var(--success); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 30px;
}
.status-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }

.hero-title { margin-bottom: 25px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-desc { font-size: 1.35rem; color: var(--gray-500); max-width: 600px; margin-bottom: 45px; font-weight: 300; }
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* Features Bar */
.features-bar { margin-top: -60px; position: relative; z-index: 10; }
.features-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--glass-border); border-radius: var(--radius); overflow: hidden;
}
.feature-item {
  background: rgba(13, 26, 45, 0.8); backdrop-filter: blur(20px);
  padding: 40px 30px; text-align: center; transition: var(--transition);
}
.feature-item:hover { background: rgba(20, 36, 59, 0.9); transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; display: block; }
.feature-item h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; color: var(--white); margin-bottom: 5px; }
.feature-item p { font-size: 0.9rem; color: var(--gray-400); margin: 0; }

/* Sections Common */
.section { padding: 140px 0; position: relative; }
.section-tag {
  display: inline-block; font-size: 0.85rem; font-weight: 600; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px;
  position: relative; padding-left: 50px;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 40px; height: 1px; background: var(--gold);
}
.section-header { margin-bottom: 70px; max-width: 700px; }

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px;
}
.service-card {
  padding: 10px; transition: var(--transition); position: relative; overflow: hidden; group;
}
.service-card:hover { transform: translateY(-10px); }
.service-img {
  width: 100%; height: 280px; border-radius: var(--radius); overflow: hidden; margin-bottom: 30px;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy), transparent); opacity: 0.8;
}
.service-content { padding: 0 20px; position: relative; z-index: 2; margin-top: -60px; }
.service-num { 
  font-family: 'Playfair Display', serif; font-size: 4rem; font-style: italic; 
  color: rgba(255,255,255,0.05); position: absolute; right: 0; top: -30px; font-weight: 900; line-height: 1;
}
.service-card h3 { font-size: 1.8rem; margin-bottom: 15px; color: var(--white); }
.service-card p { color: var(--gray-400); }
.service-link {
  display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; margin-top: 15px;
}
.service-link i { transition: transform 0.3s; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* Process / How it works */
.process-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.process-img-box { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.process-img-box img { width: 100%; height: 700px; object-fit: cover; border-radius: var(--radius-lg); }
.process-floating-card {
  position: absolute; bottom: -30px; right: -30px; padding: 40px; width: 300px;
}
.process-floating-card .big-num { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold); font-weight: 900; line-height: 1; margin-bottom: 10px; }

.process-steps { display: flex; flex-direction: column; gap: 40px; }
.step { display: flex; gap: 25px; position: relative; }
.step::before {
  content: ''; position: absolute; left: 25px; top: 60px; bottom: -40px;
  width: 1px; background: rgba(223, 177, 99, 0.2); z-index: -1;
}
.step:last-child::before { display: none; }
.step-icon {
  width: 50px; height: 50px; min-width: 50px; border-radius: 50%;
  background: var(--navy-mid); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5); position: relative; z-index: 2;
}
.step-content h3 { font-size: 1.5rem; margin-bottom: 10px; font-family: 'Outfit', sans-serif; }

/* Testimonials / Marquee */
.testimonials-section { overflow: hidden; }
.marquee-wrapper { position: relative; display: flex; overflow: hidden; user-select: none; gap: 30px; padding: 20px 0; }
.marquee-content { flex-shrink: 0; display: flex; gap: 30px; animation: scroll 40s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 30px)); } }
.review-card {
  width: 450px; padding: 40px; flex-shrink: 0;
  background: linear-gradient(145deg, rgba(20,36,59,0.5), rgba(13,26,45,0.8));
}
.stars { color: var(--gold); margin-bottom: 20px; font-size: 1.2rem; letter-spacing: 2px; }
.review-text { font-size: 1.15rem; color: var(--white); font-weight: 300; font-style: italic; margin-bottom: 30px; line-height: 1.8; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer-avatar {
  width: 50px; height: 50px; border-radius: 50%; background: var(--navy);
  border: 1px solid var(--gold-dark); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700;
}
.reviewer-info h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; margin-bottom: 2px; }
.reviewer-info p { margin: 0; font-size: 0.85rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }

/* Contact CTA */
.cta-box {
  padding: 80px; border-radius: var(--radius-lg); text-align: center;
  background: linear-gradient(45deg, rgba(13,26,45,0.9), rgba(5,11,20,0.9)), url('dark-texture.png');
  background-size: cover; background-position: center; border: 1px solid rgba(223, 177, 99, 0.2);
  position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(223, 177, 99, 0.1) 0%, transparent 50%); pointer-events: none;
}
.cta-box h2 { font-size: 4rem; margin-bottom: 20px; }
.cta-box p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 40px; }

/* Footer */
.footer { border-top: 1px solid var(--glass-border); padding: 80px 0 30px; background: rgba(5,11,20,0.95); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-desc { font-size: 1rem; color: var(--gray-400); max-width: 350px; margin-top: 20px; }
.footer-title { color: var(--white); font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: var(--gray-400); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; color: var(--gray-400); }
.contact-item i { color: var(--gold); font-size: 1.2rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; color: var(--gray-500); }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.active { 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; }

/* Responsive */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .process-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .process-img-box img { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--navy); padding: 30px; flex-direction: column; border-bottom: 1px solid var(--glass-border); }
  .nav-links.active { display: flex; }
  .nav-cta { display: none; }
  .hero { padding-top: 150px; }
  .features-bar { margin-top: 40px; }
  .features-inner { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
}
