/* ============================================================
   AAA Tax & Business Consulting — Main Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #1a2e44;
  --gold:        #C9A84C;
  --gold-dark:   #a8892f;
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f5;
  --gray-200:    #e9ecef;
  --gray-400:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --text-dark:   #1a1a2e;
  --text-body:   #4a4a6a;

  --font-sans:   'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size-base: 1rem;
  --line-height: 1.7;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);

  --transition:  0.3s ease;
  --max-width:   1200px;
  --header-h:    72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: var(--line-height);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout Helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 12px;
}

.section-subheading {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-subheading { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

/* ---- Header / Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow var(--transition);
}

.site-header .container {
  height: 100%;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.logo-text span {
  font-size: 0.65rem;
  color: var(--gray-600);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn--login {
  font-size: 0.85rem;
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  font-weight: 500;
  transition: var(--transition);
}

.btn--login:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--consult {
  font-size: 0.85rem;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}

.btn--consult:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero / Banner ---- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page Banner (inner pages) */
.page-banner {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 560px;
}

.page-banner .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb a:hover { text-decoration: underline; }
.page-banner .breadcrumb .sep { color: rgba(255,255,255,.4); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Who We Serve */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.serve-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  padding: 30px 24px 28px;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.08);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.serve-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(201,168,76,.85), rgba(201,168,76,0));
  opacity: 0;
  transition: opacity var(--transition);
}

.serve-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.14);
  transform: translateY(-6px);
}

.serve-card:hover::after {
  opacity: 1;
}

.serve-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #f6e6b0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}

.serve-card:hover .serve-card-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(13, 27, 42, 0.28);
}

.serve-card h3 {
  font-size: 1.08rem;
  margin-bottom: 11px;
  color: var(--navy);
  line-height: 1.35;
}

.serve-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #4c5670;
  line-height: 1.68;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  padding: 30px 24px 24px;
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-top: 3px solid rgba(201, 168, 76, 0.1);
}

.service-card:hover {
  border-top-color: rgba(201, 168, 76, 0.95);
  box-shadow: 0 16px 34px rgba(13, 27, 42, 0.14);
  transform: translateY(-6px);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(180deg, #f4f6fa, #eceff5);
  border-radius: 14px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.15rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-color: transparent;
  color: #f6e6b0;
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.68;
  color: #4c5670;
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.service-tag {
  font-size: 0.74rem;
  padding: 4px 11px;
  background: #f8f9fc;
  color: #263854;
  border: 1px solid #e5e9f1;
  border-radius: 20px;
  font-weight: 600;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}

.service-card-link:hover { gap: 10px; }

/* ---- CTA Sections ---- */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section--schedule {
  background: var(--gray-50);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-text h2 {
  margin-bottom: 16px;
}

.cta-text p {
  color: var(--text-body);
  margin-bottom: 28px;
}

.cta-form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.cta-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--navy);
}

/* ---- Contact Form ---- */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Testimonials Slider ---- */
.testimonials-section {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}

.testimonials-section h2 { color: var(--white); }

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.testimonials-track-wrap {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 32px;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
}

/* ---- Blog / Insights ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-img {
  height: 200px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 3px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.blog-read-more:hover { gap: 10px; }

/* Category Filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.cat-btn {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- Stats ---- */
.stats-section {
  padding: 72px 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
}

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-body {
  padding: 20px 16px;
}

.team-body h4 {
  color: var(--navy);
  margin-bottom: 4px;
}

.team-position {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-body p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 14px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy);
  transition: var(--transition);
}

.team-socials a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- Map Section ---- */
.map-section {
  padding: 80px 0;
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-details h3 {
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item-text span,
.contact-item-text a {
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-item-text a:hover { color: var(--gold-dark); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Featured CTA (dark bg) ---- */
.expert-cta {
  padding: 88px 0;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.expert-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,.08);
}

.expert-cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.expert-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.expert-cta p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ---- Services Page Detail Cards ---- */
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-detail:hover {
  box-shadow: var(--shadow-md);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.service-detail h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-detail p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-detail ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.service-detail ul li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}

.service-detail-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ---- Testimonials Page ---- */
.featured-testimonial {
  padding: 80px 0;
  background: var(--gray-50);
}

.featured-testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.featured-testimonial-card::before {
  content: '\201C';
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.featured-testimonial-card .quote {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.featured-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.featured-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.featured-author strong {
  font-size: 1rem;
  color: var(--navy);
}

.featured-author span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--gold); color: var(--navy); }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Dividers / Decorators ---- */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.text-center .gold-line {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Mobile Nav Overlay ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--gray-200);
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--navy);
}

.mobile-nav-ctas {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  .header-inner { gap: 16px; }
  .logo-text strong { font-size: 0.95rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-subheading { margin-bottom: 34px; }

  .nav-menu { display: none; }
  .header-ctas { display: none; }
  .hamburger { display: flex; }

  .logo { gap: 8px; }
  .logo-mark {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .logo-text strong { font-size: 0.85rem; }
  .logo-text span { font-size: 0.58rem; }

  .hero { min-height: 460px; }
  .hero-content p { font-size: 1rem; }
  .page-banner { padding: 56px 0; }
  .page-banner p { font-size: 1rem; }

  .cta-inner { grid-template-columns: 1fr; }
  .cta-form-wrap { padding: 24px; }

  .map-layout { grid-template-columns: 1fr; }
  .map-embed { height: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .testimonial-card { padding: 24px; }

  .testimonials-header { flex-direction: column; align-items: flex-start; }

  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .mobile-nav-ctas .btn { width: 100%; }

  .hero-btns { flex-direction: column; }

  .serve-grid,
  .services-grid { grid-template-columns: 1fr; }

  .serve-card,
  .service-card {
    padding: 26px 20px 22px;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 16px; }

  .blog-grid { grid-template-columns: 1fr; }
  .featured-testimonial-card { padding: 28px 22px; }
  .featured-testimonial-card .quote { font-size: 1rem; }
}
