/* ============================================
   S. BAHETI & ASSOCIATES — Premium Stylesheet
   Version 2.0 — Refined Multi-Page Design
   ============================================ */

/* ---------- Root Variables ---------- */
:root {
  --navy: #0c1524;
  --navy-light: #162033;
  --navy-mid: #1e2d45;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-muted: #b8963f;
  --gold-subtle: rgba(201,168,76,0.08);
  --cream: #f9f8f5;
  --off-white: #fdfcfa;
  --white: #ffffff;
  --slate: #4a5568;
  --slate-light: #718096;
  --slate-muted: #a0aec0;
  --dark: #1a202c;
  --border-light: #eae8e3;
  --border-subtle: rgba(0,0,0,0.04);
  --shadow-xs: 0 1px 2px rgba(15,27,45,0.04);
  --shadow-sm: 0 2px 8px rgba(15,27,45,0.05);
  --shadow-md: 0 4px 20px rgba(15,27,45,0.07);
  --shadow-lg: 0 12px 36px rgba(15,27,45,0.09);
  --shadow-xl: 0 20px 50px rgba(15,27,45,0.12);
  --shadow-gold: 0 8px 24px rgba(201,168,76,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ---------- Base Reset & Typography ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--slate);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--cream);
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border: 2.5px solid rgba(201,168,76,0.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Navbar ---------- */
.premium-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 22px 0;
  transition: all 0.5s var(--ease);
}

.premium-nav.scrolled {
  background: rgba(12,21,36,0.96);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.9; }

.nav-logo span {
  color: var(--gold);
  font-weight: 600;
}

.nav-link-premium {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s var(--ease);
  font-family: 'Inter', sans-serif;
}

.nav-link-premium::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-link-premium:hover,
.nav-link-premium.active {
  color: #fff;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav CTA button */
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease);
  display: inline-block;
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,27,45,0.98);
  backdrop-filter: blur(20px);
  z-index: 9998;
  padding-top: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.mobile-menu a {
  display: block;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  padding: 12px 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.mobile-menu a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy-mid) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

/* Decorative geometric elements */
.hero-geo {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-geo-1 {
  width: 500px;
  height: 500px;
  top: 5%;
  right: -8%;
}

.hero-geo-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -5%;
  border-color: rgba(255,255,255,0.03);
}

.hero-geo-3 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 12%;
  background: rgba(201,168,76,0.03);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-top: 1.5rem;
}

.hero-title-gold {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.0625rem;
  font-family: 'Inter', sans-serif;
  max-width: 520px;
  line-height: 1.75;
  margin-top: 1.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
  letter-spacing: 0.015em;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- Section Layouts ---------- */
.section-premium {
  padding: 110px 0;
}

.section-premium-sm {
  padding: 80px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.section-heading {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.section-heading-white {
  color: #fff;
}

.section-desc {
  font-size: 1rem;
  color: var(--slate-light);
  max-width: 560px;
  line-height: 1.75;
}

/* ---------- Trust Signals Strip ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.trust-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.trust-text {
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.4;
}

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: all 0.45s var(--ease);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.8125rem;
  color: var(--slate);
  margin-bottom: 5px;
  line-height: 1.6;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.service-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.service-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ---------- Stats / Counter ---------- */
.stats-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: 44px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Why Choose Cards ---------- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
  height: 100%;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.15);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s var(--ease);
}

.why-card:hover .why-icon {
  background: rgba(201,168,76,0.12);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  height: 100%;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 14px;
  left: 28px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  margin-top: 28px;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--slate-light);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 6px;
  font-size: 0.8125rem;
  letter-spacing: 2px;
}

/* ---------- Industry Tags ---------- */
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  border-color: var(--gold);
  color: var(--gold-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.faq-item:hover,
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s var(--ease);
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold-muted);
}

.faq-icon,
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  color: var(--gold);
}

.faq-item.active .faq-icon,
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.75;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 45%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 35%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer-premium {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 22px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 5px 0;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 3px;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.35s var(--ease);
  margin-right: 6px;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- Form Styling ---------- */
.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-input::placeholder {
  color: var(--slate-muted);
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  display: block;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ---------- Map Container ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04), transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.page-hero .breadcrumb-item a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb-item.active {
  color: var(--gold);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.2);
  content: '/';
  padding: 0 8px;
}

/* ---------- Value Cards (About/Why) ---------- */
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.3);
}

.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

/* ---------- Service Detail Page ---------- */
.service-detail-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  transition: box-shadow 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.service-benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--slate);
  padding: 6px 0;
}

.service-benefit-list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Contact Info Cards ---------- */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.contact-info-card {
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section-premium {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-links-desktop {
    display: none !important;
  }
  .section-premium {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.125rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group a {
    text-align: center;
    justify-content: center;
  }
  .cta-banner {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }
  .service-detail-card {
    padding: 32px 24px;
  }
  .page-hero {
    padding: 140px 0 60px;
  }
  .stat-item + .stat-item::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  .stat-item {
    padding: 20px 12px;
  }
  .stat-number {
    font-size: 1.875rem;
  }
  .section-heading {
    font-size: 1.625rem;
  }
}

/* ---------- Utility Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Smooth page transitions */
.page-transition {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.whatsapp-float svg {
  display: block;
}

/* ---------- Prose Premium (Legal Pages) ---------- */
.prose-premium {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.prose-premium h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.prose-premium h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose-premium p {
  margin-bottom: 1rem;
}

.prose-premium ul,
.prose-premium ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose-premium li {
  margin-bottom: 0.4rem;
}

.prose-premium a {
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.prose-premium a:hover {
  color: #e0c068;
}

.prose-premium strong {
  color: rgba(255,255,255,0.9);
}
