/* ============================================================
   UMESH PATEL & ASSOCIATES — Chartered Accountants
   Design System: Navy · Gold · White
   ============================================================ */

/* ----- CSS Variables / Design Tokens ----- */
:root {
  /* Navy Palette */
  --navy-900: #0A1628;
  --navy-800: #0F1B2D;
  --navy-700: #1A2A44;
  --navy-600: #233654;
  --navy-500: #2D4A6F;
  --navy-400: #4A6B8F;
  --navy-300: #6B8DAF;
  --navy-200: #A0B8CC;
  --navy-100: #D0DCE8;
  --navy-50: #E8EEF5;

  /* Gold Palette */
  --gold-600: #A0842E;
  --gold-500: #C5A84A;
  --gold-400: #D4BC6A;
  --gold-300: #E0D08A;
  --gold-200: #EDE3AA;
  --gold-100: #F5F0D0;
  --gold-50: #FAF8ED;

  /* Neutral Palette */
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-50: #F3F4F6;
  --gray-100: #E5E7EB;
  --gray-200: #D1D5DB;
  --gray-300: #9CA3AF;
  --gray-400: #6B7280;
  --gray-500: #4B5563;
  --gray-600: #374151;
  --gray-700: #1F2937;
  --gray-800: #111827;
  --gray-900: #030712;

  /* Semantic Colors */
  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-500);
  --text-muted: var(--gray-400);
  --bg-primary: var(--white);
  --bg-secondary: var(--off-white);
  --bg-tertiary: var(--navy-800);
  --border-color: var(--gray-200);
  --border-light: rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
  --container: 1200px;
}

/* ----- Dark Mode Overrides ----- */
[data-theme="dark"] {
  --text-primary: var(--gray-50);
  --text-secondary: var(--navy-200);
  --text-muted: var(--navy-300);
  --bg-primary: var(--navy-900);
  --bg-secondary: var(--navy-800);
  --bg-tertiary: var(--navy-700);
  --border-color: rgba(255,255,255,0.10);
  --border-light: rgba(255,255,255,0.05);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.5);
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.125rem, 1.5vw, 1.375rem); }
p { color: var(--text-secondary); }
.gold-text { color: var(--gold-500); }
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc {
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  user-select: none;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border: 2px solid var(--gold-500);
}
.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 168, 74, 0.30);
}
.btn-outline {
  background: transparent;
  color: var(--gold-500);
  border: 2px solid var(--gold-500);
}
.btn-outline:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy-800);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.btn-dark {
  background: var(--navy-700);
  color: var(--white);
  border: 2px solid var(--navy-700);
}
.btn-dark:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 32px; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.8125rem; }
.btn-block { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ----- Header / Navigation ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition), border-color var(--transition);
}
[data-theme="dark"] .site-header {
  background: rgba(15, 27, 45, 0.92);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.brand-sub {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.brand-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 4px;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-secondary);
}
.nav-link.highlight {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
}
.nav-link.highlight:hover {
  background: var(--gold-400);
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition);
  font-size: 1.125rem;
}
.theme-toggle:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  padding: 16px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--bg-secondary);
}
.mobile-nav-link.highlight {
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
}
.mobile-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.mobile-cta-row .btn { flex: 1; }

/* ----- Hero Section ----- */
.hero {
  padding: calc(var(--header-height) + 48px) 0 80px;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 50%, #0A1628 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197,168,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,168,74,0.15);
  border: 1px solid rgba(197,168,74,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--navy-200);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--navy-100);
  font-weight: 500;
}
.hero-trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.hero-card-title {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.hero-card-sub {
  color: var(--navy-200);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}
.hero-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-100);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9375rem;
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--navy-300); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197,168,74,0.15);
}
.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 12 12'%3E%3Cpath fill='%23A0B8CC' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: var(--navy-700); color: var(--white); }
.form-textarea { min-height: 80px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ----- Section Common ----- */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--bg-secondary);
}
.section-navy {
  background: var(--navy-800);
  color: var(--white);
}
.section-navy .section-title { color: var(--white); }
.section-navy .section-desc { color: var(--navy-200); }
.section-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
}
.section-gold .section-title { color: var(--navy-900); }
.section-gold .section-desc { color: var(--navy-700); }

/* ----- Grid ----- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ----- Cards ----- */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 1.5rem;
}
[data-theme="dark"] .card-icon {
  background: rgba(197,168,74,0.12);
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gold-500);
  transition: gap var(--transition);
}
.card-link:hover { gap: 12px; }
.card-link svg { width: 16px; height: 16px; }

/* ----- Service Card (with list) ----- */
.service-card { padding: 32px; }
.service-card .card-icon { background: var(--navy-50); }
[data-theme="dark"] .service-card .card-icon { background: rgba(255,255,255,0.06); }
.service-list { margin-top: 16px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ----- Industry Card ----- */
.industry-card {
  text-align: center;
  padding: 24px;
}
.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

/* ----- Team Card ----- */
.team-card {
  text-align: center;
  padding: 32px 28px;
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: var(--gold-500);
  font-weight: 700;
  border: 3px solid var(--gold-500);
}
.team-name { font-size: 1.125rem; margin-bottom: 4px; }
.team-role {
  font-size: 0.875rem;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-qual {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Steps / Process ----- */
.steps-grid {
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: 0.9375rem; }

/* ----- Testimonials ----- */
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 32px;
  text-align: center;
}
.testimonial-content {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 24px;
}
.testimonial-author {
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-org {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.testimonial-stars {
  color: var(--gold-500);
  font-size: 1.125rem;
  margin-bottom: 16px;
  display: block;
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonial-dot.active {
  background: var(--gold-500);
  width: 32px;
  border-radius: 10px;
}

/* ----- FAQ Accordion ----- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--gold-500); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold-500);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ----- Stats / Numbers ----- */
.stats-grid { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* ----- CTA Banner ----- */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800), #0A1628);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--navy-200); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ----- Contact Section ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}
[data-theme="dark"] .contact-item-icon {
  background: rgba(197,168,74,0.12);
}
.contact-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.contact-item p, .contact-item a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold-500); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-desc { max-width: 320px; }
.footer-brand-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-icon .brand-icon {
  width: 38px;
  height: 38px;
  font-size: 0.6875rem;
}
.footer-brand-icon .brand-name { color: var(--white); }
.footer-brand-icon .brand-sub { color: var(--navy-300); }
.footer-desc {
  font-size: 0.875rem;
  color: var(--navy-300);
  line-height: 1.7;
}
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--navy-300);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-400); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--navy-200);
}
.footer-contact-item strong { color: var(--white); display: block; margin-bottom: 2px; }

/* Newsletter */
.footer-newsletter {
  margin-top: 16px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 12px;
}
.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
}
.newsletter-input::placeholder { color: var(--navy-300); }
.newsletter-input:focus { border-color: var(--gold-500); }
.newsletter-btn {
  padding: 10px 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  border: 1px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.8125rem;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-400); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--navy-300);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--navy-300);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-400); }
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--navy-200);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  padding: calc(var(--header-height) + 48px) 0 60px;
  background: var(--navy-800);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: var(--navy-200);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  padding: 16px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
}
.breadcrumbs-list a {
  color: var(--text-muted);
}
.breadcrumbs-list a:hover { color: var(--gold-500); }
.breadcrumbs-list span { color: var(--text-primary); font-weight: 600; }
.breadcrumb-sep { color: var(--text-muted); }

/* ----- Useful Links ----- */
.link-category { margin-bottom: 40px; }
.link-category h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.link-item {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.link-item:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.link-item-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.link-item-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.link-item:hover .link-item-name { color: var(--gold-500); }

/* ----- Resources / Calculator Cards ----- */
.resource-card {
  padding: 24px;
  text-align: center;
}
.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

/* ----- Blog Cards ----- */
.blog-card {
  padding: 0;
  overflow: hidden;
}
.blog-image {
  height: 200px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-muted);
}
.blog-body {
  padding: 24px 28px;
}
.blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.blog-title { font-size: 1.125rem; margin-bottom: 8px; }
.blog-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ----- Search Bar ----- */
.search-bar {
  position: relative;
  max-width: 500px;
  margin: 0 auto 32px;
}
.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 100px;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition);
}
.search-input:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(197,168,74,0.12);
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
/* Category Filter */
.category-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--gold-500); color: var(--gold-500); }
.filter-btn.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

/* ----- Page Header (Inner) ----- */
.page-header {
  background: var(--bg-secondary);
  padding: 120px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 640px; margin: 0 auto; }

/* ----- Booking Page Specific ----- */
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.booking-summary {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.booking-summary h3 { margin-bottom: 16px; }
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9375rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-label { color: var(--text-secondary); }
.summary-value { font-weight: 600; }

/* ----- Fee Enquiry Page ----- */
.fee-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.fee-form-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ----- Tax Updates Section ----- */
.update-list { max-width: 800px; margin: 0 auto; }
.update-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.update-item:last-child { border-bottom: none; }
.update-date {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.2;
}
[data-theme="dark"] .update-date { background: rgba(197,168,74,0.12); }
.update-day { font-size: 1.25rem; color: var(--gold-500); }
.update-month { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.update-title { font-weight: 600; margin-bottom: 4px; }
.update-desc { font-size: 0.875rem; color: var(--text-muted); }

/* ----- WhatsApp & Call Float Buttons ----- */
.float-buttons {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all var(--transition);
  color: white;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call {
  background: var(--gold-500);
  display: none;
}
.float-btn svg { width: 26px; height: 26px; fill: currentColor; }

/* ----- Back to Top ----- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold-400); transform: translateY(-2px); }

/* ----- Animations ----- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ----- Responsive Design ----- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: calc(var(--header-height) + 24px) 0 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 48px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .fee-form-card { padding: 24px; }
  .float-buttons { bottom: 16px; left: 16px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn.call { display: flex; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 28px); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--header-height) + 32px) 0 40px; }
  .hero-trust-row { gap: 6px; }
  .hero-trust-badge { font-size: 0.75rem; padding: 6px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}

