/* ============================================================
   E.N. KIHUNGU & CO. ADVOCATES LLP — Master Stylesheet
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Palette */
  --gold:          #C4A265;
  --gold-light:    #D4B87A;
  --gold-dark:     #A8873E;
  --gold-muted:    rgba(196,162,101,0.12);
  --navy:          #0D1B2A;
  --navy-light:    #1B2D45;
  --charcoal:      #2C2C2C;
  --slate:         #4A5568;
  --silver:        #8C9BAB;
  --pearl:         #F8F6F2;
  --ivory:         #FDFCFA;
  --white:         #FFFFFF;
  --border-light:  #E8E3DA;
  --border-mid:    #D5CFC3;

  /* Typography */
  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Inter', 'Helvetica Neue', sans-serif;
  --font-accent:   'Libre Baskerville', 'Georgia', serif;

  /* Spacing Scale */
  --section-y:     100px;
  --section-y-sm:  60px;

  /* Transitions */
  --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:      0.35s;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(13,27,42,0.06);
  --shadow-md:     0 4px 16px rgba(13,27,42,0.08);
  --shadow-lg:     0 8px 32px rgba(13,27,42,0.10);
  --shadow-xl:     0 16px 48px rgba(13,27,42,0.12);
  --shadow-gold:   0 4px 20px rgba(196,162,101,0.25);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover {
  color: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; letter-spacing: -0.01em; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

.display-heading {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  line-height: 1.75;
}

.lead-text {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--slate);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

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

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

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

.btn-link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration) var(--ease-out);
}

.btn-link-gold svg,
.btn-link-gold i {
  transition: transform var(--duration) var(--ease-out);
}

.btn-link-gold:hover {
  color: var(--gold-dark);
}

.btn-link-gold:hover svg,
.btn-link-gold:hover i {
  transform: translateX(4px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar a {
  color: rgba(255,255,255,0.7);
  transition: color var(--duration) var(--ease-out);
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  margin-left: 6px;
  font-size: 0.8rem;
  transition: all var(--duration) var(--ease-out);
}

.top-bar .social-links a:hover {
  background: var(--gold);
  color: var(--white);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-contact i {
  margin-right: 6px;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-navbar {
  background: var(--white);
  padding: 0;
  box-shadow: none;
  transition: all var(--duration) var(--ease-out);
  z-index: 1050;
  border-bottom: 1px solid var(--border-light);
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}

.main-navbar .navbar-brand {
  padding: 8px 0;
}

.main-navbar .navbar-brand img {
  height: 70px;
  width: auto;
  transition: height var(--duration) var(--ease-out);
}

.main-navbar.scrolled .navbar-brand img {
  height: 55px;
}

.main-navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy) !important;
  padding: 28px 18px !important;
  position: relative;
  transition: color var(--duration) var(--ease-out);
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease-out);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--gold) !important;
}

/* Dropdown Menus */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  margin-top: 0;
  border-top: 2px solid var(--gold);
  min-width: 280px;
}

.main-navbar .dropdown-item {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 10px 24px;
  transition: all var(--duration) var(--ease-out);
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
  background: var(--gold-muted);
  color: var(--gold-dark);
  padding-left: 30px;
}

.navbar-toggler {
  border: 1px solid var(--gold);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 18px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span { top: 50%; transform: translateY(-50%); }
.navbar-toggler-icon::after { bottom: 0; }

/* Mega dropdown for Practice Areas */
.practice-dropdown {
  min-width: 580px;
  padding: 20px 0;
}

.practice-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
}

.practice-dropdown .dropdown-item i {
  color: var(--gold);
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.95) 0%,
    rgba(13,27,42,0.85) 40%,
    rgba(13,27,42,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-title .highlight {
  color: var(--gold-light);
  display: inline;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  margin-top: 60px;
}

.hero-stat {
  text-align: center;
  padding: 0 20px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Geometric accent in hero */
.hero-accent {
  position: absolute;
  right: -5%;
  top: 15%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(196,162,101,0.15);
  border-radius: 50%;
  z-index: 1;
}

.hero-accent::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  border: 1px solid rgba(196,162,101,0.1);
  border-radius: 50%;
}

/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */
.about-home {
  padding: var(--section-y) 0;
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.about-image-border {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-experience-badge .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.about-value-item h6 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-value-item p {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   PRACTICE AREAS SECTION
   ============================================================ */
.practice-areas {
  padding: var(--section-y) 0;
  background: var(--pearl);
}

.practice-card {
  background: var(--white);
  padding: 40px 32px;
  height: 100%;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all var(--duration) var(--ease-out);
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.practice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.practice-card:hover::before {
  transform: scaleX(1);
}

.practice-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all var(--duration) var(--ease-out);
}

.practice-card:hover .practice-card-icon {
  background: var(--gold);
  color: var(--white);
}

.practice-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--navy);
}

.practice-card p {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.practice-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--duration) var(--ease-out);
}

.practice-card .card-link i {
  transition: transform var(--duration) var(--ease-out);
}

.practice-card:hover .card-link i {
  transform: translateX(4px);
}

/* ============================================================
   REPRESENTATIVE MATTERS
   ============================================================ */
.rep-matters {
  padding: var(--section-y) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.rep-matters::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(196,162,101,0.08);
  border-radius: 50%;
}

.rep-matters .section-label {
  color: var(--gold-light);
}

.rep-matters .section-label::before {
  background: var(--gold-light);
}

.rep-matters .section-title {
  color: var(--white);
}

.rep-matters .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.matter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  height: 100%;
  transition: all var(--duration) var(--ease-out);
  position: relative;
}

.matter-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-out);
}

.matter-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(196,162,101,0.2);
}

.matter-card:hover::after {
  width: 100%;
}

.matter-category {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.matter-card h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.matter-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

.team-card {
  text-align: center;
  transition: all var(--duration) var(--ease-out);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 3/4;
  background: var(--pearl);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-card-image img {
  transform: scale(1.04);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.7) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-overlay a {
  color: var(--white);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 4px;
  transition: all var(--duration) var(--ease-out);
  font-size: 0.85rem;
}

.team-card-overlay a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-y) 0;
  background: var(--pearl);
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 44px 40px;
  border: 1px solid var(--border-light);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-muted);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
  z-index: 0;
}

.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-author-info h6 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: var(--silver);
}

.testimonial-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

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

.insight-card {
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 100%;
  transition: all var(--duration) var(--ease-out);
}

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

.insight-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--pearl);
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.insight-card:hover .insight-card-image img {
  transform: scale(1.06);
}

.insight-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.insight-card-body {
  padding: 28px;
}

.insight-card-date {
  font-size: 0.82rem;
  color: var(--silver);
  margin-bottom: 10px;
}

.insight-card-body h5 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 12px;
}

.insight-card-body h5 a {
  color: var(--navy);
  transition: color var(--duration) var(--ease-out);
}

.insight-card-body h5 a:hover {
  color: var(--gold);
}

.insight-card-body p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   CTA / CONSULTATION SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

.cta-section .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--white);
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
}

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: var(--section-y) 0;
  background: var(--white);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-card:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-card h6 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.6;
}

.contact-form .form-control {
  border-radius: 0;
  border: 1px solid var(--border-mid);
  padding: 14px 18px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--duration) var(--ease-out);
}

.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,162,101,0.12);
}

.contact-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 60px 0;
  background: var(--navy);
}

.newsletter-section h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-section p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  border-radius: 0;
  outline: none;
  transition: all var(--duration) var(--ease-out);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-main {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196,162,101,0.3);
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-out);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 12px;
}

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

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  transition: all var(--duration) var(--ease-out);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ============================================================
   PAGE BANNERS (Inner Pages)
   ============================================================ */
.page-banner {
  background: var(--navy);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(196,162,101,0.07);
  border-radius: 50%;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.page-banner .breadcrumb-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.page-banner .breadcrumb-item a {
  color: var(--gold-light);
}

.page-banner .breadcrumb-item.active {
  color: rgba(255,255,255,0.5);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  content: '—';
  color: rgba(255,255,255,0.25);
  padding: 0 10px;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--navy);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-pearl { background: var(--pearl); }
.bg-navy { background: var(--navy); }
.bg-gold { background: var(--gold); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-slate { color: var(--slate); }

.gold-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.border-gold {
  border-color: var(--gold) !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up, .fade-left, .fade-right {
    opacity: 1;
    transform: none;
  }
}
