/* ==========================================================================
   DESIGN 43: ULTRA-VIP ESCORT AGENCY (CRIMSON, FLARE ORANGE & BURGUNDY THEME)
   STRICT COLOR PALETTE:
   #BC0519 (Rich Crimson Red)
   #FA6105 (Vibrant Flare Orange)
   #890009 (Deep Burgundy - Highlights & Borders)
   #FFFFFF (Pure White)
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --crimson-red: #BC0519;
  --flare-orange: #FA6105;
  --deep-burgundy: #890009;
  --pure-white: #FFFFFF;
  --bg-offwhite: #F7F5F2;

  /* Legacy alias mappings */
  --bg-dark: #FFFFFF;
  --bg-purple: #BC0519;
  --red-crimson: #BC0519;
  --orange-flare: #FA6105;

  /* Gradients */
  --grad-flame: linear-gradient(135deg, #FA6105 0%, #BC0519 100%);
  --grad-flame-hover: linear-gradient(135deg, #BC0519 0%, #890009 100%);
  --grad-nav: linear-gradient(90deg, #FA6105 0%, #BC0519 50%, #FA6105 100%);
  --grad-card: linear-gradient(145deg, #BC0519 0%, #9B0414 100%);

  /* Typography Colors */
  --text-dark: #1A1A1A;
  --text-muted-dark: #555555;
  --text-white: #FFFFFF;
  --text-lavender: #FFEAEB;
  --text-muted: rgba(255, 255, 255, 0.88);

  /* Borders & Shadows */
  --border-burgundy: #890009;
  --border-flame: #890009;
  --border-glass: rgba(250, 97, 5, 0.25);
  --shadow-flame: 0 8px 25px rgba(250, 97, 5, 0.35);
  --shadow-dark: 0 12px 30px rgba(137, 0, 9, 0.25);

  /* Radius & Fonts */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-title: 'Outfit', system-ui, -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

body {
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: 2.5rem 0;
}

.text-gradient {
  background: linear-gradient(135deg, #BC0519 0%, #FA6105 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  /* background: rgba(188, 5, 25, 0.08); */
  border: 1px solid #890009;
  color: #BC0519;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

/* ==========================================
   BUTTON SYSTEM
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

/* Highlighted WhatsApp CTA */
.btn-flame {
  background: #00bf46 !important;
  color: #FFFFFF !important;
  border: 1px solid #1EBE57 !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-flame:hover {
  background: #1EBE57 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Highlighted Call Now CTA */
.btn-purple {
  background: #FA6105 !important;
  color: #FFFFFF !important;
  border: 1px solid #890009 !important;
  box-shadow: 0 6px 20px rgba(250, 97, 5, 0.4);
}

.btn-purple:hover {
  background: #890009 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(137, 0, 9, 0.5);
}

.btn-outline {
  background: #BC0519;
  color: #FFFFFF;
  border: 1px solid #890009;
}

.btn-outline:hover {
  background: #FA6105;
  border-color: #890009;
  color: #FFFFFF;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.1rem;
}

/* ==========================================
   2-TIER HEADER NAVIGATION (#890009 TOP, FULL-WIDTH NAV GRADIENT)
   ========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: 0;
  box-shadow: 0 4px 20px rgba(137, 0, 9, 0.25);
}

/* Header Top Row (#890009 Background) */
.header-top-row {
  background-color: #890009 !important;
  width: 100%;
  padding: 0.85rem 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(250, 97, 5, 0.4));
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.logo:hover .logo-icon-box {
  transform: scale(1.1) rotate(-5deg);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}

.logo-text span {
  color: #FA6105;
  background: linear-gradient(135deg, #FA6105 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-subtext {
  font-size: 0.68rem;
  letter-spacing: 2.2px;
  color: #FA6105;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Header Nav Row (Full Width Gradient: #FA6105 left/right, #BC0519 center) */
.header-nav-row {
  width: 100%;
  background: linear-gradient(90deg, #FA6105 0%, #BC0519 50%, #FA6105 100%) !important;
  padding: 0.65rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 4px 15px rgba(137, 0, 9, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.35rem 0;
  opacity: 0.95;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: #FFFFFF;
  transition: var(--transition);
  border-radius: 3px;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

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

.mobile-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #FA6105;
  color: #FFFFFF;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  border: 1px solid #890009;
}

.mobile-drawer-close {
  display: none;
}

.nav-backdrop {
  display: none;
}

/* ==========================================
   HERO SECTION & 5-CARD PARALLELOGRAM SHOWCASE
   ========================================== */
.hero {
  position: relative;
  padding: 2rem 0 2.5rem;
  text-align: center;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(250, 97, 5, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(188, 5, 25, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-centered {
  max-width: 850px;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin: 1.2rem 0;
  color: var(--text-dark);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Featured Companion 5-Card Grid */
.hero-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  position: relative;
  z-index: 2;
}

.trio-card {
  position: relative;
  border-radius: 0 !important;
  overflow: hidden;
  /* border: 2px solid #890009 !important; */
  outline: none !important;
  /* box-shadow: 0 10px 25px rgba(137, 0, 9, 0.25) !important; */
  height: 380px;
  transform: skewX(-8deg);
  transition: var(--transition);
  background: #BC0519;
}

.trio-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform: skewX(8deg) scale(1.18);
  transform-origin: center center;
}

.trio-card:hover {
  transform: skewX(-8deg) translateY(-6px);
  border-color: #FA6105 !important;
}

.trio-img, .trio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.trio-card:hover .trio-img, .trio-card:hover .trio-video {
  transform: scale(1.05);
}

.trio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(137, 0, 9, 0.95) 95%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  text-align: left;
}

.trio-name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #FFFFFF;
}

/* ==========================================
   SPLIT FEATURE SECTION
   ========================================== */
.split-section {
  background: #FFFFFF;
  /* border-top: 1px solid rgba(137, 0, 9, 0.15); */
  /* border-bottom: 1px solid rgba(137, 0, 9, 0.15); */
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-triple-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 240px 220px;
  gap: 0.5rem;
  align-items: center;
}

.split-img-1, .split-img-2, .split-img-3 {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px double #890009;
  box-shadow: 0 10px 25px rgba(137, 0, 9, 0.2);
}

.split-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 480px;
}

.split-img-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 230px;
}

.split-img-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 230px;
}

.split-clean-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.clean-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.clean-item-heading {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: #BC0519;
}

.clean-item-text {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================
   RECREATED PROFILE CARDS (#BC0519 WITH #890009 BORDER)
   ========================================== */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 2rem;
}

.spotlight-card, .directory-card {
  background: linear-gradient(160deg, #E61C30 0%, #BC0519 45%, #890009 85%, #590006 100%) !important; /* Gradient from light crimson red to deep burgundy */
  border: 4px double #890009 !important; /* Burgundy double border */
  outline: 1px solid #890009 !important;
  outline-offset: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(137, 0, 9, 0.35);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}

.spotlight-card:hover, .directory-card:hover {
  transform: translateY(-8px) scale(1.015);
  background: linear-gradient(160deg, #FA6105 0%, #BC0519 45%, #890009 100%) !important;
  border-color: #FA6105 !important;
  box-shadow: 0 20px 45px rgba(188, 5, 25, 0.5), 0 0 25px rgba(250, 97, 5, 0.4);
}

.glass-reflection-overlay {
  position: absolute;
  inset: 0; 
  pointer-events: none;
  z-index: 3;
}

.card-shine-beam {
  position: absolute;
  top: -150%;
  left: -150%;
  width: 400%;
  height: 400%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(250, 97, 5, 0.3) 54%,
    transparent 65%
  );
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 4;
  opacity: 0.45;
  animation: continuousBeamSweep 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes continuousBeamSweep {
  0% { transform: rotate(30deg) translate(-100%, -100%); }
  35% { transform: rotate(30deg) translate(100%, 100%); }
  100% { transform: rotate(30deg) translate(100%, 100%); }
}

.spotlight-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

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

.spotlight-rate-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: #FA6105 !important;
  color: #FFFFFF !important;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 5;
}

.spotlight-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.spotlight-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.spotlight-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
}

.spotlight-verified {
  color: #FA6105;
  font-size: 0.95rem;
}

.spotlight-meta-pills {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 0.35rem 0 0.6rem;
}

.meta-pill {
  background: rgba(137, 0, 9, 0.55);
  border: 1px solid rgba(250, 97, 5, 0.3);
  color: #FFFFFF;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.spotlight-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.spotlight-tag {
  background: rgba(250, 97, 5, 0.2);
  border: 1px solid #FA6105;
  color: #FFFFFF;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
}

/* Action CTAs inside Profile Cards */
.card-direct-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.65rem;
  /* border-top: 1px solid rgba(137, 0, 9, 0.5); */
}

.card-direct-ctas .btn {
  width: 100%;
  padding: 0.5rem 0.4rem;
  font-size: 0.8rem;
}

/* ==========================================
   VIP DIRECTORY SECTION
   ========================================== */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.directory-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}

.directory-img-box {
  position: relative;
  height: 100%;
  min-height: 240px;
}

.directory-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.directory-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.directory-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.directory-name {
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 800;
  color: #FFFFFF;
}

.directory-category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #FA6105;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.1rem;
}

.directory-specs-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem;
  margin: 0.55rem 0;
  background: rgba(137, 0, 9, 0.5);
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(250, 97, 5, 0.35);
}

.spec-matrix-item {
  font-size: 0.74rem;
  color: #FFEAEB;
}

.spec-matrix-item strong {
  color: #FFFFFF;
}

.directory-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #FFFFFF;
}

.rate-value {
  color: #FA6105;
  font-weight: 900;
  font-size: 0.98rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ==========================================
   LOCATION SECTION & TAG BUTTONS
   ========================================== */
.location-simple-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.location-tag-item {
  position: relative;
  background: #BC0519 !important;
  border: 3px double #890009 !important;
  color: #FFFFFF !important;
  padding: 0.85rem 1.45rem 0.75rem 1.85rem;
  border-radius: 4px 18px 18px 4px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 6px 18px rgba(137, 0, 9, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
  transform: rotate(-2.5deg) skewX(-2deg);
}

.location-tag-item:nth-child(even) {
  transform: rotate(2.5deg) skewX(2deg);
}

.location-tag-dot {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #FA6105 50%, #890009 100%);
  box-shadow: 0 0 6px rgba(250, 97, 5, 0.8);
  z-index: 2;
}

.location-tag-item:hover {
  background: #FA6105 !important;
  border-color: #890009 !important;
  transform: rotate(0deg) skewX(0deg) translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(250, 97, 5, 0.5);
  color: #FFFFFF !important;
}

.location-map-wrapper {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px double #890009;
  box-shadow: 0 15px 35px rgba(137, 0, 9, 0.25);
}

.location-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   SERVICES PILLS
   ========================================== */
#services {
  padding: 2.5rem 0 !important;
  background: #FFFFFF;
}

.services-pill-container {
  max-width: 1400px;
  width: 96%;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.services-pill-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.1rem;
  padding: 0.5rem 0;
}

.service-pill {
  position: relative;
  background: #BC0519 !important;
  border: 3px double #890009 !important;
  border-radius: 14px;
  padding: 0.95rem 1.65rem 0.85rem 2.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #FFFFFF !important;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(137, 0, 9, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
  transform: rotate(-2.5deg) skewX(-2deg);
}

.service-pill:nth-child(even) {
  transform: rotate(2.5deg) skewX(2deg);
}

.service-pill-dot {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #FA6105 50%, #890009 100%);
  box-shadow: 0 0 8px rgba(250, 97, 5, 0.8);
  z-index: 2;
}

.service-pill:hover {
  background: #FA6105 !important;
  border-color: #890009 !important;
  transform: rotate(0deg) skewX(0deg) translateY(-6px) scale(1.06) !important;
  box-shadow: 0 14px 30px rgba(250, 97, 5, 0.5);
  color: #FFFFFF !important;
  z-index: 5;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #BC0519 !important;
  border: 3px double #890009 !important;
  border-radius: var(--radius-md);
  overflow: hidden;
  color: #FFFFFF;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question i {
  color: #FA6105;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #FFEAEB;
  font-size: 0.92rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-images-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  height: 100%;
  align-items: stretch;
  padding: 0.5rem 0;
}

.faq-simple-img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 !important;
  border: 2px solid #890009 !important;
  transform: rotate(-3.5deg) skewX(-3deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-simple-img:hover {
  transform: rotate(-1deg) skewX(-1deg) scale(1.04);
}

/* ==========================================
   CONTENT SECTION (OFF-WHITE BACKGROUND)
   ========================================== */
.content-section {
  background-color: #f7f5f2c0 !important; /* Off-white background */
  /* border-top: 1px solid #890009;
  border-bottom: 1px solid #890009; */
  padding: 1.5rem 0 !important;
}

.content-wrapper {
  background-color: #FFFFFF !important;
  border: 3px double #890009 !important;
  outline: 1px solid #890009 !important;
  outline-offset: 2px;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 25px rgba(137, 0, 9, 0.12);
}

.content-main-title {
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #BC0519 !important;
  line-height: 1.25;
  margin: 0.5rem 0 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #BC0519 0%, #FA6105 100%);
  border-radius: var(--radius-pill);
}

.content-wrapper p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #2D2D2D !important;
  margin-bottom: 0.65rem;
}

.content-wrapper p:last-child {
  margin-bottom: 0;
}

.content-wrapper strong {
  color: #BC0519 !important;
}

.content-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.content-feature-box {
  background: #F7F5F2 !important;
  border: 1px solid #890009 !important;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(137, 0, 9, 0.08);
}

.content-feature-box h3 {
  color: #BC0519 !important;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.content-feature-box p {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #555555 !important;
  margin: 0;
}

/* ==========================================
   FOOTER & FOOTER BOTTOM (#890009)
   ========================================== */
.footer {
  background: #2B0407 !important; /* Deep Burgundy dark footer */
  border-top: 2px solid #890009;
  padding: 2.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

.footer-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #FFFFFF !important;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #FA6105 !important;
  padding-left: 4px;
}

/* Footer Bottom (#890009 Background) */
.footer-bottom {
  background-color: #890009 !important; /* Footer bottom #890009 */
  border-top: 1px solid #FA6105;
  padding: 1.1rem 0;
  width: 100%;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: #FFFFFF !important;
  font-weight: 600;
}

/* Floating Action Bar */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 1500;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.float-whatsapp {
  background: #25D366 !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

.float-call {
  background: #FA6105 !important;
  box-shadow: 0 6px 20px rgba(250, 97, 5, 0.5) !important;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1100px) {
  .hero-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid, .faq-grid, .location-simple-wrapper, .directory-grid, .content-three-parts-grid {
    grid-template-columns: 1fr;
  }
  
  .directory-card {
    grid-template-columns: 160px 1fr;
  }

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

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-nav-row {
    padding: 0.5rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: #890009 !important;
    border-left: 2px solid #FA6105;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 1100;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.85);
  }

  .nav-menu.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: slideInMobileNav 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideInMobileNav {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: #BC0519;
    color: #FFFFFF;
    border: 1px solid #FA6105;
    border-radius: 50%;
  }

  .nav-backdrop.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1050;
  }

  .hero-showcase-grid {
    grid-template-columns: 1fr;
  }

  .trio-card, .trio-card-inner, .location-tag-item, .service-pill, .faq-simple-img {
    transform: none !important;
  }

  .spotlight-grid, .directory-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .directory-card {
    grid-template-columns: 1fr !important;
  }

  .directory-img-box {
    height: 250px;
  }

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

  .content-wrapper {
    padding: 1.25rem 1rem;
  }

  .content-features-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .floating-actions {
    position: fixed;
    bottom: 1.25rem !important;
    right: 1.25rem !important;
    left: auto !important;
    z-index: 1500;
  }
}

@media (max-width: 576px) {
  .faq-images-column {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  
  .faq-simple-img {
    min-height: 260px;
  }

  .directory-specs-matrix {
    display: none !important;
  }

  .card-direct-ctas .btn .btn-text {
    display: none !important;
  }

  .card-direct-ctas .btn {
    padding: 0.65rem 0;
    font-size: 1.2rem;
    justify-content: center;
  }

  .floating-actions {
    bottom: 1rem !important;
    right: 1rem !important;
    gap: 0.65rem !important;
  }

  .float-btn {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.25rem !important;
  }
}
