@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Colors - High Fidelity Palette */
  --navy: #060d18;
  --navy-mid: #0a1628;
  --navy-light: #112240;
  --navy-glass: rgba(6, 13, 24, 0.85);
  
  --gold-raw: 195, 160, 65; /* r,g,b for opacity control */
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a68b3d;
  --gold-pale: #fcf8eb;
  
  --white: #ffffff;
  --off-white: #fafafa;
  --text-dark: #0a111a;
  --text-muted: #5e6c84;
  --text-on-navy: rgba(255, 255, 255, 0.75);
  
  /* Borders & Glass */
  --border-light: rgba(0, 0, 0, 0.06);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(201, 168, 76, 0.3);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.25);
  --shadow-premium: 0 30px 100px rgba(6, 13, 24, 0.15);
  
  /* Utility */
  --radius: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
}

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

.bg-off { 
  background: var(--off-white); 
  background-image: radial-gradient(var(--border-gold) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
p { font-size: 1rem; color: var(--text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 1.2rem;
  border: 1px solid var(--border-gold);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-glass);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}
.navbar.scrolled { height: 72px; background: var(--navy); box-shadow: var(--shadow-md); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  color: var(--navy); font-family: 'Playfair Display', serif;
}
.nav-logo-text { line-height: 1; }
.nav-logo-text span:first-child {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.nav-logo-text span:last-child {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.25s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(201,168,76,0.1);
}

.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute; top: calc(100% - 2px); left: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); min-width: 220px;
  padding: 8px; display: none;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -15px; left: 0; right: 0; height: 15px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 16px !important;
  border-radius: 8px; color: rgba(255,255,255,0.75) !important;
}
.dropdown-menu a:hover { background: rgba(201,168,76,0.12) !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 700 !important; border-radius: 50px !important;
  padding: 10px 24px !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(201,168,76,0.4) !important; background: rgba(201,168,76,0.1) !important; color: var(--gold) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,51,96,0.6) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 1.5rem;
  color: var(--gold); font-size: 0.85rem; font-weight: 500;
}
.hero-badge::before { content: '★'; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.95rem;
  padding: 16px 36px; border-radius: var(--radius-full); text-decoration: none;
  border: none; cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 20px 50px rgba(201, 168, 76, 0.4); }

.btn-outline {
  background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white); font-size: 0.95rem; font-weight: 500;
  padding: 16px 36px; border-radius: var(--radius-full); text-decoration: none;
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-outline:hover { 
  background: rgba(255, 255, 255, 0.05); 
  border-color: var(--gold); 
  color: var(--white); 
  transform: translateY(-3px);
}

.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--gold); display: block; }
.stat-item .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── HERO FORM ─── */
.hero-form-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px 32px; 
  box-shadow: var(--shadow-premium);
  position: relative;
  border: 1px solid var(--border-light);
}
.hero-form-card::before {
  content: '';
  position: absolute; top: -1px; left: -1px; right: -1px; height: 6px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 4px; }
.hero-form-card p { font-size: 0.82rem; margin-bottom: 1.2rem; }

.form-group { margin-bottom: 10px; }
.form-group label { 
  display: block; 
  font-size: 0.72rem; 
  font-weight: 700; 
  color: var(--navy-mid); 
  margin-bottom: 5px; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  opacity: 0.8;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 16px;
  border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  transition: var(--transition-fast); background: #fdfdfd;
  outline: none; color: var(--navy);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { 
  border-color: var(--gold); 
  background: var(--white); 
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}
.form-submit {
  width: 100%; padding: 13px;
  background: var(--navy);
  color: var(--gold); font-weight: 700; font-size: 1rem;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: var(--transition); letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}
.form-submit:hover { 
  background: var(--gold); 
  color: var(--navy); 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-gold);
}
.form-note { text-align: center; font-size: 0.75rem; color: var(--navy-mid); margin-top: 12px; opacity: 0.7; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 500;
}
.trust-item .icon { color: var(--gold); font-size: 1.2rem; }

/* ─── SECTIONS ─── */
.section { padding: 90px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.bg-navy { background: var(--navy); color: var(--off-white); }
.bg-navy h2 { color: var(--white); }
.bg-navy p { color: var(--text-on-navy); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  transition: var(--transition); position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 100%);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { 
  transform: translateY(-12px); 
  box-shadow: var(--shadow-lg); 
  border-color: var(--gold-pale);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 72px; height: 72px;
  background: var(--gold-pale);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin-bottom: 2rem;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); background: var(--white); border-color: var(--gold); }
.service-card h3 { color: var(--navy); margin-bottom: 0.7rem; font-size: 1.2rem; }
.service-card p { font-size: 0.88rem; line-height: 1.65; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold); font-size: 0.82rem; font-weight: 600;
  margin-top: 1.2rem; text-decoration: none;
  transition: gap 0.2s;
}
.service-card:hover .arrow { gap: 10px; }

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; position: relative;
}
.step-card { text-align: center; padding: 36px 24px; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: var(--shadow-gold);
}
.step-card h3 { color: var(--navy); margin-bottom: 0.6rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid #eee;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-card blockquote { font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 1rem;
}
.reviewer-info .name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.reviewer-info .role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 1rem;
  font-weight: 600; color: var(--navy); gap: 16px;
}
.faq-icon { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 90px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: #06101f;
  padding: 70px 5% 30px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 50px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin: 1rem 0; }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1rem; text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { 
  background: var(--gold); 
  color: var(--navy); 
  border-color: var(--gold); 
  transform: translateY(-5px) rotate(8deg); 
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1.2rem; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 5% 80px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-bottom: 1.5rem; font-size: 0.82rem; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); padding: 50px 40px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.about-big-num { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.5rem; }
.value-item {
  background: rgba(255,255,255,0.07); border-radius: 12px; padding: 20px;
  border: 1px solid rgba(201,168,76,0.15); text-align: left;
}
.value-item .v-icon { font-size: 1.5rem; margin-bottom: 8px; }
.value-item h4 { color: var(--gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.about-content { }
.about-content .section-label { }
.about-content h2 { color: var(--navy); margin-bottom: 1.2rem; }
.about-content > p { margin-bottom: 1rem; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 1.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.6rem; font-weight: 700;
  margin: 0 auto 12px; font-family: 'Playfair Display', serif;
  border: 3px solid var(--gold-pale);
}
.team-card h4 { color: var(--navy); font-size: 0.95rem; }
.team-card span { font-size: 0.78rem; color: var(--gold); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 40px 36px;
  position: sticky; top: 90px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 0.6rem; }
.contact-info-card > p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-size: 0.88rem; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 1.5rem; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail h4 { color: var(--gold); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-detail p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.contact-detail a { color: rgba(255,255,255,0.7); text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }

.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid #eee; }
.contact-form-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-card > p { margin-bottom: 2rem; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── SERVICE DETAIL ─── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.service-sidebar { min-width: 0; } /* prevent overflow */
.service-content h2 { color: var(--navy); margin-bottom: 1rem; }
.service-content p { margin-bottom: 1rem; }
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  padding: 12px 0; border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem;
}
.feature-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 1.5rem; }
.doc-chip {
  background: #f7f9fc; padding: 12px 16px; border-radius: 10px;
  border: 1px solid #eef2f7; font-size: 0.82rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 10px;
}
.doc-chip::before { content: '📄'; }

.service-sidebar {}
.sidebar-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 { color: var(--gold); font-size: 1rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.services-nav-list { list-style: none; }
.services-nav-list li a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.65); text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem; transition: color 0.2s;
}
.services-nav-list li a:hover,
.services-nav-list li a.active { color: var(--gold); }
.services-nav-list li a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── RESPONSIVE OVERHAUL ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; padding-bottom: 2rem; }
  .hero-form-card { order: 2; margin: 0 auto; max-width: 500px; }
  .contact-grid, .service-detail-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  :root { --radius-lg: 20px; }
  section { padding: 50px 5%; }
  .navbar { padding: 10px 5%; height: auto; min-height: 72px; }
  .nav-logo-text span:first-child { display: block; font-size: 1.1rem; } /* Show Main Name */
  .nav-logo-text span:last-child { display: none; } /* Hide Tagline */
  
  /* Mobile Menu Styling */
  .hamburger { display: flex; flex-direction: column; gap: 4px; cursor: pointer; z-index: 1001; }
  .hamburger span { width: 24px; height: 3px; background: var(--gold); border-radius: 3px; transition: .3s; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  
  .nav-links {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--navy); box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    flex-direction: column; padding: 100px 20px; 
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000; display: flex; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { display: block; padding: 15px 10px; color: rgba(255,255,255,0.8); font-weight: 500; font-size: 1rem; }
  
  .nav-links .dropdown-menu { 
    position: static !important; display: none; background: rgba(255,255,255,0.03); 
    box-shadow: none !important; border: none !important; min-width: 100%; padding-left: 20px; 
  }
  .nav-links .dropdown.open-mobile .dropdown-menu { display: block !important; }
  .nav-links .dropdown:hover .dropdown-menu:not(.open-mobile) { display: none; } /* Disable tap hover bug */
  .nav-links .dropdown > a { display: flex; justify-content: space-between; align-items: center; }
  .nav-links .dropdown > a::after { content: '+'; font-size: 1.2rem; transition: .3s; }
  .nav-links .dropdown.open-mobile > a::after { transform: rotate(45deg); color: var(--gold); }
  
  .nav-links .nav-cta { margin: 20px 10px; text-align: center; background: var(--gold); }
  
  .hero-content h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; width: 100%; max-width: 400px; margin-left: auto; margin-right: auto; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; text-align: center; }
  
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 2.5rem; }
  .stat-item { text-align: left; }
  
  .services-grid { grid-template-columns: 1fr; }
  .tax-calendar-grid { grid-template-columns: 1fr !important; }
  .docs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  section { padding: 40px 6%; }
  
  /* Floating Buttons on Mobile */
  #whatsapp-widget { bottom: 20px !important; left: 20px !important; flex-direction: column; align-items: flex-start; gap: 10px !important; }
  #wa-tooltip { max-width: 200px !important; border-radius: 12px 12px 12px 4px !important; padding: 12px 16px !important; margin-left: 0 !important; }
  #whatsapp-floating { width: 52px !important; height: 52px !important; }
  #whatsapp-floating svg { width: 28px !important; height: 28px !important; }
  
  #callback-btn-floating { bottom: 20px !important; right: 20px !important; padding: 0 !important; border-radius: 50% !important; width: 52px !important; height: 52px !important; min-width: 52px; min-height: 52px; display: flex !important; align-items: center; justify-content: center; }
  #callback-btn-floating span { display: none !important; } /* Icon only */
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-brand, .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  #wa-tooltip { transform-origin: bottom left; }
}


@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .cta-button-group { flex-direction: column; width: 100%; }
  .cta-button-group button, .cta-button-group a { width: 100%; justify-content: center; }
}

/* ─── SHIMMER ANIMATION ─── */
.shimmer {
  position: relative; overflow: hidden;
}
.shimmer::after {
  content: '';
  position: absolute; top: -50%; left: -60%; width: 20%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0%   { left: -60%; }
  20%  { left: 120%; }
  100% { left: 120%; }
}
