/* ============================================================
   SPEAKREAL — MULTI-DEVICE RESPONSIVE DESIGN SYSTEM
   - Tamper-Proof 48-Hour Website Review & Access Restriction Overlay
   - Single Crisp Mobile Drawer Close Button (#mobileNavClose)
   - Temporarily Hidden Multi-Language Selector (.lang-selector-wrapper)
   - Mobile Phone Language Selector Overlay Fix (z-index: 99999)
   - Clean Multi-Language Selector (Banner-Free Google Translation)
   - Responsive Cross-Device Language Dropdown (Mobile, Tablet, Desktop)
   - Tree Diagram Infographic for Values Page (Navy & Gold Theme)
   - Brighter & More Visible Mobile Hero Background Image (hero.png)
   - Full Legal & Compliance Infrastructure (POPIA, ECTA, CPA)
   - Cookie Consent Banner & Legal Document Styling
   - Alternating Storyline Services Showcase (Zero Container Boxes)
   - Universal SVG Flags + Russian Language Card
   - Compact Page Header Gap across all inner pages
   - Mobile Nav Drawer with Explicit Close Button & Click-Outside Overlay
   - Translucent Floating WhatsApp Button
   ============================================================ */

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

:root {
  --slide-navy: #06152B;
  --slide-navy-light: #0B2246;
  --slide-navy-card: #0A1E3F;

  --slide-gold: #F59E0B;
  --slide-gold-dark: #D97706;
  --slide-gold-light: #FACC15;

  --slide-skyblue: #38BDF8;
  --slide-skyblue-dark: #0EA5E9;

  --white: #FFFFFF;
  --light-bg: #FFFFFF;
  --light-grey-card: #F8FAFC;
  --light-border: #E2E8F0;

  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 15px rgba(6, 21, 43, 0.06);
  --shadow-card: 0 10px 30px rgba(6, 21, 43, 0.12);
  --shadow-hover: 0 20px 45px rgba(6, 21, 43, 0.2);
  --shadow-gold: 0 10px 25px rgba(245, 158, 11, 0.35);

  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  top: 0px !important;
  position: static !important;
}

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

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* HIDE GOOGLE TRANSLATE NATIVE TOP BAR & ARTIFACTS COMPLETELY */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-banner,
.skiptranslate,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-yDsffb-Lg2W8d-OJu2lb,
.goog-te-spinner-pos {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Two-Tone Title System */
.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.title-bold { font-weight: 800; }
.title-regular { font-weight: 400; }

.title-light-theme .title-bold,
.title-light-theme .title-regular {
  color: var(--slide-navy);
}

.title-dark-theme .title-bold,
.title-dark-theme .title-regular {
  color: var(--white);
}

.slide-subheading {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  color: var(--slide-skyblue);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--slide-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
}

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

/* White Logo Box with Gold Ribbon Behind */
.logo-badge-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.logo-badge-wrapper::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -12px;
  bottom: -8px;
  left: -8px;
  background: var(--slide-gold);
  transform: skewX(-20deg);
  z-index: 1;
  border-radius: 4px;
}

.logo-badge-box {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  padding: 5px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1002;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--slide-gold);
}

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

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

.btn-gold-cta {
  background: var(--slide-gold);
  color: var(--slide-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  min-height: 44px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold-cta:hover {
  background: var(--slide-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* ============================================================
   MULTI-LANGUAGE SELECTOR DROPDOWN (NAVBAR)
   ============================================================ */
.lang-selector-wrapper {
  display: none !important; /* Temporarily hidden per user request; ready to restore tomorrow */
  position: relative;
  z-index: 1002;
}

.lang-selector-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lang-selector-btn:hover,
.lang-selector-btn.active {
  background: var(--slide-gold);
  color: var(--slide-navy);
  border-color: var(--slide-gold);
}

.lang-selector-btn .globe-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.lang-selector-btn .arrow-icon {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform var(--transition-base);
}

.lang-selector-btn.active .arrow-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--slide-navy);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 165px;
  max-height: 75vh;
  overflow-y: auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
}

.lang-dropdown::-webkit-scrollbar {
  width: 4px;
}
.lang-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.lang-dropdown::-webkit-scrollbar-thumb {
  background: var(--slide-gold);
  border-radius: 3px;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all var(--transition-base);
}

.lang-option:hover,
.lang-option.active {
  background: rgba(245, 158, 11, 0.15);
  color: var(--slide-gold);
}

.lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  transition: opacity var(--transition-base);
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #FFFFFF;
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* MOBILE DRAWER OVERLAY BACKDROP & SINGLE CLOSE BUTTON */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 43, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

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

/* ============================================================
   COOKIE CONSENT BANNER (POPIA & GDPR COMPLIANT)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  background: rgba(6, 21, 43, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--slide-gold);
  color: var(--white);
  padding: 1.2rem 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
  color: var(--slide-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   FLOATING TRANSLUCENT WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  width: 56px;
  height: 56px;
  background: rgba(37, 211, 102, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: rgba(37, 211, 102, 1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

/* ============================================================
   PAGE HEADER BANNER (OPTIMIZED COMPACT TIGHT SPACING)
   ============================================================ */
.page-header {
  position: relative;
  padding: 5.2rem 0 1.8rem 0;
  background: var(--slide-navy);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--slide-skyblue);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--slide-gold); }

/* ============================================================
   HERO SECTION — FULL COVER BACKGROUND WITH NAVY OVERLAY
   ============================================================ */
.hero {
  position: relative;
  padding: 6.8rem 0 4.5rem 0;
  background: linear-gradient(rgba(6, 21, 43, 0.85), rgba(6, 21, 43, 0.92)),
              url('images/hero.png') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

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

.hero-content-center {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.3rem;
  background: linear-gradient(135deg, var(--slide-gold), #FACC15);
  color: var(--slide-navy);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-title .text-gold {
  color: var(--slide-gold);
}

.hero-subheading {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--slide-skyblue);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2.2rem auto;
  max-width: 680px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  min-height: 44px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* ============================================================
   LEGAL & COMPLIANCE DOCUMENT STYLING
   ============================================================ */
.legal-section {
  padding: 3.5rem 0 5.5rem 0;
  background: var(--white);
}

.legal-article {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-grey-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--slide-gold);
}

.legal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--slide-navy);
  margin: 2.2rem 0 1rem 0;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #E2E8F0;
}

.legal-article h2:first-of-type {
  margin-top: 0;
}

.legal-article h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--slide-navy);
  margin: 1.5rem 0 0.8rem 0;
}

.legal-article p {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.legal-article ul {
  list-style: disc;
  margin: 0 0 1.5rem 1.8rem;
}

.legal-article ul li {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.legal-callout-box {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--slide-gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

.legal-callout-box p {
  margin-bottom: 0;
  font-weight: 500;
}

/* ============================================================
   MULTI-LANGUAGE GLOBAL WELCOME SECTION (WITH UNIVERSAL SVG FLAGS)
   ============================================================ */
.lang-welcome-section {
  padding: 5rem 0;
  background: var(--slide-navy);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.lang-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  transition: all var(--transition-base);
  border-left: 4px solid var(--slide-gold);
}

.lang-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--slide-gold-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lang-flag-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.lang-flag-svg {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: inline-block;
  flex-shrink: 0;
}

.lang-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--slide-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lang-greeting {
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================================
   ABOUT US SECTION — COMPACT TOP PADDING (ELIMINATES HUGE GAP)
   ============================================================ */
.about-section {
  position: relative;
  padding: 2.5rem 0 5rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.slide-bullet-list {
  list-style: none;
  margin-top: 1.5rem;
}

.slide-bullet-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.75;
}

.slide-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--slide-gold);
  font-size: 1.8rem;
  line-height: 1;
}

.about-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border-left: 6px solid var(--slide-gold);
}

.about-photo-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ============================================================
   VISION & MISSION
   ============================================================ */
.vm-section {
  padding: 4.5rem 0;
  background: var(--light-grey-card);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.vm-card {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-lg);
  border-top: 5px solid var(--slide-gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.vm-badge-icon {
  width: 56px;
  height: 56px;
  background: var(--slide-navy);
  color: var(--slide-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ============================================================
   ALTERNATING STORYLINE SERVICES SECTION (ZERO CONTAINER BOXES)
   ============================================================ */
.services-section {
  position: relative;
  padding: 3rem 0 5.5rem 0;
  background: linear-gradient(135deg, #0E2C5B 0%, #06152B 100%);
  color: var(--white);
}

.service-row-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.service-row-split.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.service-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-left: 6px solid var(--slide-gold);
  transition: all var(--transition-base);
}

.service-row-split.reverse .service-photo-frame {
  border-left: none;
  border-right: 6px solid var(--slide-gold);
}

.service-photo-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-photo-frame:hover img {
  transform: scale(1.04);
}

.service-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(6, 21, 43, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--slide-gold-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-content-block {
  display: flex;
  flex-direction: column;
}

.service-headline-gold {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #FACC15;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-story-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.95rem;
  font-size: 1.02rem;
  color: #FFFFFF;
}

.service-check-icon {
  width: 24px;
  height: 24px;
  background: var(--slide-gold);
  color: var(--slide-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.service-check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--slide-navy);
  stroke-width: 3;
  fill: none;
}

.support-wrapper {
  background: linear-gradient(135deg, #103875 0%, #0B254E 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.support-item {
  background: #14438C;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--slide-gold);
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.support-item:hover {
  background: #184EA3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.support-icon-box {
  width: 44px;
  height: 44px;
  background: var(--slide-gold);
  color: var(--slide-navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   PHILOSOPHY SECTION — COMPACT TOP PADDING
   ============================================================ */
.philosophy-section {
  padding: 2.5rem 0 5rem 0;
  background: var(--white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.philosophy-card {
  background: var(--light-grey-card);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border-top: 4px solid var(--slide-gold);
  transition: all var(--transition-base);
}

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

.philosophy-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--slide-gold);
  margin-bottom: 0.6rem;
  line-height: 1;
}

/* ============================================================
   TREE DIAGRAM / BRANCHING INFOGRAPHIC (VALUES PAGE - NAVY & GOLD)
   ============================================================ */
.tree-section {
  padding: 3.5rem 0 6rem 0;
  background: var(--light-grey-card);
  position: relative;
}

.tree-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Central Trunk Stem Line */
.tree-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background: linear-gradient(to bottom,
    rgba(245, 158, 11, 0.2) 0%,
    var(--slide-gold) 15%,
    var(--slide-navy) 85%,
    rgba(6, 21, 43, 0.2) 100%);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}

/* Tree Top Canopy Badge */
.tree-root-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: fit-content;
  margin: 0 auto 3.5rem auto;
  background: var(--slide-navy);
  color: var(--white);
  border: 2px solid var(--slide-gold);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 3;
}

.tree-root-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--slide-gold);
}

/* Tree Nodes (Rows) */
.tree-node {
  display: flex;
  position: relative;
  margin-bottom: 3.5rem;
  width: 100%;
  align-items: center;
}

.tree-node:last-child {
  margin-bottom: 0;
}

.tree-node.left {
  justify-content: flex-start;
}

.tree-node.right {
  justify-content: flex-end;
}

/* Content Card */
.node-content {
  width: 44%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  border-left: 5px solid var(--slide-gold);
  position: relative;
  transition: all var(--transition-base);
}

.tree-node.right .node-content {
  border-left: 1px solid var(--light-border);
  border-right: 5px solid var(--slide-gold);
}

.node-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Tree Center Stem Dot Badge */
.tree-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 3px solid var(--slide-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--slide-navy);
  font-size: 1.15rem;
  z-index: 4;
  box-shadow: 0 0 0 6px var(--light-grey-card), 0 4px 15px rgba(6, 21, 43, 0.15);
  transition: all var(--transition-base);
}

.tree-node:hover .tree-dot {
  background: var(--slide-gold);
  color: var(--slide-navy);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 6px var(--light-grey-card), 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* Branch Connector Line */
.tree-node::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  background: var(--slide-gold);
  width: 6%;
  z-index: 1;
}

.tree-node.left::after {
  right: 50%;
}

.tree-node.right::after {
  left: 50%;
}

.node-icon-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.icon-bubble {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--slide-navy);
  color: var(--slide-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(6, 21, 43, 0.2);
}

.tree-node:hover .icon-bubble {
  background: var(--slide-gold);
  color: var(--slide-navy);
}

.node-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--slide-navy);
}

.node-content p {
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ============================================================
   COMMITMENT & BRAND STATEMENT
   ============================================================ */
.commitment-section {
  padding: 5rem 0;
  background: var(--white);
}

.commitment-box {
  background: var(--slide-navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border-left: 8px solid var(--slide-gold);
}

.brand-statement-bar {
  padding: 3.5rem 0;
  background: var(--light-grey-card);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
  text-align: center;
}

.brand-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--slide-navy);
}

.brand-quote span { color: var(--slide-gold-dark); }

/* ============================================================
   CONTACT SECTION — COMPACT TOP PADDING
   ============================================================ */
.contact-section {
  padding: 2.5rem 0 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-card {
  background: var(--light-grey-card);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--slide-gold);
}

.contact-form {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--light-border);
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slide-navy);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #CBD5E1;
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: 1rem;
  outline: none;
  transition: all var(--transition-base);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--slide-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

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

/* ============================================================
   FOOTER & LEGAL LINKS BAR
   ============================================================ */
.footer {
  background: var(--slide-navy);
  color: #94A3B8;
  padding: 4.5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.legal-footer-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #94A3B8;
}

.legal-footer-nav a {
  color: #CBD5E1;
  transition: color var(--transition-base);
}

.legal-footer-nav a:hover {
  color: var(--slide-gold);
  text-decoration: underline;
}

.legal-footer-nav span {
  color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* ============================================================
   WEBSITE REVIEW PERIOD COUNTDOWN SYSTEM
   ============================================================ */
.review-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 43, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.review-modal-card {
  background: linear-gradient(145deg, #0A1E3F 0%, #06152B 100%);
  border: 2px solid var(--slide-gold);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  max-width: 580px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  text-align: center;
  color: var(--white);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-modal-overlay.active .review-modal-card {
  transform: translateY(0) scale(1);
}

/* EXPIRED RESTRICTED LOCK MODE */
.review-modal-overlay.expired-lock {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 9999999 !important;
  background: rgba(4, 14, 30, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: auto !important;
}

.review-modal-overlay.expired-lock .review-modal-close {
  display: none !important;
}

.review-modal-overlay.expired-lock .review-modal-card {
  border-color: #EF4444 !important;
  box-shadow: 0 25px 80px rgba(239, 68, 68, 0.4) !important;
  transform: scale(1) !important;
}

body.review-expired-restricted {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

.review-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.review-modal-close:hover {
  background: var(--slide-gold);
  color: var(--slide-navy);
}

.review-modal-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--slide-gold);
  color: var(--slide-gold-light);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.review-modal-badge.expired {
  background: rgba(239, 68, 68, 0.2);
  border-color: #EF4444;
  color: #FCA5A5;
}

.review-modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.review-modal-text {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  text-align: left;
}

.review-timer-box {
  background: rgba(6, 21, 43, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.review-timer-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--slide-skyblue);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.review-timer-digits {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 900;
  color: var(--slide-gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.review-modal-subtext {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.review-modal-actions {
  display: flex;
  justify-content: center;
}

.review-action-btn {
  width: 100%;
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* FLOATING INDICATOR PILL */
.review-floating-pill {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  background: var(--slide-navy);
  border: 1.5px solid var(--slide-gold);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-base);
}

.review-floating-pill:hover {
  background: var(--slide-gold);
  color: var(--slide-navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.review-pill-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

.review-floating-pill.expired .review-pill-dot {
  background: #EF4444;
  animation: none;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES (FULL CROSS-DEVICE RESPONSIVENESS)
   ============================================================ */

/* Laptops / Mid Desktops (1025px - 1200px) */
@media (max-width: 1200px) {
  .nav-links { gap: 1.4rem; }
  .service-row-split, .service-row-split.reverse { gap: 2.8rem; }
  .node-content { width: 45%; }
}

/* Tablets & Small Laptops (769px - 1024px) */
@media (max-width: 1024px) {
  .hero { padding: 6.2rem 0 4rem 0; }
  .about-grid, .contact-grid { gap: 2.5rem; }
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row-split, .service-row-split.reverse { grid-template-columns: 1fr; gap: 2.2rem; }
  .service-photo-frame img { height: 320px; }
  .service-row-split.reverse .service-content-block { order: 2; }
  .service-row-split.reverse .service-photo-frame { order: 1; }
  .cookie-banner-content { flex-direction: column; text-align: center; gap: 1rem; }
  .cookie-actions { width: 100%; justify-content: center; }
  .node-content { width: 46%; }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; text-align: left; }
  .about-photo-card img { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Phones (< 768px) — SINGLE CRISP CLOSE BUTTON & HERO PHOTO */
@media (max-width: 768px) {
  .logo-img { height: 38px; }
  .logo-badge-box { padding: 4px 10px; }
  .logo-badge-wrapper::before {
    top: -4px;
    right: -6px;
    bottom: -4px;
    left: -4px;
    transform: skewX(-12deg);
  }

  .mobile-toggle { display: block; }
  .mobile-toggle.active {
    opacity: 0;
    pointer-events: none;
  }

  /* Single Mobile Close Button ("✕") Inside Drawer Header */
  .mobile-nav-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid var(--slide-gold);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 1001;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .mobile-nav-close:hover,
  .mobile-nav-close:active {
    background: var(--slide-gold);
    color: var(--slide-navy);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: var(--slide-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: right var(--transition-base);
    z-index: 999;
  }
  
  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }
  .nav-link { display: block; width: 100%; padding: 0.75rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .btn-gold-cta { width: 100%; margin-top: 1rem; }

  /* MOBILE PHONE LANGUAGE SELECTOR OVERLAY FIX */
  .lang-selector-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
  }

  .lang-dropdown {
    position: fixed !important;
    top: 65px !important;
    right: 15px !important;
    left: auto !important;
    width: 220px !important;
    max-height: 70vh !important;
    overflow-y: auto !important;
    background: var(--slide-navy) !important;
    border: 2px solid var(--slide-gold) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8) !important;
    z-index: 99999 !important;
  }

  /* 100vh FULL SCREEN HERO ON MOBILE FOLD WITH BRIGHTER HERO PHOTO VISIBILITY */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.8rem 0 2rem 0;
    background: linear-gradient(rgba(6, 21, 43, 0.55), rgba(6, 21, 43, 0.72)),
                url('images/hero.png') center/cover no-repeat;
  }

  .hero-title,
  .hero-subheading,
  .hero-desc {
    text-shadow: 0 2px 14px rgba(6, 21, 43, 0.95), 0 4px 20px rgba(0, 0, 0, 0.8);
  }

  .hero-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  }

  .hero-title {
    font-size: clamp(1.8rem, 5.8vw, 2.2rem);
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }

  .hero-subheading {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions .btn-gold-cta,
  .hero-actions .btn-outline-white {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.7rem 1.4rem;
  }

  .vm-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  
  /* MOBILE TREE INFOGRAPHIC ADJUSTMENTS */
  .tree-wrapper::before {
    left: 24px;
  }

  .tree-dot {
    left: 24px;
    top: 2rem;
    transform: none;
  }

  .tree-node {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
    margin-bottom: 2.5rem;
  }

  .tree-node.left, .tree-node.right {
    justify-content: flex-start;
  }

  .node-content {
    width: 100%;
    border-right: none !important;
    border-left: 5px solid var(--slide-gold) !important;
  }

  .tree-node::after {
    display: none;
  }

  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .lang-grid { grid-template-columns: 1fr; gap: 1rem; }
  .lang-card { padding: 1.35rem 1.15rem; }

  .commitment-box { padding: 2.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .page-header { padding: 4.8rem 0 1.5rem 0; }
  .about-section, .services-section, .philosophy-section, .tree-section, .contact-section, .legal-section { padding: 2rem 0 3.5rem 0; }

  .legal-article { padding: 2rem 1.2rem; }

  .service-row-split, .service-row-split.reverse {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
  }
  .service-photo-frame img { height: 260px; }
  .service-floating-badge { font-size: 0.78rem; padding: 0.45rem 0.9rem; bottom: 12px; left: 12px; }
  
  .legal-footer-nav { flex-direction: column; gap: 0.6rem; text-align: center; }
  .legal-footer-nav span { display: none; }

  .review-modal-card {
    padding: 2rem 1.4rem;
  }
  .review-modal-text {
    font-size: 0.92rem;
  }
  .review-floating-pill {
    bottom: 20px;
    left: 15px;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
  }
}

/* Small Mobile Phones (< 480px) */
@media (max-width: 480px) {
  .container { width: 92%; }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 4.5rem 0 2rem 0;
    background: linear-gradient(rgba(6, 21, 43, 0.52), rgba(6, 21, 43, 0.70)),
                url('images/hero.png') center/cover no-repeat;
  }
  .page-header { padding: 4.5rem 0 1.2rem 0; }
  .contact-info-card, .contact-form, .support-wrapper { padding: 1.8rem 1.25rem; }
  .about-photo-card img { height: 280px; }
  .lang-card { padding: 1.2rem 1rem; }
  .service-photo-frame img { height: 220px; }
  .node-content { padding: 1.5rem 1.2rem; }
}
