:root {
  --navy: #13134a;
  /* Deep Navy from screenshots */
  --navy-status: #2b2e83;
  /* Lighter navy for status/info */
  --gold: #f5c842;
  --gold-light: #fde98a;
  --off-white: #fdfaf5;
  /* Beige background from screenshots */
  --gray: #6b7280;
  --light-gray: #e8e8f0;
  --text: #1a1a3e;
  --radius-lg: 24px;
  --radius-md: 16px;
}

/* ─── Global ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

.bg-beige {
  background: var(--off-white);
}

.sol-section {
  padding: 20px 0;
  position: relative;
}

.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.px-20 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 992px) {
  .px-20 {
    padding-left: 30px !important;
    padding-right: 20px !important;
  }
}



/* ─── TYPOGRAPHY OVERHAUL ─── */
.sol-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.sol-title span {
  color: var(--navy-status);
}

.sol-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.sol-title-serif {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.sol-title-serif span {
  color: var(--navy-status);
}

/* View All Links */
.sol-view-all,
.view-all-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--gold);
  transition: all 0.3s ease;
  padding-bottom: 2px;
  cursor: pointer;
}

.sol-view-all:hover,
.view-all-link:hover {
  border-bottom-color: var(--navy);
  color: var(--navy);
}


/* ─── BUTTONS (Pill with arrow) ─── */
.sol-btn-premium {
  background: #fff;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sol-btn-premium:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  color: var(--navy);
}

.arrow-circle-navy {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ─── NAVBAR ─── */
.sol-nav {
  padding: 20px 0;
  z-index: 1050;
}

.sol-nav-inner {
  background: #fff;
  border-radius: 100px;
  height: 72px;
  padding: 0 0 0 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  position: relative;
  overflow: visible;
}

.nav-links {
  margin-left: auto;
}

.nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: 0 !important;
  transition: color .2s;
}

.nav-link.active,
.nav-link:hover {
  color: var(--navy);
}

.sol-nav-cta {
  height: 100%;
  background: var(--navy);
  padding: 0 45px 0 75px;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.sol-cta-btn {
  background: var(--off-white);
  color: var(--navy);
  padding: 10px 20px;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .sol-nav-inner {
    height: 60px;
    padding: 0 0 0 20px;
  }

  .sol-nav-cta {
    padding: 0 15px 0 40px;
  }

  .sol-cta-btn {
    padding: 6px 14px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .sol-hamburger {
    margin-right: 15px;
    gap: 4px;
  }

  .sol-hamburger span {
    width: 20px;
    height: 2px;
  }
}

/* ═══════════════════════════════════════════════
   CASCADING FLYOUT DROPDOWN — 3 levels deep
   ═══════════════════════════════════════════════ */

/* reset for all dropdown lists */
.sol-dd ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Level-1 trigger (Services in the main nav) ─ */
.sol-dd {
  position: relative;
}

.sol-dd>.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.sol-dd>.nav-link .dd-caret {
  font-size: 0.6rem;
  transition: transform 0.2s;
  display: inline-block;
}

.sol-dd:hover>.nav-link .dd-caret {
  transform: rotate(180deg);
}

/* ── Shared dropdown panel ───────────────────── */
.sol-dd-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  border-top: 3px solid #0a1f44;
  padding: 6px 0;
  z-index: 1100;
  white-space: nowrap;
}

/* show on hover */
.sol-dd:hover>.sol-dd-panel {
  display: block;
}

/* ── Level-2 items (inside the first panel) ─── */
.sol-dd-item {
  position: relative;
}

.sol-dd-item>a,
.sol-dd-item>span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 18px;
  font-size: 0.83rem;
  color: #1a2e55;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.sol-dd-item>a:hover,
.sol-dd-item>span:hover,
.sol-dd-item:hover>a,
.sol-dd-item:hover>span {
  background: #f3f6fb;
  color: #0a1f44;
}

.sol-dd-item>a .dd-arrow,
.sol-dd-item>span .dd-arrow {
  font-size: 0.6rem;
  color: #888;
  flex-shrink: 0;
}

/* ── Level-2 panel (flies out to the right) ── */
.sol-dd-panel-r {
  display: none;
  position: absolute;
  top: -6px;
  left: 100%;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  border-top: 3px solid #c9a84c;
  padding: 6px 0;
  z-index: 1200;
}

.sol-dd-item:hover>.sol-dd-panel-r {
  display: block;
}

/* ── Level-3 items (sub-category headers) ────── */
.sol-dd-sub {
  position: relative;
}

.sol-dd-sub>span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d4a7a;
  cursor: pointer;
  transition: background 0.15s;
}

.sol-dd-sub:hover>span,
.sol-dd-sub>span:hover {
  background: #f3f6fb;
}

.sol-dd-sub>span .dd-arrow {
  font-size: 0.6rem;
  color: #aaa;
}

/* ── Level-3 panel (flies out further right) ─── */
.sol-dd-panel-r2 {
  display: none;
  position: absolute;
  top: -6px;
  left: 100%;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
  border-top: 3px solid #e0c97a;
  padding: 6px 0;
  z-index: 1300;
}

.sol-dd-sub:hover>.sol-dd-panel-r2 {
  display: block;
}

/* ── Final leaf links ────────────────────────── */
.sol-dd-leaf {
  display: block;
  padding: 7px 18px;
  font-size: 0.78rem;
  color: #444;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.35;
}

.sol-dd-leaf:hover {
  background: #f3f6fb;
  color: #0a1f44;
}

/* divider between groups */
.sol-dd-div {
  height: 1px;
  background: #eef0f5;
  margin: 4px 0;
}

/* ── Mobile menu service tree (Accordion) ── */
.mob-tree {
  padding-left: 0;
}

.mob-l1-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0a1f44;
  cursor: pointer;
  border-top: 1px solid #eee;
  text-align: left;
}

.mob-l1-btn .mc {
  transition: transform 0.2s;
}

.mob-l2-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 6px 0 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d4a7a;
  cursor: pointer;
  text-align: left;
}

.mob-l2-btn .mc {
  transition: transform 0.2s;
}

.mob-l3-link {
  display: block;
  padding: 4px 0 4px 28px;
  font-size: 0.77rem;
  color: #555;
  text-decoration: none;
}

.mob-l3-link:hover {
  color: #0a1f44;
}

.mob-collapse {
  display: none;
}

.mob-collapse.open {
  display: block;
}

/* ══ MOBILE BOTTOM NAV ══ */
.sol-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0a1f44;
  height: 70px;
  z-index: 2000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 0 10px;
}

.sol-mob-item {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  flex: 1;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.sol-mob-item.active {
  color: #c9a84c;
}

.sol-mob-item span:first-child {
  margin-bottom: 2px;
}

.sol-mob-center {
  width: 65px;
  height: 65px;
  background: #c9a84c;
  color: #0a1f44;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.4);
  margin-top: -35px;
  border: 5px solid #fff;
  transition: all 0.3s;
  z-index: 2001;
}

.sol-mob-center:hover {
  transform: scale(1.05);
  color: #0a1f44;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 70px;
    /* Space for the bottom nav */
  }
}

.sol-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.sol-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.sol-hamburger:hover span {
  background-color: #555;
}

.sol-hamburger:focus {
  outline: 2px solid #007bff;
  outline-offset: 4px;
}

.sol-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.sol-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.sol-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.sol-cta-btn:hover {
  box-shadow: 0 5px 15px rgb(200, 200, 200);
  color: rgb(235, 225, 225);
}

/* Mobile Menu */
#mobileMenu {
  background: #fff;
  border-radius: 16px;
  margin-top: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
  padding: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
}

.sol-hamburger {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  margin-right: 20px;
  padding: 0;
  transition: opacity 0.2s;
}

.sol-hamburger:hover {
  opacity: 0.8;
}

.sol-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
}

/* ─── MAIN CONTENT WRAPPER (Curved Overlap) ─── */
.sol-main-wrapper {
  background: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991.98px) {
  .sol-main-wrapper {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: -60px;
  }
}

@media (max-width: 575.98px) {
  .sol-main-wrapper {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -40px;
  }
}

/* ─── HERO SECTION ─── */
/* Background is beige — this is what you see beside the navy card */
.sol-hero-section {
  background: var(--off-white);
  /* #fdfaf5 beige — matches screenshot */
  padding: 0;
  position: relative;
  overflow: visible;
  /* do NOT clip — image bleeds into the beige space */
}

/* ─── NAVY CARD (desktop base, overridden for mobile below) ─── */
.sol-hero-card-full-width {
  background: var(--navy);
  border-top-right-radius: 100px;
  padding: 80px 0 110px;
  padding-left: 40px;
  position: relative;
  width: 70%;
  overflow: visible;
  /* image bleeds OUT of the card */
  z-index: 5;
}

/* content stays left */
.sol-hero-content {
  position: relative;
  z-index: 5;
}

/* ─── HERO TITLE ─── */
.sol-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
}

/* ─── HERO SUBTITLE ─── */
.sol-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 0;
}

/* ─── HERO IMAGE (desktop — right of 70% card) ─── */
.sol-hero-img-box {
  position: absolute;
  right: -400px;
  top: -20px;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 105;
}

.sol-hero-img-box img {
  height: 110%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
  transform: translateY(5%);
}

/* ═══════════════════════════════════════════════════════
   MOBILE HERO — matches the reference screenshot:
   • beige section background visible beside/behind card
   • navy card ~65% width with big top-right curve
   • image overlaps into the beige area on the right
   • buttons side-by-side
   ═══════════════════════════════════════════════════════ */

/* ── ≤991px (tablets + phones) ── */
@media (max-width: 991.98px) {
  .sol-hero-section {
    overflow: visible;
    /* let image bleed out fully */
    padding-bottom: 0;
  }

  .sol-hero-card-full-width {
    width: 65%;
    /* ~65% so beige is visible on right */
    border-top-right-radius: 80px;
    /* prominent curve like screenshot */
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 30px 0 70px 20px;
    /* left padding for text, bottom for image bleed */
    position: relative;
    overflow: visible;
    /* CRITICAL: image must bleed outside card */
    min-height: 320px;
    z-index: 5;
  }

  .sol-hero-card-full-width .container {
    padding-left: 16px;
    padding-right: 10px;
    position: relative;
    z-index: 6;
  }

  /* text column: constrained so image shows in the right 35% */
  .sol-hero-content {
    max-width: 60%;
    position: relative;
    z-index: 6;
  }

  .sol-hero-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .sol-hero-sub {
    font-size: 0.82rem;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 18px;
  }

  /* BUTTONS: always side-by-side, never stacked */
  .sol-hero-content .d-flex {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .sol-hero-content .sol-btn-premium {
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
    gap: 8px;
  }

  .sol-hero-content .arrow-circle-navy {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  /* IMAGE: sits to the RIGHT of the 65% card, in the 35% beige area */
  .sol-hero-img-box {
    position: absolute;
    right: -35%;
    /* pull it into the beige area right of card */
    top: -10px;
    width: 70%;
    /* wide enough to show the person well */
    height: 110%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
  }

  .sol-hero-img-box img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    transform: translateY(0);
  }
}

/* ── ≤767px (large phones) ── */
@media (max-width: 767.98px) {
  .sol-hero-card-full-width {
    width: 65%;
    min-height: 300px;
    padding: 28px 0 65px 16px;
  }

  .sol-hero-content {
    max-width: 60%;
  }

  .sol-hero-title {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
  }

  .sol-hero-sub {
    font-size: 0.79rem;
  }

  .sol-hero-img-box {
    right: -35%;
    width: 72%;
    height: 112%;
  }
}

/* ── ≤575px (mobile) ── */
@media (max-width: 575.98px) {
  .sol-hero-card-full-width {
    width: 65%;
    min-height: 280px;
    padding: 24px 0 60px 14px;
    border-top-right-radius: 70px;
  }

  .sol-hero-content {
    max-width: 62%;
  }

  .sol-hero-title {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    margin-bottom: 8px;
  }

  .sol-hero-sub {
    font-size: 0.73rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .sol-hero-content .d-flex {
    gap: 7px !important;
    margin-top: 12px !important;
  }

  .sol-hero-content .sol-btn-premium {
    padding: 1px;
    padding-top: 2px;
    font-size: 0.7rem;
  }

  /* ✅ Image box — shorter height, face stays visible */
  .sol-hero-img-box {
    right: -50%;
    width: 58%;
    height: 85%;
    top: 30px;
    overflow: hidden;
  }

  .sol-hero-img-box img {
    width: 123%;
    height: 82%;
    object-fit: fill;
    object-position: top center;
  }
}

/* ── ≤400px (very small phones) ── */
@media (max-width: 400px) {
  .sol-hero-card-full-width {
    min-height: 250px;
    padding: 20px 0 52px 12px;
    border-top-right-radius: 60px;
  }

  .sol-hero-content {
    max-width: 64%;
  }

  .sol-hero-title {
    font-size: 1.1rem;
  }

  .sol-hero-sub {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  /* ✅ Slightly smaller for tiny phones */
  .sol-hero-img-box {
    right: -28%;
    width: 58%;
    height: 82%;
    top: 0px;
    overflow: hidden;
  }

  .sol-hero-img-box img {
    width: 120%;
    height: 80%;
    object-fit: fill;
    object-position: top center;
  }
}

/* ─── ABOUT / STATS OVERLAP ─── */
.sol-section-about {
  padding: 10px 0 5px;
  background: transparent;
  padding-top: 50px;
  /* Reduced from 120px */
}

.sol-about-card {
  background: #f8f7f2;
  /* Exact mockup beige */
  border-radius: 40px;
  padding: 20px 15px;
  position: relative;
}

@media (min-width: 992px) {
  .sol-about-card {
    padding: 25px 30px;
  }
}

.sol-about-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sol-about-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #111;
  font-weight: 500;
  max-width: 500px;
}

.sol-stats-row {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 25px;
  /* Reduced from 40px */
}

.sol-stat-col {
  padding: 15px 0;
  /* Reduced from 20px */
  text-align: left;
}

.sol-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.sol-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  /* Slightly bolder */
  color: #333;
  margin-top: 5px;
}

/* ─── SERVICES PREMIUM ─── */
.sol-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: all .3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.sol-service-card:hover {
  background: #fff;
  transform: translateY(-10px);
  border-color: #00a4fb;
  box-shadow: 0 20px 50px rgba(19, 19, 74, 0.12);
}

.sol-service-card:hover .sol-service-name {
  color: var(--navy);
}

.sol-service-card:hover .sol-service-icon {
  background: rgba(0, 164, 251, 0.08);
  transform: scale(1.1);
}

.sol-service-icon {
  width: 60px;
  height: 60px;
  background: rgba(188, 188, 235, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all .3s;
}

.sol-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── EXPERT CARDS (EXACT MATCH) ─── */
.sol-section-experts {
  padding: 40px 0;
  background: #fff;
}

/* ─── EXPERT CARDS ─── */
.sol-expert-card {
  margin-bottom: 24px;
}




/* ─── BLOG CARDS (v2) ─── */
.sol-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.02);
  padding: 12px;
}

.sol-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.blog-image-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  padding: 16px 8px;
  gap: 12px;
}

.blog-author-avatar {
  width: 36px;
  height: 36px;
  background: #e0e0e0;
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-author-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

.blog-date {
  font-size: 0.75rem;
  color: var(--gray);
  margin-left: auto;
}

.blog-share-btn {
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.blog-share-btn:hover {
  opacity: 1;
}

.blog-content-box {
  background: var(--off-white);
  padding: 20px;
  border-radius: 16px;
}

.blog-main-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-status);
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-see-more {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: none;
}

/* ─── VIDEO PREMIUM (v3) ─── */
.sol-video-section {
  background: url('../images/Hammers.jpg') no-repeat center center / cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 40px 40px 0 0;
}

.sol-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 19, 74, 0.75);
}

.sol-video-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.sol-play-btn-centric {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.sol-play-btn-centric:hover {
  transform: scale(1.1);
}

.sol-video-features {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  margin-top: 50px;
}

.v-feature-item {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 40px;
  text-align: center;
}

.v-feature-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

/* ─── TESTIMONIALS PREMIUM (v3) ─── */
.sol-testi-header {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}

.sol-testi-header span {
  color: var(--navy-status);
}

.sol-testi-nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--navy);
}

.sol-testi-nav-btn.sol-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.sol-testi-card-premium {
  background: #fdfaf5;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
}

.testi-img-part {
  width: 350px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.testi-img-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-content-part {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.testi-quote-mark {
  font-size: 4rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  opacity: 0.8;
  margin-bottom: 20px;
}

.testi-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.testi-author {
  margin-top: auto;
}

.author-name {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
}

.author-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ─── CONSULTATION PREMIUM (v3) ─── */
.sol-consult-section {
  padding: 20px 0;
  background: #fff;
}

.sol-consult-outer {
  /* border: 2px solid #00a4fb; */
  border-radius: 0;
  padding: 40px;
}

.sol-consult-box {
  border: none;
  background: transparent;
}

.sol-inner-card {
  /* border: 2px dashed #00a4fb; */
  border-radius: 0;
  height: 100%;
}

.sol-consult-brand {
  background: #fff;
  /* border: 2px dashed #00a4fb; */
  padding: 60px;
  margin-right: 20px;
}

.sol-consult-form-box {
  /* border: 2px dashed #00a4fb; */
  padding: 40px;
}

.sol-title-form {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}

.sol-input-premium {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 12px 14px;
  background: #fdfdfd;
  font-size: 0.9rem;
}

.sol-input-premium:focus {
  border-color: var(--navy);
  box-shadow: none;
}

.sol-btn-navy-premium {
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  padding: 14px;
  font-size: 1.1rem;
  border: none;
  text-transform: capitalize;
}

/* ─── FOOTER (v3) ─── */
.sol-footer {
  background: #000;
  color: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 80px 0 40px;
}

.sol-footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}

.sol-footer-link:hover {
  color: #fff;
}

/* ─── COMPREHENSIVE RESPONSIVE (v4) ─── */
@media (max-width: 991.98px) {
  .sol-section {
    padding: 40px 0;
  }

  .sol-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  /* About / Stats */
  .sol-about-card {
    padding: 30px 20px;
  }

  .sol-stat-num {
    font-size: 2.5rem;
    text-align: center;
  }

  .sol-stat-label {
    text-align: center;
  }

  .sol-stat-col {
    text-align: center;
  }

  /* Video */
  .sol-video-section {
    border-radius: 0;
    min-height: 400px;
  }

  .sol-video-title {
    font-size: 2.2rem;
  }

  .v-feature-divider {
    display: none;
  }

  .v-feature-item {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .sol-video-features {
    margin-top: 30px;
  }

  /* Testimonials */
  .sol-testi-header {
    font-size: 2.5rem;
  }

  .sol-testi-card-premium {
    flex-direction: column;
    padding: 15px;
  }

  .testi-img-part {
    width: 100%;
    height: 300px;
  }

  .testi-content-part {
    padding: 30px 10px;
  }

  /* Consultation */
  .sol-consult-outer {
    padding: 15px;
    border-radius: 0;
  }

  .sol-consult-brand {
    margin-right: 0;
    margin-bottom: 20px;
    padding: 40px 20px;
  }

  .sol-consult-form-box {
    padding: 30px 20px;
  }

  .sol-title-form {
    font-size: 1.8rem;
  }

  /* Footer */
  .sol-footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 60px 0 30px;
  }

  .sol-footer .row {
    text-align: left;
  }

  .sol-footer .d-flex {
    justify-content: center;
  }

  .sol-footer-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .sol-blog-card {
    margin-bottom: 20px;
  }
}







/* ─── EXPERT CARDS V2 (IMAGE MATCHES CONTENT HEIGHT) ─── */

.sol-expert-card-v2 {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.sol-expert-card-v2:hover {
  transform: translateY(-5px);
}

.expert-card-inner {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 12px;
}

/* Image Section - Adapts to content height */
.expert-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  /* Maintains proportions on mobile */
  border-radius: 24px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d5a7b 100%);
  overflow: hidden;
  flex-shrink: 0;
}

.expert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Content Section */
.expert-info {
  padding: 10px 15px 15px;
  display: flex;
  flex-direction: column;
}

.ex-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ex-court {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.ex-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  flex: 1;
}

.ex-list li {
  font-size: 0.82rem;
  color: #333;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
  font-weight: 500;
}

.ex-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000;
  font-weight: bold;
}

/* Location Tag */
.ex-loc-tag {
  background: #fdfaf5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  width: fit-content;
}

.ex-loc-tag svg {
  width: 13px;
  height: 13px;
  color: #ff5252;
  flex-shrink: 0;
}

/* Experience Box */
.ex-exp-box-v2 {
  background: #fdfaf5;
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  width: fit-content;
}

.ex-years {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.ex-years-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #666;
  line-height: 1.2;
}

/* Action Row */
.ex-action-row-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.ex-status-dot {
  width: 14px;
  height: 14px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
  }
}

.ex-consult-btn-v2 {
  background: var(--navy);
  color: #fff !important;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
}

.ex-consult-btn-v2:hover {
  background: var(--navy-light);
  transform: translateX(2px);
}

.arrow-small {
  font-size: 1rem;
  transition: transform 0.3s;
}

.ex-consult-btn-v2:hover .arrow-small {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════════ */
/* TABLET & DESKTOP - IMAGE MATCHES CONTENT HEIGHT */
/* ═══════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .expert-card-inner {
    flex-direction: row;
    padding: 10px;
    gap: 15px;
    align-items: stretch;
    /* Makes image and content equal height */
  }

  .expert-img-box {
    width: 40%;
    aspect-ratio: unset;
    /* Remove aspect ratio */
    height: auto;
    /* Let it match content height */
    min-height: 100%;
    /* Fill full card height */
    border-radius: 20px;
  }

  .expert-info {
    flex: 1;
    padding: 15px 10px 10px;
  }

  .ex-name {
    font-size: 1.5rem;
  }

  .ex-court {
    font-size: 0.8rem;
  }

  .ex-list li {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .ex-loc-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .ex-exp-box-v2 {
    padding: 8px 14px;
  }

  .ex-years {
    font-size: 2rem;
  }

  .ex-consult-btn-v2 {
    font-size: 0.85rem;
    padding: 10px 22px;
  }
}

@media (min-width: 992px) {
  .expert-img-box {
    width: 42%;
    border-radius: 24px;
  }

  .expert-info {
    padding: 20px 20px 10px 0;
  }

  .ex-name {
    font-size: 1.6rem;
  }

  .ex-years {
    font-size: 2.2rem;
  }
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  .expert-card-inner {
    flex-direction: column;
    padding: 16px;
    gap: 15px;
  }

  .expert-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
  }

  .expert-info {
    padding-right: 0;
  }

  .ex-name {
    font-size: 1.4rem;
  }

  .ex-years {
    font-size: 1.6rem;
  }
}

@media (max-width: 576.98px) {
  .sol-expert-card-v2 {
    border-radius: 24px;
    margin-bottom: 25px;
  }

  .expert-card-inner {
    padding: 10px;
    gap: 12px;
  }

  .expert-img-box {
    aspect-ratio: 1/1;
    border-radius: 18px;
  }

  .expert-info {
    padding: 5px;
  }

  .ex-name {
    font-size: 1.25rem;
  }

  .ex-list li {
    font-size: 0.78rem;
    margin-bottom: 3px;
  }

  .ex-years {
    font-size: 1.6rem;
  }

  .ex-status-dot {
    width: 12px;
    height: 12px;
  }

  .ex-consult-btn-v2 {
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }
}

/* ══ MOBILE BOTTOM NAV ══ */
.sol-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  height: 70px;
  z-index: 2000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  padding: 0 10px;
}

.sol-mob-item {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  flex: 1;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
}

.sol-mob-item.active {
  color: var(--gold);
}

.sol-mob-item span:first-child {
  margin-bottom: 2px;
}

.sol-mob-center {
  width: 65px;
  height: 65px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(245, 200, 66, 0.4);
  margin-top: -35px;
  border: 5px solid #fff;
  transition: all 0.3s;
  z-index: 2001;
}

.sol-mob-center:hover {
  transform: scale(1.05);
  color: var(--navy);
}

/* ═══════════════════════════════════════════════
   ADVOCATE PAGE (LAWYER LIST) STYLES
   ═══════════════════════════════════════════════ */

/* ── BANNER ── */
.lawyers-banner {
    background: linear-gradient(rgba(10, 15, 30, 0.7), rgba(10, 15, 30, 0.7)), url("../images/Hammers.jpg") center/cover no-repeat;
    min-height: 240px;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.lawyers-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.lawyers-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: .95rem;
}

/* ── LAWYER MAIN LIST CARD ── */
.lawyers-list-section {
    background: #f6f8fb;
    padding: 40px 0 20px;
}

.lc {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8edf3;
    padding: 20px 20px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: box-shadow .2s, transform .2s;
    height: 100%;
    box-shadow: 0 2px 12px rgba(13, 27, 42, 0.06);
}

.lc:hover {
    box-shadow: 0 10px 32px rgba(13, 27, 42, 0.13);
    transform: translateY(-3px);
}

.lc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 88px;
}

.lc-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0c96b;
    background: #dde;
    margin-bottom: 8px;
}

.lc-stars {
    color: #f5a623;
    font-size: .9rem;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.lc-consult {
    font-size: .62rem;
    color: #64748b;
    white-space: nowrap;
    text-align: center;
}

.lc-info {
    flex: 1;
    min-width: 0;
}

.lc-name {
    font-weight: 800;
    font-size: 1.05rem;
    color: #13134a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
}

.lc-verified {
    color: #1a8fd1;
    font-size: 1rem;
}

.lc-practice {
    font-size: .78rem;
    color: #5a6a7e;
    margin-bottom: 2px;
    line-height: 1.4;
}

.lc-langs {
    font-size: .75rem;
    color: #5a6a7e;
    margin-bottom: 8px;
}

.lc-exp {
    font-size: .78rem;
    font-weight: 700;
    color: #13134a;
    margin-bottom: 10px;
}

.lc-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lc-free {
    font-size: .8rem;
    color: #2da44e;
    font-weight: 700;
}

.lc-fee {
    font-size: .85rem;
    font-weight: 700;
    color: #13134a;
    text-decoration: line-through;
}

.lc-call-btn {
    background: #e53935;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background .2s;
    margin-left: auto;
}

.lc-call-btn:hover {
    background: #b71c1c;
}

/* ── RECOMMENDED LAWYERS SECTION ── */
.rec-section {
    background: #fff;
    padding: 44px 0 50px;
}

.rec-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #13134a;
    margin-bottom: 26px;
}

.rec-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

.rec-scroll-wrap::-webkit-scrollbar {
    height: 4px;
}

.rec-scroll-wrap::-webkit-scrollbar-thumb {
    background: #e0c97a;
    border-radius: 4px;
}

.rec-row {
    display: flex;
    gap: 14px;
    min-width: max-content;
}

.rec-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 20px;
    padding: 20px 16px 18px;
    text-align: center;
    position: relative;
    overflow: visible;
    width: 200px;
    flex-shrink: 0;
    transition: box-shadow .22s, transform .22s;
    box-shadow: 0 3px 16px rgba(13, 27, 42, 0.09);
}

@media (min-width: 992px) {
    .rec-card {
        width: calc((100% - 56px) / 5);
    }
}

.rec-card:hover {
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.13);
    transform: translateY(-4px);
}

.rec-avatar-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 12px;
    margin-top: 4px;
    width: 100px;
    height: 100px;
    border: 4px solid #f0c96b;
    box-shadow: 0 0 0 2px rgba(240, 201, 107, 0.3);
}

.rec-avatar-wrap::before {
    content: 'EXPERT\A ADVOCATE';
    white-space: pre;
    position: absolute;
    top: 18px;
    left: -26px;
    width: 100px;
    background: #1a2e6c;
    color: #fff;
    font-size: .44rem;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 0;
    transform: rotate(-45deg);
    z-index: 3;
    line-height: 1.3;
}

.rec-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.rec-name {
    font-size: .92rem;
    font-weight: 800;
    color: #13134a;
    margin-bottom: 5px;
}

.rec-practice {
    font-size: .70rem;
    color: #6a7a8e;
    margin-bottom: 2px;
    line-height: 1.35;
}

.rec-langs {
    font-size: .67rem;
    color: #64748b;
    margin-bottom: 10px;
}

.rec-old-price {
    font-size: .76rem;
    color: #aaa;
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.rec-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #13134a;
    display: block;
    margin-bottom: 12px;
}

.rec-call-btn {
    width: 100%;
    background: #e53935;
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 10px 0;
    font-size: .80rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: background .2s;
    letter-spacing: .3px;
}

.rec-call-btn:hover {
    background: #b71c1c;
}

/* ── MORE LAWYERS ── */
.more-lawyers-section {
    background: #f6f8fb;
    padding: 10px 0 40px;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: #fff;
    border-radius: 20px;
    margin: 50px auto 70px;
    max-width: 1080px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    min-height: 420px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 72%;
    background: linear-gradient(135deg, #232863 0%, #2d3575 100%);
    border-radius: 0 50% 50% 0 / 0 100% 100% 0;
    z-index: 1;
    transform: scaleX(0.85);
    transform-origin: left;
}

.cta-banner-text {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px 60px 40px 80px;
    max-width: 55%;
    flex-shrink: 0;
}

.cta-banner-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    margin-bottom: 38px;
    line-height: 1.4;
    font-weight: 500;
}

.cta-chat-btn {
    background: #fff !important;
    color: #232863 !important;
    border: none;
    border-radius: 100px;
    padding: 16px 42px !important;
    font-weight: 800;
    font-size: clamp(1.2rem, 2vw, 1.55rem) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-family: 'Poppins', sans-serif;
}

.cta-chat-btn span {
    background: #25d366;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: white;
    flex-shrink: 0;
}

.cta-banner-img {
    position: absolute;
    right: -15px;
    bottom: 0;
    z-index: 2;
    height: 100%;
    max-height: 450px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

@media (max-width: 1199.98px) {
    .cta-banner::before {
        width: 68%;
    }
    .cta-banner-text {
        padding: 35px 40px 35px 60px;
        max-width: 58%;
    }
    .cta-banner-img {
        max-height: 400px;
        right: -10px;
    }
}

@media (max-width: 991.98px) {
    .cta-banner {
        padding: 50px 25px 280px;
        flex-direction: column;
        text-align: center;
        min-height: auto;
        max-width: 95%;
        margin: 40px auto 60px;
    }
    .cta-banner::before {
        width: 100%;
        height: 65%;
        border-radius: 20px 20px 50% 50% / 20px 20px 45% 45%;
        transform: none;
    }
    .cta-banner-text {
        max-width: 100%;
        margin-bottom: 240px;
        padding: 0;
    }
    .cta-banner-img {
        max-height: 320px;
        right: 50%;
        transform: translateX(50%);
        bottom: -15px;
    }
}

@media (max-width: 767.98px) {
    .lc { gap: 10px; }
    .lc-avatar { width: 50px; height: 50px; }
}

/* ══ CONTACT PAGE UI ══ */
body {
    font-family: 'DM Sans', sans-serif !important;
}

.sol-contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url('../images/Contact_Us.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.sol-contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/contact_up_banner.png') repeat;
    opacity: 0.2;
    pointer-events: none;
}

.sol-contact-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .4);
    color: #f0c96b;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title span {
    color: #c9a84c;
    display: block;
    margin-top: 5px;
}

.hero-sub {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 550px;
    font-weight: 400;
}

.sol-contact-section {
    background: #000;
    padding: 100px 0;
}

.section-label {
    color: #c9a84c;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-sub {
    color: rgba(255, 255, 255, .55);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 500px;
}

.sol-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.sol-info-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px 24px;
    transition: all .3s ease;
}

.sol-info-card:hover {
    background: rgba(201, 168, 76, .08);
    border-color: rgba(201, 168, 76, .3);
    transform: translateY(-5px);
}

.sol-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.sol-info-card h6 {
    color: #f0c96b;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sol-info-card p,
.sol-info-card a {
    color: rgba(255, 255, 255, .75);
    font-size: .9rem;
    line-height: 1.6;
    text-decoration: none;
    display: block;
}

.sol-info-card a:hover {
    color: #f0c96b;
}

.sol-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.sol-form-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #0d1b2a;
    margin-bottom: 8px;
    font-weight: 800;
}

.sol-form-card .form-sub {
    color: #64748b;
    font-size: .9rem;
    margin-bottom: 30px;
}

.sol-form-card .form-control,
.sol-form-card .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: .9rem;
    background: #f8fafc;
    color: #0d1b2a;
    transition: all .2s;
}

.sol-form-card .form-control:focus,
.sol-form-card .form-select:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .15);
    background: #fff;
}

.sol-form-card label {
    font-size: .82rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 7px;
}

.sol-submit-btn {
    width: 100%;
    background: #0d1b2a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 0;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .5px;
    transition: all .3s;
    cursor: pointer;
    margin-top: 15px;
}

.sol-submit-btn:hover {
    background: #c9a84c;
    color: #0d1b2a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, .2);
}

.sol-map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.sol-cta-band {
    background: #132237;
    padding: 80px 0 100px;
}

.sol-cta-band h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.sol-cta-band p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 550px;
}

.sol-ask-btn {
    background: #fff;
    color: #0d1b2a;
    border: none;
    border-radius: 50px;
    padding: 16px 45px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: all .3s;
}

.sol-ask-btn:hover {
    background: #c9a84c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991.98px) {
    .sol-info-grid { grid-template-columns: 1fr; }
    .sol-form-card { padding: 30px 25px; }
    .sol-cta-band { text-align: center; }
    .sol-cta-band .row > div:first-child { display: none; }
}