/* ==========================================================================
   PETALSMART-INSPIRED DESIGN & ALIGNMENT ARCHITECTURE
   Brand Palette: Gold (#c7ab48), Charcoal (#121417), Slate (#f8fafc), White (#ffffff)
   ========================================================================== */

:root {
  --primary-gold: #c7ab48;
  --gold-light: #dfc76a;
  --gold-dark: #9e8428;
  --gold-gradient: linear-gradient(135deg, #dfc76a 0%, #c7ab48 50%, #9e8428 100%);
  --dark-bg: #121417;
  --dark-card: #1c2026;
  --slate-bg: #f8fafc;
  --border-color: #e2e8f0;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(8, 20, 27, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 1. SCROLL PROGRESS BAR */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 9999999;
  transition: width 0.1s ease-out;
}

/* 2. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #121417;
  border-color: var(--gold-light);
  box-shadow: 0 3px 12px rgba(199, 171, 72, 0.35);
}

.btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(199, 171, 72, 0.45);
}

.btn--dark {
  background: #1e242d;
  color: #ffffff;
  border-color: var(--primary-gold);
}

.btn--dark:hover {
  background: var(--primary-gold);
  color: #121417;
}

.btn--outline-gold {
  background: rgba(199, 171, 72, 0.08);
  color: var(--gold-light);
  border-color: var(--primary-gold);
}

.btn--outline-gold:hover {
  background: var(--primary-gold);
  color: #121417;
}

.btn--outline-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-gold);
  color: var(--gold-light);
}

.btn--outline-slate {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
}

.btn--outline-slate:hover {
  border-color: var(--primary-gold);
  color: #927725;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.84rem;
  border-radius: 8px;
}

.btn--lg {
  padding: 13px 24px;
  font-size: 0.96rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3. TOP ANNOUNCEMENT BAR */
.top-bar {
  background: #0d0f12;
  color: #c5cbd5;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(199, 171, 72, 0.25);
  padding: 7px 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulseGreen 2s infinite;
  display: inline-block;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.top-bar__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-dot {
  color: var(--primary-gold);
}

.top-bar__phone {
  color: #ffffff;
  font-weight: 700;
}

/* 4. NAVBAR (Point 1: Perfectly fitted menu on desktop) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eef2f6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 36px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 14px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  padding: 6px 2px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #927725;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-phone-box {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.2;
}

.phone-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.phone-link {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}

.mobile-header-call {
  display: none;
  align-items: center;
  gap: 5px;
  background: rgba(199, 171, 72, 0.12);
  color: #8c7121;
  border: 1.5px solid var(--primary-gold);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

/* 5. MOBILE DRAWER */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000000 !important;
  display: none;
}

.mobile-nav-backdrop.active {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background: #111317;
  color: #ffffff;
  z-index: 2000001 !important;
  display: none !important;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  border-left: 1.5px solid var(--primary-gold);
}

.mobile-nav.active {
  display: flex !important;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

.mobile-nav__logo {
  height: 32px;
  width: auto;
  filter: brightness(1.2);
}

.mobile-nav__close {
  background: #1e2229;
  border: 1px solid rgba(199, 171, 72, 0.3);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
}

.mobile-nav__badge {
  background: rgba(199, 171, 72, 0.1);
  border: 1px solid rgba(199, 171, 72, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.76rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.mobile-nav__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #181b22;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
}

.badge-num {
  font-size: 0.72rem;
  color: var(--gold-light);
  background: rgba(199, 171, 72, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 18px;
}

/* 6. HERO SECTION (Points 4 & 5: Balanced Desktop Alignment & Left-Right Buttons) */
.hero-section {
  background: #121417;
  color: #ffffff;
  padding: 56px 0 64px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  padding-right: 12px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 171, 72, 0.12);
  border: 1px solid rgba(199, 171, 72, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 16px;
  width: fit-content;
  letter-spacing: 0.04em;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
}

.hero-heading {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-lead {
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
}

.quote-card {
  background: #1b1e24;
  border-left: 3px solid var(--primary-gold);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
  font-style: italic;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 26px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.bullet-check {
  color: var(--gold-light);
  font-weight: 800;
}

/* Point 5: Left / Right buttons in desktop mode */
.hero-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 12px;
}

.hero-subnote {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* Hero Media Column (Point 4: Clean Right Alignment) */
.hero-media-col {
  display: flex;
  justify-content: center; /* Shifted a little left on desktop for balanced alignment */
}

.hero-card-media {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(199, 171, 72, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  background: #181b22;
}

.hero-card-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Point 3: Clean, fully responsive image caption badges */
.hero-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(18, 20, 25, 0.92);
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.74rem;
  backdrop-filter: blur(8px);
}

.hero-caption-pill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 20, 25, 0.94);
  border-top: 1px solid rgba(199, 171, 72, 0.35);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.hero-caption-pill strong {
  color: #ffffff;
}

.hero-caption-pill span {
  color: var(--gold-light);
}

/* 7. TRUST METRICS BAR (Point 7: High-End Premium Redesign for Desktop & Mobile) */
.trust-bar {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 3.5px solid var(--primary-gold);
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 24px rgba(199, 171, 72, 0.18);
}

.trust-card__icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: inline-block;
}

.trust-card__num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #9e8428;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.trust-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.trust-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* 8. SECTIONS (General Styling) */
.section {
  padding: 64px 0;
  overflow: hidden;
  position: relative;
}

.section--slate {
  background: var(--slate-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section--dark {
  background: #121417;
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8c7121;
  background: rgba(199, 171, 72, 0.12);
  border: 1px solid rgba(199, 171, 72, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 10px;
}

.eyebrow-pill--gold {
  color: var(--gold-light);
  background: rgba(199, 171, 72, 0.18);
  border-color: rgba(199, 171, 72, 0.4);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 14px;
}

.text-white {
  color: #ffffff !important;
}

.text-gold {
  color: var(--gold-light) !important;
}

.text-muted {
  color: #94a3b8 !important;
}

.section-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 22px;
}

/* Visual 2-Column Layout */
.visual-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.reverse-desktop {
  grid-template-columns: 1.1fr 0.9fr;
}

.visual-layout__media {
  position: relative;
}

.section-image-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.card-img {
  width: 100%;
  display: block;
}

/* Point 8: Divorce section image in desktop mode is not cut */
@media (min-width: 769px) {
  /* Point 8: Dallas Divorce Counsel desktop image fits box edge-to-edge with no awkward margins */
@media (min-width: 769px) {
  #divorce .visual-layout__media {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #divorce .section-image-card {
    max-width: 390px !important;
    width: 100% !important;
    background: #181b22 !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }
  #divorce .card-img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  #divorce .image-overlay-badge {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
  #custody .card-img,
  #attorney-ify .card-img {
    max-height: 520px !important;
    object-fit: cover !important;
    border-radius: 12px;
  }
}

/* Point 3: Image Overlay Badges Made Clean & Fully Responsive */
.image-overlay-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 20, 25, 0.94);
  border-top: 1px solid rgba(199, 171, 72, 0.35);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.gold-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
}

/* Checklist */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checklist-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
}

.checklist--light .checklist-row {
  color: #cbd5e1;
}

.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(199, 171, 72, 0.15);
  color: #8c7121;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-circle--gold {
  background: rgba(199, 171, 72, 0.25);
  color: var(--gold-light);
}

/* Point 9: Section actions with real buttons side-by-side on desktop */
.section-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.bio-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.bio-card__row {
  font-size: 0.88rem;
  line-height: 1.4;
}

.bio-card__row strong {
  color: #0f172a;
  margin-right: 6px;
}


/* ==========================================================================
   WHY CHOOSE US / COMMITMENT SECTION ENHANCEMENTS
   ========================================================================== */
#why-us {
  padding: 56px 0;
}

#why-us .cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 3.5px solid var(--primary-gold);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 24px rgba(199, 171, 72, 0.15);
}

.feature-card__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(199, 171, 72, 0.12);
  border: 1px solid rgba(199, 171, 72, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-card__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.feature-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 992px) {
  #why-us .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  #why-us {
    padding: 38px 0 32px !important;
  }

  #why-us .section-header {
    margin-bottom: 18px !important;
  }

  #why-us .section-title {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }

  #why-us .section-desc {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
  }

  /* Sleek Executive Row Layout on Mobile */
  #why-us .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #why-us .feature-card {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    padding: 15px 16px !important;
    border-top: 1px solid var(--border-color) !important;
    border-left: 3.5px solid var(--primary-gold) !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  }

  #why-us .feature-card__icon-box {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }

  #why-us .feature-card__icon {
    font-size: 1.35rem !important;
  }

  #why-us .feature-card__body {
    flex: 1;
  }

  #why-us .feature-card__title {
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  #why-us .feature-card__desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }
}



/* ==========================================================================
   HORIZONTAL SCROLLABLE TESTIMONIALS TRACK
   ========================================================================== */
.reviews-slider-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.reviews-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 171, 72, 0.5) rgba(241, 245, 249, 0.8);
  padding: 6px 4px 16px !important;
  margin-bottom: 14px !important;
}

.reviews-grid::-webkit-scrollbar {
  height: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 9999px;
}

.reviews-grid::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 9999px;
}

.review-card {
  flex: 0 0 340px !important;
  width: 340px !important;
  max-width: 340px !important;
  scroll-snap-align: start !important;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px 20px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: rgba(199, 171, 72, 0.5);
}

.review-card__stars {
  color: #d4af37;
  font-size: 0.95rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card__quote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 14px;
  font-style: italic;
}

.review-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
}

.review-card__author span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.reviews-swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.reviews-nav-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.reviews-nav-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: #121417;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .reviews-grid {
    gap: 12px !important;
    padding-bottom: 12px !important;
  }
  .review-card {
    flex: 0 0 84% !important;
    width: 84% !important;
    max-width: 310px !important;
    scroll-snap-align: center !important;
    padding: 18px 16px;
  }
  .review-card__quote {
    font-size: 0.84rem;
    line-height: 1.55;
  }
}

.reviews-badge-row {
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* 10. DALLAS OFFICE SHOWCASE */
.office-showcase {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.office-media {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.office-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.office-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 20, 25, 0.94);
  color: #ffffff;
  border-top: 1px solid rgba(199, 171, 72, 0.4);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.office-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 22px;
}

.office-col {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.office-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.office-col strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 3px;
}

.office-col p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* 11. CONSULTATION FORM & MAP (Borderless MyCase Form) */
.consult-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.consult-form-box {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.mycase-wrapper {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  position: relative;
  min-height: 940px;
}

.mycase-iframe {
  width: 100% !important;
  height: 940px !important;
  border: none !important;
  outline: none !important;
  display: block;
  background: transparent !important;
}

.form-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.contact-info-row strong {
  color: #0f172a;
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-row p {
  color: var(--text-muted);
  margin: 0;
}

/* 12. FOOTER */
.footer {
  background: #0b0d10;
  color: #94a3b8;
  padding: 36px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__logo {
  height: 34px;
  filter: brightness(1.2);
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__bottom {
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer__disclaimer {
  margin-top: 6px;
  font-size: 0.72rem;
  color: #64748b;
}

/* 13. PETALSMART-STYLE MOBILE BOTTOM BAR */
.mobile-bottom-bar {
  display: none;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border-top: 1px solid var(--border-color) !important;
  padding: 8px 14px !important;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.mobile-bottom-bar__inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  max-width: 500px !important;
  margin: 0 auto !important;
  height: 44px !important;
}

.mobile-bottom-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 44px !important;
  border-radius: 10px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  letter-spacing: -0.01em !important;
  transition: var(--transition) !important;
}

.mobile-bottom-btn--call {
  background: #f1f5f9 !important;
  color: #0f172a !important;
  border: 1.5px solid #cbd5e1 !important;
}

.mobile-bottom-btn--call:hover {
  background: #e2e8f0 !important;
}

.mobile-bottom-btn--action {
  background: var(--gold-gradient) !important;
  color: #121417 !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(199, 171, 72, 0.35) !important;
  font-weight: 800 !important;
}

.mobile-bottom-btn--action:hover {
  filter: brightness(1.08) !important;
}

/* Point 2: DO NOT SHOW STICKY BUTTONS IN DESKTOP AT ALL! */
.desktop-bottom-bar {
  display: none !important;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS (Points 1, 2, 3, 4, 5, 6, 7, 8, 9)
   ========================================================================== */
@media (min-width: 841px) {
  body {
    padding-bottom: 0 !important;
  }
  .mobile-bottom-bar {
    display: none !important;
  }
}

/* Breakpoint for tablet/smaller laptops: cleanly switch to hamburger so menu never squishes */
@media (max-width: 1120px) {
  .desktop-nav,
  .header-phone-box {
    display: none !important;
  }
  .mobile-header-call {
    display: inline-flex !important;
  }
  .hamburger-btn {
    display: flex !important;
  }
  .header-cta {
    display: inline-flex !important;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .visual-layout,
  .reverse-desktop {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consult-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .mobile-bottom-bar {
    display: block !important;
  }
  body {
    padding-bottom: 64px !important;
  }
}

@media (max-width: 768px) {
  .top-bar__meta {
    display: none;
  }
  .top-bar__inner {
    justify-content: center;
  }

  .navbar__inner {
    height: 58px;
  }
  .logo__img {
    height: 30px;
    max-width: 155px;
  }

  /* Point 4: Hero ordering */
  .hero-media-col {
    order: -1;
    justify-content: center;
  }
  .visual-layout__media {
    order: -1;
  }

  .hero-section {
    padding: 24px 0 40px;
  }

  /* Point 6: Reduce hero image size on mobile so visitor doesn't have to scroll excessively */
  .hero-card-media {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 18px !important;
    border-radius: 12px !important;
  }
  .hero-card-img {
    width: 100% !important;
    max-height: 420px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* Point 3: Clean responsive badge on mobile */
  .hero-badge-pill {
    position: static !important;
    display: flex !important;
    margin: 6px auto !important;
    font-size: 0.7rem !important;
    width: fit-content;
  }

  .hero-caption-pill {
    position: static !important;
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
  }

  .image-overlay-badge {
    position: static !important;
    font-size: 0.75rem !important;
    padding: 8px 12px !important;
  }

  .office-badge {
    position: static !important;
    font-size: 0.76rem !important;
    padding: 8px 12px !important;
  }

  .hero-heading {
    font-size: 1.85rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.22;
  }

  .bullet-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Point 5: Full width buttons stacked cleanly on mobile */
  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-actions .btn {
    width: 100% !important;
  }

  /* Point 9: Section action buttons on mobile */
  .section-actions {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .section-actions .btn {
    width: 100% !important;
  }

  /* Point 7: Trust metrics 2x2 grid on mobile */
  .trust-bar {
    padding: 28px 0;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .trust-card {
    padding: 16px 12px !important;
  }
  .trust-card__num {
    font-size: 1.85rem !important;
  }
  .trust-card__title {
    font-size: 0.88rem !important;
  }
  .trust-card__desc {
    font-size: 0.74rem !important;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* reviews grid is now horizontal */

  .office-features {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px;
  }

  .consult-form-box {
    padding: 0 !important;
  }

  .mycase-wrapper {
    min-height: 980px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  .mycase-iframe {
    height: 980px !important;
    border: none !important;
    outline: none !important;
  }

  .container {
    padding: 0 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.45rem;
  }
  .mobile-bottom-btn {
    font-size: 0.82rem !important;
  }
}


/* ==========================================================================
   AMBIENT MOVING GUIDE LINES (Dual Beam Illumination)
   ========================================================================== */
.ambient-lines-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.moving-guide-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, 
    rgba(199, 171, 72, 0.04) 0%, 
    rgba(199, 171, 72, 0.12) 20%, 
    rgba(199, 171, 72, 0.12) 80%, 
    rgba(199, 171, 72, 0.04) 100%
  );
  overflow: hidden;
}

.moving-guide-line--left {
  left: max(16px, calc(50vw - 590px));
}

.moving-guide-line--right {
  right: max(16px, calc(50vw - 590px));
}

.moving-guide-line .moving-beam {
  position: absolute;
  left: -1px;
  width: 3px;
  height: 180px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(199, 171, 72, 0.25) 15%, 
    rgba(223, 199, 106, 0.95) 50%, 
    rgba(199, 171, 72, 0.25) 85%, 
    transparent 100%
  );
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(199, 171, 72, 0.7), 0 0 24px rgba(223, 199, 106, 0.4);
  animation: beamTravel 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.moving-guide-line--right .moving-beam {
  animation-delay: 3.75s;
  animation-duration: 9s;
}

@keyframes beamTravel {
  0% {
    top: -200px;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .moving-guide-line--left {
    left: 8px;
  }
  .moving-guide-line--right {
    right: 8px;
  }
  .moving-guide-line .moving-beam {
    width: 2px;
    height: 130px;
  }
}

/* Ensure mobile drawer backdrop and drawer sit on top of sticky bottom buttons */
.mobile-nav-backdrop {
  z-index: 2000000 !important;
}

.mobile-nav {
  z-index: 2000001 !important;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.6) !important;
}

body.drawer-open .mobile-bottom-bar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease, visibility 0.2s ease !important;
}


/* Compact Space-Saving Testimonials Section */
#reviews {
  padding: 48px 0 !important;
}

#reviews .section-header {
  margin-bottom: 18px !important;
}

#reviews .section-title {
  margin-bottom: 8px !important;
}

#reviews .section-desc {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  #reviews {
    padding: 36px 0 28px !important;
  }
  #reviews .section-header {
    margin-bottom: 14px !important;
  }
}


/* ==========================================================================
   CUSTODY SECTION DESKTOP ENHANCEMENTS (Left-Right Buttons & Full Head View)
   ========================================================================== */
@media (min-width: 769px) {
  #custody .section-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 12px !important;
  }
  #custody .section-actions .btn {
    padding: 12px 18px !important;
    font-size: 0.88rem !important;
    white-space: nowrap !important;
  }
  #custody .card-img {
    max-height: 560px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}


/* ==========================================================================
   CONVENIENT DALLAS LOCATION ENHANCEMENTS (Split Showcase Architecture)
   ========================================================================== */
#office .office-showcase {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
  #office .office-showcase {
    display: grid !important;
    grid-template-columns: 1.05fr 1fr !important;
    align-items: stretch !important;
  }
  #office .office-media {
    max-height: none !important;
    height: 100% !important;
    position: relative !important;
    min-height: 480px !important;
  }
  #office .office-img {
    max-height: none !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    display: block !important;
  }
  #office .office-right-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: #f8fafc !important;
    border-left: 1px solid var(--border-color) !important;
  }
  #office .office-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 24px !important;
    background: transparent !important;
    border-top: none !important;
    flex: 1 !important;
  }
  #office .office-footer-bar {
    border-top: 1px solid var(--border-color) !important;
    background: #ffffff !important;
    padding: 16px 24px !important;
  }
}

#office .office-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 20, 25, 0.94);
  color: #ffffff;
  border-top: 1px solid rgba(199, 171, 72, 0.4);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

#office .office-col {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#office .office-col:hover {
  transform: translateY(-2px);
  border-color: var(--primary-gold);
  box-shadow: 0 6px 16px rgba(199, 171, 72, 0.12);
}

#office .office-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(199, 171, 72, 0.14);
  border: 1px solid rgba(199, 171, 72, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

#office .office-col strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

#office .office-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

#office .office-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

#office .office-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #334155;
}

#office .office-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  #office .office-media {
    position: relative !important;
    max-height: 380px !important;
    overflow: hidden !important;
  }
  #office .office-img {
    max-height: 380px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    display: block !important;
  }
  #office .office-features {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 16px !important;
    gap: 12px !important;
    background: #f8fafc !important;
  }
  #office .office-footer-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
    padding: 14px 16px !important;
    background: #ffffff !important;
    border-top: 1px solid var(--border-color) !important;
  }
  #office .office-hours {
    justify-content: center !important;
    font-size: 0.82rem !important;
  }
  #office .office-actions {
    flex-direction: column !important;
  }
  #office .office-actions .btn {
    width: 100% !important;
  }
}


/* ==========================================================================
   HERO SECTION PERFECT CENTERING & SIZING (Desktop Only)
   ========================================================================== */
@media (min-width: 769px) {
  .hero-section {
    padding: 42px 0 48px !important;
  }
  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.12fr !important;
    gap: 36px !important;
    align-items: center !important;
  }
  .hero-media-col {
    display: flex !important;
    justify-content: flex-start !important;
  }
  .hero-card-media {
    max-width: 480px !important;
    width: 100% !important;
    border-radius: 16px !important;
  }
  .hero-card-img {
    max-height: 540px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .hero-text-col {
    padding-right: 0 !important;
  }
}


/* Office Footer Bar & Aligned Action Buttons */
#office .office-footer-bar {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding: 18px 24px !important;
  background: #ffffff !important;
  border-top: 1px solid var(--border-color) !important;
}

#office .office-hours {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.85rem !important;
  color: #334155 !important;
  line-height: 1.4 !important;
}

#office .office-actions {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  align-items: center !important;
}

#office .office-actions .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 16px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  text-align: center !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

#office .office-btn-directions {
  background: #f8fafc !important;
  color: #0f172a !important;
  border: 1.5px solid #cbd5e1 !important;
}

#office .office-btn-directions:hover {
  background: #f1f5f9 !important;
  border-color: var(--primary-gold) !important;
  color: var(--primary-gold) !important;
}

#office .office-btn-call {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%) !important;
  color: #0d0f12 !important;
  border: 1.5px solid rgba(199, 171, 72, 0.6) !important;
  box-shadow: 0 4px 12px rgba(199, 171, 72, 0.25) !important;
}

#office .office-btn-call:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(199, 171, 72, 0.35) !important;
}

@media (max-width: 991px) {
  #office .office-actions {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}


/* ==========================================================================
   OFFICE SECTION TIGHT SIZING & PADDING
   ========================================================================== */
@media (min-width: 992px) {
  #office .office-showcase {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    align-items: stretch !important;
  }
  #office .office-media {
    max-height: 440px !important;
    height: 100% !important;
    min-height: 400px !important;
    position: relative !important;
  }
  #office .office-img {
    max-height: 440px !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }
  #office .office-right-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: #f8fafc !important;
    border-left: 1px solid var(--border-color) !important;
  }
  #office .office-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px 20px !important;
    background: transparent !important;
    border-top: none !important;
    flex: 1 !important;
  }
  #office .office-col {
    padding: 14px 14px !important;
    gap: 12px !important;
  }
  #office .office-footer-bar {
    border-top: 1px solid var(--border-color) !important;
    background: #ffffff !important;
    padding: 14px 20px !important;
    gap: 10px !important;
  }
}


/* ==========================================================================
   WIDESCREEN (1440p & 1080p 1920x1080) RESPONSIVE SCREEN FITTING
   ========================================================================== */
@media (min-width: 1440px) {
  .container {
    max-width: 1360px !important;
  }
  .hero-card-media {
    max-width: 530px !important;
  }
  .hero-card-img {
    max-height: 580px !important;
  }
  .hero-title {
    font-size: 3.2rem !important;
  }
  .hero-desc {
    font-size: 1.15rem !important;
  }
}

@media (min-width: 1700px) {
  .container {
    max-width: 1520px !important;
  }
  .hero-section {
    padding: 56px 0 64px !important;
  }
  .hero-grid {
    gap: 56px !important;
    grid-template-columns: 1fr 1.15fr !important;
    align-items: center !important;
  }
  .hero-card-media {
    max-width: 580px !important;
  }
  .hero-card-img {
    max-height: 640px !important;
  }
  .hero-title {
    font-size: 3.6rem !important;
    line-height: 1.15 !important;
  }
  .hero-desc {
    font-size: 1.22rem !important;
    line-height: 1.65 !important;
  }
  .hero-quote-callout {
    font-size: 1.15rem !important;
    padding: 18px 24px !important;
  }
  .hero-checklist {
    font-size: 1.05rem !important;
  }
  .hero-actions .btn {
    padding: 16px 32px !important;
    font-size: 1.05rem !important;
  }
}
