/* ============================================================
   TAXELLENCE — Premium Financial Services
   Style Sheet
   ============================================================ */

/* ── Google Fonts are loaded via HTML <link> ── */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --green:        #203d34;
  --green-dark:   #162b24;
  --green-light:  #2d5a47;
  --gold:         #c9a84c;
  --gold-light:   #e5c878;
  --cream:        #f8f5ef;
  --cream-dark:   #ede8df;
  --dark:         #1a1a1a;
  --mid:          #5a6a63;
  --light:        #e8e4dc;
  --white:        #ffffff;

  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.16);

  --radius:       4px;
  --transition:   all 0.3s ease;
  --max-width:    1280px;
}

/* ============================================================
   2. BASE RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .section-subtitle {
  margin: 16px auto 0;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-primary,
.btn-outline,
.btn-gold,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

/* Primary */
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32,61,52,0.3);
  color: var(--white);
}

/* Outline */
.btn-outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline Light (for dark bg) */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Gold */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  color: var(--dark);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  color: var(--white);
}
.btn-whatsapp i {
  margin-right: 4px;
  font-size: 1.1em;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 16px 0;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg {
  color: var(--green);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Override logo color on transparent nav (hero left is dark) */
.nav:not(.scrolled) .nav-logo svg,
.nav:not(.scrolled) .nav-logo-text {
  color: var(--white);
}

.nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.88);
}

.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-links a.active {
  color: var(--white);
}

.nav:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.nav:not(.scrolled) .nav-cta:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover {
  color: var(--green);
}

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

.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  font-size: 0.8rem !important;
  padding: 10px 24px !important;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav:not(.scrolled) .nav-hamburger span {
  background: var(--white);
}

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

/* ============================================================
   7. HERO — SPLIT LAYOUT
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left panel */
.hero-left {
  background: var(--green);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.6) 0px,
      rgba(201,168,76,0.6) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(201,168,76,0.6) 0px,
      rgba(201,168,76,0.6) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(201,168,76,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 80%, rgba(45,90,71,0.4) 0%, transparent 50%);
}

.hero-left-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 120px 40px 40px;
}

.hero-emblem {
  width: 120px;
  height: 120px;
  color: rgba(255,255,255,0.15);
  margin-bottom: auto;
  flex-shrink: 0;
}

.hero-emblem svg {
  width: 100%;
  height: 100%;
}

.hero-stats-float {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 60px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 16px 24px;
  color: var(--white);
  transition: var(--transition);
}

.hero-stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(4px);
}

.hero-stat-card .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-card .label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  display: block;
}

/* Right panel */
.hero-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 120px 60px 80px 80px;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 520px;
}

.hero-tagline {
  /* inherits .section-label styles */
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--dark);
}

.hero-title h1 span {
  color: var(--green);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--mid);
  margin: 24px 0 40px;
  line-height: 1.75;
}

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

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--light);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  margin-left: -10px;
  flex-shrink: 0;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.4;
}

.trust-text strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================================
   8. TRUST TICKER
   ============================================================ */
.trust-ticker {
  background: var(--green-dark);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker 35s linear infinite;
  width: max-content;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-item .dot {
  color: var(--gold);
  font-size: 1.2em;
  line-height: 1;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   9. SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding: 0 40px;
}

.service-card {
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}

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

.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon i {
  color: var(--green);
  font-size: 1.4rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 12px;
  transition: var(--transition);
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.service-link .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.service-card:hover .service-link {
  gap: 12px;
  color: var(--green-dark);
}

.service-card:hover .service-link .arrow {
  transform: translateX(4px);
}

/* ============================================================
   10. ABOUT TEASER
   ============================================================ */
.about-teaser {
  padding: 100px 0;
  background: var(--cream);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--green);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.025) 20px,
    rgba(255,255,255,0.025) 21px
  );
}

.about-initials {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 7rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-badge .badge-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.2rem;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge .badge-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
  display: block;
  max-width: 100px;
}

.about-content {
  padding-right: 20px;
}

.about-content .section-label {
  margin-bottom: 8px;
}

.about-content h2 {
  margin-bottom: 0;
}

.credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
}

.credential-tag {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.credential-tag:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-content .btn-outline {
  margin-top: 12px;
}

/* ============================================================
   11. NUMBERS SECTION
   ============================================================ */
.numbers-section {
  padding: 80px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
    transparent 1px, transparent 80px
  );
  pointer-events: none;
}

.numbers-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.number-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

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

.counter {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--gold);
  display: block;
  line-height: 1;
}

.counter-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  display: block;
}

/* ============================================================
   12. PROCESS SECTION
   ============================================================ */
.process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-steps {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 80px;
  left: calc(40px + 12.5%);
  right: calc(40px + 12.5%);
  height: 1px;
  background: linear-gradient(90deg, var(--light) 0%, var(--gold) 50%, var(--light) 100%);
  z-index: 0;
  pointer-events: none;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--cream-dark);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 24px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.step-icon i {
  color: var(--green);
  font-size: 1.4rem;
  transition: var(--transition);
}

.process-step:hover .step-icon {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.1);
}

.process-step:hover .step-icon i {
  color: var(--white);
}

.step-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   13. TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
}

.testimonials-swiper-wrap {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding: 0 40px 56px;   /* bottom room for pagination dots */
}

.testimonials-swiper {
  overflow: hidden !important;
}

/* Equal-height slides — stretch all cards to the tallest in the row */
.testimonials-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: 100%;           /* fill the flex slide */
  transition: var(--transition);
  position: relative;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-quote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--light);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.2;
}

.author-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 3px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: var(--mid) !important;
  opacity: 0.4 !important;
  width: 8px !important;
  height: 8px !important;
}

.swiper-pagination-bullet-active {
  background: var(--green) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ============================================================
   14. INSIGHTS SECTION
   ============================================================ */
.insights-section {
  padding: 100px 0;
  background: var(--white);
}

.insights-grid {
  max-width: var(--max-width);
  margin: 60px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.insight-card {
  border: 1px solid var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

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

.insight-img {
  height: 200px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}

.insight-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(255,255,255,0.04) 20px,
      rgba(255,255,255,0.04) 21px
    );
}

.insight-img::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
}

.insight-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 2px;
  z-index: 1;
}

.insight-body {
  padding: 28px;
}

.insight-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--mid);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.03em;
}

.insight-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: var(--transition);
}

.insight-card:hover .insight-title {
  color: var(--green);
}

.insight-excerpt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 18px;
  text-decoration: none;
  transition: var(--transition);
}

.insight-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* ============================================================
   15. CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 40px;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(45,90,71,0.4) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-banner h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.58);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.58);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: var(--transition);
  word-break: break-all;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* ============================================================
   17. WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: var(--white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   18. FORM SUCCESS
   ============================================================ */
.form-success {
  text-align: center;
  padding: 60px 40px;
  color: var(--white);
}

.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   19. AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   20. RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-item:nth-child(2) {
    border-right: none;
  }

  .number-item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .number-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-photo-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content {
    padding-right: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .hero-right {
    padding: 120px 40px 80px;
  }
}

/* ============================================================
   21. RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .container,
  .services-grid,
  .insights-grid,
  .numbers-grid,
  .process-steps,
  .about-inner,
  .footer-top {
    padding: 0 24px;
  }

  /* Nav */
  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 40px 40px;
    gap: 0;
    align-items: flex-start;
    overflow-y: auto;
  }

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

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--light);
  }

  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.2rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  /* Override transparent nav logo for mobile */
  .nav:not(.scrolled) .nav-logo svg,
  .nav:not(.scrolled) .nav-logo-text {
    color: var(--green);
  }

  .nav:not(.scrolled) .nav-hamburger span {
    background: var(--green);
  }

  .nav.scrolled .nav-hamburger span,
  .nav:not(.scrolled) .nav-hamburger.open span {
    background: var(--green);
  }

  /* Hero */
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 55vh;
    height: 55vh;
  }

  .hero-left-content {
    padding: 80px 24px 40px;
  }

  .hero-emblem {
    width: 80px;
    height: 80px;
  }

  .hero-stats-float {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 32px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-stat-card {
    flex-shrink: 0;
    min-width: 140px;
  }

  .hero-right {
    padding: 60px 24px 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title h1 {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  /* Sections */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

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

  .number-item {
    border-right: 1px solid rgba(255,255,255,0.12) !important;
    border-top: none !important;
    padding: 28px 12px;
  }

  .number-item:nth-child(even) {
    border-right: none !important;
  }

  .number-item:nth-child(3),
  .number-item:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,0.12) !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .process-step {
    padding: 24px 20px;
  }

  .services-section,
  .about-teaser,
  .insights-section,
  .process-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .numbers-section {
    padding: 60px 0;
  }

  .cta-banner {
    padding: 70px 24px;
  }

  .testimonials-swiper-wrap {
    padding: 0 24px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header .section-label {
    font-size: 0.7rem;
  }

  .about-inner {
    gap: 40px;
  }

  .about-badge {
    bottom: -16px;
    right: -8px;
    padding: 14px 16px;
  }

  .about-badge .badge-num {
    font-size: 1.8rem;
  }

  .about-badge .badge-text {
    font-size: 0.65rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    bottom: 20px;
    right: 20px;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    height: 50vh;
    min-height: 50vh;
  }

  .hero-stats-float {
    flex-direction: column;
    overflow-x: hidden;
  }

  .hero-stat-card {
    min-width: unset;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-gold,
  .cta-actions .btn-outline-light {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================================
   22. PAGE-SPECIFIC LAYOUT CLASSES
   ============================================================ */

/* About — bio grid */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bio-photo-box {
  border-radius: 8px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* About — card grids */
.firm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Services — alternating layout */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-visual-box {
  border-radius: 8px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.svc-num {
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 700;
  color: #f0ede6;
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

.svc-num-alt { color: #e8e4da; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-box {
  background: white;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* Schedule call page */
.why-call-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.sched-card {
  border-radius: 12px;
  padding: 40px;
  background: white;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Page hero and body section padding */
.page-hero-section { padding: 160px 40px 80px; margin-top: 0; }
.about-section     { padding: 100px 0; }
.svc-section       { padding: 100px 0; }

/* ============================================================
   23. RESPONSIVE — 1024px (page-specific)
   ============================================================ */
@media (max-width: 1024px) {
  .bio-grid,
  .service-layout    { grid-template-columns: 1fr; gap: 48px; }
  .bio-photo-box     { height: 380px; }
  .service-visual-box { height: 300px; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   24. RESPONSIVE — 768px (page-specific)
   ============================================================ */
@media (max-width: 768px) {
  /* Grids → single column */
  .bio-grid          { grid-template-columns: 1fr; gap: 32px; }
  .service-layout    { grid-template-columns: 1fr !important; gap: 32px !important; }
  .firm-cards        { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: 1fr; }
  .why-call-grid     { grid-template-columns: 1fr; max-width: 100%; }
  .contact-grid      { grid-template-columns: 1fr; }
  .name-row          { grid-template-columns: 1fr; }
  .service-bullets   { grid-template-columns: 1fr; }

  /* Heights */
  .bio-photo-box      { height: 260px; }
  .service-visual-box { height: 220px; }

  /* Page hero */
  .page-hero-section { padding: 120px 24px 60px !important; }

  /* Body section padding */
  .about-section,
  .svc-section { padding: 60px 0 !important; }

  /* Number watermark */
  .svc-num { font-size: 4rem; margin-bottom: -10px; }

  /* Contact form */
  .contact-form-box { padding: 28px 20px !important; }

  /* Schedule call cards */
  .sched-card {
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .sched-card > div:last-child {
    align-self: flex-start;
  }
}

/* ============================================================
   25. RESPONSIVE — 480px (page-specific)
   ============================================================ */
@media (max-width: 480px) {
  .values-grid       { grid-template-columns: 1fr; }
  .credentials-grid  { grid-template-columns: 1fr; }
  .page-hero-section { padding: 100px 16px 48px !important; }
  .svc-num           { font-size: 3rem; }
}
