/* ==========================================================================
   LEXARA LAW FIRM - Main Stylesheet
   Designed with Luxury, Authority & Modern Corporate Aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Sarabun:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --primary-navy: #071526;
  --primary-navy-light: #0d223a;
  --primary-navy-dark: #040d18;
  --accent-gold: #c5a059;
  --accent-gold-light: #dfbe7d;
  --accent-gold-dark: #a67f33;
  --gold-gradient: linear-gradient(135deg, #dfbe7d 0%, #c5a059 50%, #9e782f 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ebd094 0%, #d4ae65 50%, #b38936 100%);
  
  --text-primary: #101828;
  --text-secondary: #475467;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --text-light: #f1f5f9;
  
  --bg-page: #ffffff;
  --bg-light-gray: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-subtle: #f1f5f9;
  --border-light: #e2e8f0;
  --border-card: #e5e9f0;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px -2px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 12px 30px -4px rgba(11, 25, 44, 0.12);
  --shadow-hover: 0 20px 35px -5px rgba(11, 25, 44, 0.15);
  --shadow-gold: 0 8px 25px rgba(197, 160, 89, 0.35);

  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-thai: 'Prompt', sans-serif;
  --font-body: 'Prompt', 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(7, 21, 38, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-monogram {
  display: flex;
  align-items: center;
  gap: 12px;
}

.monogram-svg {
  width: 36px;
  height: 42px;
  flex-shrink: 0;
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent-gold-light);
  margin-top: 3px;
  text-transform: uppercase;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.22);
}

.brand-tagline {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
  font-weight: 300;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

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

.mobile-nav-header,
.mobile-nav-actions {
  display: none;
}

.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 13, 24, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switch-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px 6px;
  gap: 2px;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 12px;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  line-height: 1.2;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #071526;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.35);
}

.lang-divider {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

.search-toggle-btn {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.search-toggle-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary-gold {
  background: var(--gold-gradient);
  color: #121820;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.btn-primary-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary-outline {
  background: rgba(7, 21, 38, 0.6);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  color: #ffffff;
  background-color: var(--primary-navy);
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.38;
  filter: saturate(1.1) brightness(0.9);
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 35%, rgba(13, 34, 58, 0.35) 0%, rgba(7, 21, 38, 0.92) 75%),
              linear-gradient(180deg, rgba(7, 21, 38, 0.8) 0%, rgba(7, 21, 38, 0.4) 40%, rgba(7, 21, 38, 0.96) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
}

.hero-badge-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-badge-tag span {
  opacity: 0.5;
  margin: 0 8px;
}

.hero-title {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 22px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin-bottom: 34px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

/* Hero Stats Pills */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.hero-stat-value {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
}

/* Hero Right: Quote & Motto */
.hero-right-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  align-items: flex-end;
}

.hero-vertical-motto {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 60px;
  text-align: left;
}

.hero-quote-card {
  background: rgba(7, 21, 38, 0.82);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 8px;
  padding: 30px 28px;
  backdrop-filter: blur(12px);
  position: relative;
  max-width: 360px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-quote-icon {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-quote-text {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 14px;
}

.hero-quote-sub {
  font-family: var(--font-serif);
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--accent-gold-light);
  text-transform: uppercase;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 85px 0;
  position: relative;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 20px;
}

.section-header-left {
  max-width: 680px;
}

.section-category {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #1e5ba8;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
  display: inline-block;
  margin-right: 18px;
}

.section-desc-inline {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 400;
  display: inline-block;
}

.section-view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: #1e5ba8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: var(--transition);
}

.section-view-all-link:hover {
  color: var(--accent-gold-dark);
  transform: translateX(4px);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: #ffffff;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.4);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent-gold);
}

.service-icon-box svg {
  width: 44px;
  height: 44px;
}

.service-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e5ba8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}

.service-card:hover .service-card-link {
  color: var(--accent-gold-dark);
  transform: translateX(3px);
}

/* ==========================================================================
   EXPERTISE SECTION
   ========================================================================== */
.expertise-section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.expertise-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.expertise-left {
  padding-right: 15px;
}

.expertise-intro-title {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 18px;
}

.expertise-intro-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 480px;
}

.btn-navy {
  background-color: var(--primary-navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(7, 21, 38, 0.15);
}

.btn-navy:hover {
  background-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 21, 38, 0.25);
}

.expertise-right-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Stats Counter Grid */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 24px;
}

.stat-counter-box {
  text-align: left;
}

.stat-counter-number {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  color: #1e5ba8;
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.stat-counter-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

/* Feature 3 Cards */
.expertise-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.expertise-feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.expertise-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 91, 168, 0.3);
}

.feature-card-icon {
  font-size: 24px;
  color: #1e5ba8;
  margin-bottom: 14px;
  display: inline-block;
}

.feature-card-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.feature-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Lady Justice Watermark - Seamless Blend */
.expertise-pillar-column {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 1) 100%),
                      linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 12%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 1) 100%),
              linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 1) 12%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.expertise-pillar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: grayscale(100%) brightness(1.22) contrast(1.7);
  mix-blend-mode: multiply;
  opacity: 0.26;
}

.expertise-pillar-text {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--primary-navy);
  font-weight: 600;
  opacity: 0.6;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-section {
  background-color: #ffffff;
}

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

.team-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.35);
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  padding-top: 105%;
  overflow: hidden;
  background-color: #e2e8f0;
}

.team-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

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

.team-info-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.team-role {
  font-size: 12.5px;
  color: #1e5ba8;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-quote {
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.team-social-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  margin-top: auto;
}

.team-social-btn {
  width: 28px;
  height: 28px;
  background-color: #0077b5;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.team-social-btn:hover {
  background-color: #005582;
  transform: translateY(-2px);
}

/* ==========================================================================
   INSIGHTS SECTION
   ========================================================================== */
.insights-section {
  background-color: #f8fafc;
}

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

.insight-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.insight-image-box {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
}

.insight-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.insight-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insight-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.insight-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  background-color: #e0f2fe;
  color: #0284c7;
  border-radius: 4px;
}

.insight-date {
  font-size: 12px;
  color: var(--text-muted);
}

.insight-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: var(--transition);
}

.insight-card:hover .insight-title {
  color: #1e5ba8;
}

.insight-summary {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.insight-read-more {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e5ba8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}

.insight-read-more:hover {
  color: var(--accent-gold-dark);
  transform: translateX(4px);
}

/* ==========================================================================
   LET'S TALK / CTA BANNER
   ========================================================================== */
.cta-banner-section {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(30, 91, 168, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 90% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.cta-text-side {
  max-width: 520px;
}

.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent-gold-light);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.cta-main-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-sub-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.cta-actions-side {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cta-btn-gold {
  background: var(--gold-gradient);
  color: #121820;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  transition: var(--transition);
}

.cta-btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cta-contact-details {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: var(--transition);
}

.cta-contact-item:hover {
  color: var(--accent-gold-light);
}

.cta-contact-icon {
  font-size: 16px;
  color: var(--accent-gold-light);
}

.cta-side-values {
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #050d18;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 20px;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-nav-link {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-nav-link:hover {
  color: var(--accent-gold-light);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 12.5px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  color: #071526;
  transform: translateY(-2px);
}

/* ==========================================================================
   MODALS (Consultation & Search)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 13, 24, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 12px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--accent-gold);
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.modal-close-btn {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  line-height: 1;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 24px 24px 8px 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background-color: #f8fafc;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: #1e5ba8;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(30, 91, 168, 0.15);
}

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

.modal-footer {
  padding: 16px 24px 28px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.modal-cancel-btn {
  background-color: #f1f5f9;
  color: #475467;
  border: 1px solid #cbd5e1;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.modal-cancel-btn:hover {
  background-color: #e2e8f0;
  color: #0f172a;
  border-color: #94a3b8;
}

/* Search Modal Specific */
.search-dialog {
  max-width: 600px;
  background: transparent;
  box-shadow: none;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-input-field {
  width: 100%;
  background: #ffffff;
  padding: 18px 55px 18px 24px;
  font-size: 18px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  font-family: inherit;
}

.search-input-field:focus {
  outline: none;
}

.search-submit-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1e5ba8;
  font-size: 20px;
}

/* Back to top floating button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: var(--primary-navy);
  color: var(--accent-gold-light);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: #071526;
  transform: translateY(-3px);
}
