/* ============================================================
   MONÈRA CONSULTING – style.css
   Premium Healthcare Consulting Brand | GCC Luxury Aesthetic
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:        #022F38;
  --navy-dark:   #011C22;
  --navy-deep:   #063844;
  --gold:        #CDA77B;
  --gold-light:  #dfc099;
  --gold-muted:  #a8895f;
  --warm-white:  #F8F7F4;
  --text:        #112228;
  --muted:       #68757A;
  --border:      #e4ddd4;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-soft: 0 4px 24px rgba(2, 47, 56, 0.08);
  --shadow-card: 0 8px 40px rgba(2, 47, 56, 0.12);
}

/* ── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Utility helpers ────────────────────────────────────────── */
.min-vh-75 { min-height: 60vh; }

/* Inside the hero, override .min-vh-75 to a fixed row height
   so the portrait's natural 945px height doesn't push the hero taller */
.hero-section .min-vh-75 {
  min-height: 0 !important;
  height: 660px;
  overflow: visible;
}

/* ── Section Heading (shared) ──────────────────────────────── */
.section-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  background-color: #fff !important;
}

/* Logo mark */
.nav-logo-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  /*border: 1.5px solid var(--gold);*/
  /*padding: 6px 10px;*/
  border-radius: 4px;
}

.logo-mc {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.4;
}

/* Brand descriptive text beside logo */
.nav-brand-text p {
  font-size: 0.68rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 280px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
  margin-left: 8px;
}

/* Nav links */
.nav-link-custom {
  font-family: var(--font-body);
  font-size: 0.90rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 0.4rem 0.65rem !important;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 60%;
}

.nav-link-custom.active {
  color: var(--navy) !important;
}

.nav-link-custom:hover { color: var(--navy) !important; }

/* Book button */
.btn-book-consultation {
  background-color: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  border: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.btn-book-consultation:hover {
  background-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
}


/* ============================================================
   HERO SECTION
   ============================================================ */

/* ── Hero Portrait ── */
.hero-portrait-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 0;
  align-self: flex-end; /* pin portrait column to bottom of the row */
}

.hero-portrait-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
}

/* Gold rings removed */

.hero-portrait-img {
  display: block;
  width: 100%;
  max-width: 630px; /* 10% smaller than 700px */
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 3;
  margin-right: -30px;
  filter: drop-shadow(-6px 0 28px rgba(205,167,123,0.08)) drop-shadow(0 24px 48px rgba(1,28,34,0.50));
  animation: portraitReveal 0.9s ease both;
}

@keyframes portraitReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
  position: relative;
  background-image: url('../images/hero-bak.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
  height: 760px; /* fixed total height: row(440px) + trust-bar(~80px) + gap(40px) */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 28, 34, 0.78) 0%,
    rgba(1, 28, 34, 0.55) 50%,
    rgba(1, 28, 34, 0.15) 100%
  );
  pointer-events: none;
}

/* Curved gold arc */
.hero-gold-arc {
display:none;
}

.hero-gold-arc::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(205,167,123,0.15);
  border-radius: 50%;
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle 6s infinite ease-in-out;
}
.hero-particles span:nth-child(1)  { width:3px; height:3px; top:15%; left:72%; animation-delay:0s;    opacity:0.5; }
.hero-particles span:nth-child(2)  { width:2px; height:2px; top:28%; left:78%; animation-delay:0.8s;  opacity:0.35; }
.hero-particles span:nth-child(3)  { width:4px; height:4px; top:45%; left:82%; animation-delay:1.6s;  opacity:0.4; }
.hero-particles span:nth-child(4)  { width:2px; height:2px; top:60%; left:68%; animation-delay:2.4s;  opacity:0.3; }
.hero-particles span:nth-child(5)  { width:3px; height:3px; top:75%; left:75%; animation-delay:3.2s;  opacity:0.45; }
.hero-particles span:nth-child(6)  { width:2px; height:2px; top:20%; left:55%; animation-delay:4s;    opacity:0.25; }
.hero-particles span:nth-child(7)  { width:4px; height:4px; top:38%; left:60%; animation-delay:1.2s;  opacity:0.3; }
.hero-particles span:nth-child(8)  { width:2px; height:2px; top:55%; left:85%; animation-delay:2s;    opacity:0.4; }
.hero-particles span:nth-child(9)  { width:3px; height:3px; top:68%; left:58%; animation-delay:3s;    opacity:0.25; }
.hero-particles span:nth-child(10) { width:2px; height:2px; top:82%; left:80%; animation-delay:0.4s;  opacity:0.35; }

@keyframes floatParticle {
  0%, 100% { transform: translateY(0px); opacity: 0.4; }
  50%       { transform: translateY(-12px); opacity: 0.8; }
}

/* Hero content */
.hero-content { padding-right: 2rem; padding-bottom: 0; padding-top: 3rem; transform: translateY(-10%); }

/* Small gold label with underline rule */
.hero-why {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0.85rem;
  position: relative;
  display: inline-block;
}
.hero-why::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
}

/* Large premium heading — first line white, second line gold */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  font-weight: 600;
  color: var(--gold);          /* second line: CONSULTING? → gold  */
  line-height: 1.08;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.hero-title::first-line {
  color: #ffffff;              /* first line: MONÈRA → white        */
}

/* Tagline — subtle small caps accent */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(205,167,123,0.55);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  margin-top: 0.25rem;
}

/* Body copy */
.hero-body {
  font-size: 0.87rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.6rem;
  max-width: 460px;
}

/* CTA Button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1.9rem;
  margin-top: 1.25rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.hero-cta-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Trust Bar — sits in normal flow directly below the hero row */
.hero-trust-bar {
  position: relative;
  z-index: 4;
  padding: 0 12px 20px;
}

/* Rounded card that mirrors the screenshot */
.hero-trust-card {
  background: rgba(4, 18, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 2.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-trust-last {
  border-right: none;
}
.hero-trust-icon {
  font-size: 1.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-trust-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
.hero-trust-highlight {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.35;
}
.hero-trust-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

/* Portrait (secondary block — overrides first to ensure cascade is correct) */
.hero-portrait-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end; /* pin portrait col bottom to row bottom */
  overflow: visible;    /* let portrait extend above the row, hero clips it */
}

.hero-portrait-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

/* Portrait placeholder (shown when image is missing) */
.hero-portrait-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(180deg, rgba(205,167,123,0.1) 0%, rgba(6,56,68,0.3) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(205,167,123,0.4);
  font-size: 5rem;
}


/* ============================================================
   POWER BEHIND SECTION
   ============================================================ */
.power-section {
  background-color: var(--warm-white);
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.power-card {
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
  transition: box-shadow 0.25s, transform 0.2s;
}

.power-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.power-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.power-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.power-desc {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0;
}


/* ============================================================
   CORE VALUES
   ============================================================ */
.core-values-section {
  background-color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-card {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.value-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  background: rgba(205,167,123,0.06);
  transition: background 0.2s;
}

.value-card:hover .value-icon {
  background: rgba(205,167,123,0.14);
}

.value-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

.value-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}


/* ============================================================
   CTA BANNER (Consultation + Hidden Diamond)
   ============================================================ */
.cta-banner-section {
  background: var(--warm-white);
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.cta-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Consultation card */
.cta-consultation {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff;
}

.cta-consultation::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(205,167,123,0.2);
  border-radius: 50%;
  pointer-events: none;
}

.cta-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cta-book-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.cta-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 320px;
}

.cta-pricing-col {
  min-width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-starting {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 0;
}

.cta-price {
  margin-bottom: 0;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cta-price-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-right: 4px;
}

.btn-cta-schedule {
  background-color: var(--gold);
  color: var(--navy-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  border: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  width: 100%;
}

.btn-cta-schedule:hover {
  background-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
}

/* Diamond card */
.cta-diamond {
  background: linear-gradient(160deg, var(--navy-dark) 0%, #0a2e38 100%);
  color: #fff;
  border: 1px solid rgba(205,167,123,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.cta-diamond-logo img {
  height: 154px;
  width: auto;
  object-fit: contain;  
}

.diamond-logo-placeholder {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  background: rgba(205,167,123,0.08);
}

.cta-diamond-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-diamond-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
}

.btn-cta-learn {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  width:100%;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.btn-cta-learn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}


/* ============================================================
   STATEMENT SECTION
   ============================================================ */
.statement-section {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0 !important;
}

.statement-gem {
  width: 100px;
  height: 100px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gold);
  margin: 0 auto;
  background: rgba(205,167,123,0.05);
}

.statement-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.statement-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.statement-subquote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: #fff;
  padding: 5rem 0 !important;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-intro {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.contact-info-list li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Form inputs */
.contact-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--warm-white);
  font-size: 0.83rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,167,123,0.15);
  background-color: #fff;
  color: var(--text);
}

.contact-textarea {
  min-height: 320px !important;
  resize: vertical;
}

.form-floating label {
  font-size: 0.8rem;
  color: var(--muted);
}

.btn-send-message {
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-send-message:hover {
  background: var(--navy-deep);
  color: #fff;
  transform: translateY(-1px);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0 !important;
}

.nav-logo-mark--footer .logo-mc { color: var(--gold); }
.nav-logo-mark--footer .logo-sub { color: rgba(255,255,255,0.6); }
.nav-logo-mark--footer { border-color: rgba(205,167,123,0.4); }

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.footer-contact li {
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
}

.footer-contact li i { color: var(--gold); }

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(205,167,123,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(205,167,123,0.1);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

.footer-sep {
  margin: 0 0.4rem;
  color: rgba(255,255,255,0.2);
}


/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* ── Tablet ──────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .hero-title { font-size: 3rem; }
  .cta-card { padding: 2rem; }
  .cta-main-title { font-size: 2rem; }

  .cta-consultation .d-flex {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .cta-pricing-col {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }

  .btn-cta-schedule { width: auto; }
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-section { height: auto; padding: 40px 0 0; }
  .hero-section .min-vh-75 { height: auto !important; min-height: 0 !important; }
  .hero-content { padding-right: 0; padding-bottom: 30px; padding-top: 0; text-align: center; }
  .hero-body { max-width: 100%; }
  .hero-tagline { text-align: center; }
  .hero-why::after { left: 50%; transform: translateX(-50%); }
  .hero-cta-btn { display: flex; justify-content: center; text-align: center; }

  .hero-portrait-col { display: none; } /* Hide portrait on mobile for clean look */

  .hero-trust-bar { padding: 0 12px 20px; }
  .hero-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.85rem 1.25rem; }
  .hero-trust-last { border-bottom: none; }

  .statement-gem { margin-bottom: 1.5rem; }

  .cta-pricing-col {
    width: 100%;
    align-items: flex-start;
  }

  .cta-card { padding: 1.75rem; }
}

@media (max-width: 767.98px) {
  .section-heading { font-size: 0.7rem; letter-spacing: 0.18em; }

  .power-card { padding: 1.2rem 0.8rem; }
  .power-icon { font-size: 1.4rem; }
  .power-title { font-size: 0.75rem; }
  .power-desc { font-size: 0.7rem; }

  .value-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .value-label { font-size: 0.75rem; }

  .hero-title { font-size: 2.4rem; }
  .hero-why { font-size: 0.68rem; }

  .statement-quote { font-size: 1.6rem; }

  .contact-heading { font-size: 1.5rem; }
  .contact-textarea { min-height: 160px !important; }

  .cta-main-title { font-size: 1.7rem; }
  .cta-price-num { font-size: 2.2rem; }

  .cta-consultation .d-flex { flex-direction: column; }

  /* Footer: center all columns on mobile */
  .site-footer .col-lg-4,
  .site-footer .col-lg-2 { text-align: center; }
  .footer-contact li { justify-content: center; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 575.98px) {
  .hero-section { padding: 30px 0 0; }
  .hero-title { font-size: 2rem; }

  .navbar-brand { flex-direction: column; align-items: flex-start; gap: 0; }

  .cta-card { padding: 1.4rem; }
  .cta-icon-wrap { width: 52px; height: 52px; font-size: 1.2rem; }
  .cta-main-title { font-size: 1.5rem; }

  .btn-cta-schedule { font-size: 0.62rem; padding: 0.55rem 1rem; }

  .contact-info-list li { font-size: 0.78rem; }
  .btn-send-message { width: 100%; text-align: center; }

  .footer-copy { text-align: center; }
  .footer-legal { text-align: center; }
  .site-footer .text-lg-end { text-align: center !important; }
}


.core-values-section {
    background: #fff;
}

.cv-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #C9A96E;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.cv-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #2C2C2A;
    margin-bottom: 0;
}

.cv-rule {
    width: 36px;
    height: 1px;
    background: #C9A96E;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
}

.cv-item {
    position: relative;
    padding: 0 1.5rem;
}

    .cv-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 60%;
        width: 0.5px;
        background: #C9A96E;
        opacity: 0.3;
    }

.cv-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid #C9A96E;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A96E;
    font-size: 24px;
    transition: background 0.25s;
}

    .cv-circle:hover {
        background: rgba(201, 169, 110, 0.1);
    }

.cv-label {
    font-size: 13px;
    font-weight: 500;
    color: #2C2C2A;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.cv-underline {
    width: 24px;
    height: 1.5px;
    background: #C9A96E;
}

@media (max-width: 767px) {
    .cv-item::after {
        display: none;
    }
}


/* ════════════════════════════════════════════════════
   LANGUAGE SWITCHER
════════════════════════════════════════════════════ */

.language-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.language-switch__divider {
    width: 1px;
    height: 14px;
    background-color: rgba(17, 34, 40, 0.15);
}

.language-switch a {
    position: relative;
    color: var(--hd-muted);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

    /* Hover */
    .language-switch a:hover {
        color: var(--hd-navy);
        opacity: 0.85;
    }

    /* Active language */
    .language-switch a.active {
        color: var(--hd-gold);
        font-weight: 600;
    }

        /* Elegant underline */
        .language-switch a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 1.5px;
            background-color: var(--hd-gold);
            border-radius: 999px;
        }

    /* Arabic text styling */
    .language-switch a.lang-ar {
        font-family: var(--font-body);
        letter-spacing: 0;
        text-transform: none;
    }

/* ════════════════════════════════════════════════════
   NAVBAR ALIGNMENT
════════════════════════════════════════════════════ */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ════════════════════════════════════════════════════
   MOBILE
════════════════════════════════════════════════════ */

@media (max-width: 991px) {

    .language-switch {
        margin-left: 0;
        padding: 18px 0;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(17, 34, 40, 0.08);
        width: 100%;
    }

        .language-switch a {
            font-size: 0.95rem;
        }
}


.top-brand-message {
    background: var(--hd-warm-white);
    border-top: 1px solid rgba(0,0,0,0.04);
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--hd-muted);
}

    .top-brand-message p {
        margin: 0;
        max-width: 780px;
        line-height: 1.7;
    }
/* ── Cart icon + badge (nav) ──────────────────────────────── */
.btn-cart-icon{position:relative;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;color:#022F38;font-size:20px;text-decoration:none;transition:background .2s;}
.btn-cart-icon:hover{background:rgba(205,167,123,.15);color:#022F38;}
.cart-badge{position:absolute;top:2px;right:2px;min-width:18px;height:18px;padding:0 5px;border-radius:9px;background:#CDA77B;color:#fff;font-size:11px;font-weight:700;display:flex;align-items:center;justify-content:center;line-height:1;}

/* ── Add-to-cart toast ────────────────────────────────────── */
.monera-cart-toast{display:flex;align-items:center;position:fixed;bottom:24px;right:24px;background:#022F38;color:#fff;padding:14px 22px;border-radius:10px;font-size:14px;font-weight:500;box-shadow:0 8px 28px rgba(2,47,56,.25);opacity:0;transform:translateY(12px);transition:opacity .3s,transform .3s;z-index:9999;max-width:340px;}
.monera-cart-toast.show{opacity:1;transform:translateY(0);}
