/* ============================================================
   COMBINED STYLESHEET
   Merges: main site CSS (file 1) + section styles (file 2)
   Conflict resolutions noted inline
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* ── Core palette (from file 1) ── */
  --navy:         #1a2d50;
  --navy-mid:     #1f3460;
  --navy-light:   #243a6a;
  --navy-card:    #1e3258;
  --red:          #C0141A;
  --red-bright:   #E01B22;
  --red-dark:     #8B0E12;
  --white:        #FFFFFF;
  --off-white:    #F0F2F7;
  --gray-txt:     #6B7A99;
  --gold:         #D4A843;

  --red-light:    #E01B22;    /* alias of --red-bright */
  --green:        #1a4a7a;
  --green-light:  #2563a8;
  --green-dark:   #0f2d52;
  --bg2:          #ffffff;
  --bg3:          #f0f4f8;
  --text:         #1a1a2e;
  --text2:        #444;
  --text3:        #777;
  --card-bg:      rgba(255,255,255,0.92);
  --card-border:  rgba(192,20,26,0.15);
  --shadow:       0 8px 40px rgba(192,20,26,0.12);
  --shadow-green: 0 8px 40px rgba(26,74,122,0.15);
  --blur:         blur(18px);
  --radius:       20px;
  --transition:   all 0.4s cubic-bezier(0.4,0,0.2,1);

  /* ── Typography ── */
  /* File 1 font vars */
  --display:      'Bebas Neue', 'Barlow Condensed', sans-serif;
  --cond:         'Barlow Condensed', sans-serif;
  --sans:         'Inter', system-ui, sans-serif;
  /* File 2 font vars (kept as aliases so section styles work) */
  --font-head:    'Playfair Display', serif;
  --font-body:    'Nunito', sans-serif;

  --header-h:     0px; /* updated by JS */
}

/* ══════════════════════════════════════════════════
   LIGHT THEME
══════════════════════════════════════════════════ */
[data-theme="light"] {
  --navy:         #f5f7fc;
  --navy-mid:     #eef1f8;
  --navy-light:   #e6eaf5;
  --navy-card:    #ffffff;
  --red:          #C0141A;
  --red-bright:   #E01B22;
  --red-dark:     #8B0E12;
  --white:        #1a1a2e;
  --off-white:    #f0f2f7;
  --gray-txt:     #5a6580;
  --gold:         #b8860b;
  --green:        #1a4a7a;
  --green-light:  #2563a8;
  --text:         #1a1a2e;
  --text2:        #333;
  --text3:        #666;
  --card-bg:      rgba(255,255,255,0.96);
  --card-border:  rgba(192,20,26,0.18);
  --shadow:       0 8px 40px rgba(192,20,26,0.10);
}

/* Light theme overrides — sections that use hardcoded navy backgrounds */
[data-theme="light"] body             { background: #f5f7fc; color: #1a1a2e; }
[data-theme="light"] #hero            { background: linear-gradient(135deg, #f5f7fc 0%, #eef1f8 45%, #f0f2f7 100%); }
[data-theme="light"] #hero-canvas     { opacity: .20; }
[data-theme="light"] .hero-overlay    { background: radial-gradient(ellipse 55% 60% at 15% 50%, rgba(192,20,26,.08) 0%, transparent 65%), linear-gradient(to bottom, transparent 60%, rgba(240,242,247,.6) 100%); }
[data-theme="light"] .royal-label,
[data-theme="light"] .royal-accent    { color: inherit; }
[data-theme="light"] .royal-label     { color: #1a1a2e; }
[data-theme="light"] .hero-sub        { color: #4a5568; }
[data-theme="light"] .hero-visual-card{ background: rgba(255,255,255,0.88); border-color: rgba(192,20,26,0.18); }
[data-theme="light"] .hero-service-name { color: #1a1a2e; }
[data-theme="light"] .hero-service-desc { color: #5a6580; }
[data-theme="light"] .card-badge      { background: rgba(192,20,26,0.07); border-color: rgba(192,20,26,0.18); }
[data-theme="light"] .card-badge-text { color: #4a5568; }
[data-theme="light"] .card-badge-text strong { color: #1a1a2e; }

[data-theme="light"] #services        { background: #eef1f8; }
[data-theme="light"] .services-header h2 { color: #1a1a2e; }
[data-theme="light"] .services-header p  { color: #4a5568; }
[data-theme="light"] .services-grid   { background: rgba(192,20,26,0.06); border-color: rgba(192,20,26,0.10); }
[data-theme="light"] .service-card    { background: #ffffff; }
[data-theme="light"] .service-card:hover { background: rgba(192,20,26,0.04); }
[data-theme="light"] .service-card h3 { color: #1a1a2e; }
[data-theme="light"] .service-card p  { color: #5a6580; }
[data-theme="light"] .service-num     { color: rgba(26,26,46,0.06); }

[data-theme="light"] #stats           { background: var(--red-dark); } /* keep red */

[data-theme="light"] #vision          { background: #eef1f8; }
[data-theme="light"] #vision::before  { background: radial-gradient(ellipse 65% 65% at 80% 50%, rgba(192,20,26,.05), transparent); }
[data-theme="light"] .vision-statement { color: #1a1a2e; }
[data-theme="light"] .vision-detail p  { color: #4a5568; }

[data-theme="light"] #why             { background: #f5f7fc; }
[data-theme="light"] .why-left h2     { color: #1a1a2e; }
[data-theme="light"] .why-left p      { color: #4a5568; }
[data-theme="light"] .why-item-body h4 { color: #1a1a2e; }
[data-theme="light"] .why-item-body p  { color: #5a6580; }

[data-theme="light"] #contact         { background: #eef1f8; }
[data-theme="light"] #contact::before { background: radial-gradient(ellipse 65% 60% at 10% 50%, rgba(192,20,26,.04), transparent); }
[data-theme="light"] .contact-info h2  { color: #1a1a2e; }
[data-theme="light"] .contact-info > p { color: #4a5568; }
[data-theme="light"] .contact-detail-value { color: #4a5568; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea { color: #1a1a2e; border-bottom-color: rgba(26,26,46,0.25); }
[data-theme="light"] .form-group label { color: rgba(26,26,46,0.45); }

[data-theme="light"] #mobile-menu     { background: #1a2d50; }
[data-theme="light"] .mobile-nav-links li { border-top-color: rgba(244, 244, 246, 0.08); }
[data-theme="light"] .mobile-nav-links a  { color: rgba(239, 239, 241, 0.75); }

[data-theme="light"] footer           { background: #1a2d50; } /* keep dark footer */

[data-theme="light"] #navbar {
  background: #1a2d50;
  border-bottom-color: rgba(26,26,46,0.10);
}
[data-theme="light"] #navbar.scrolled {
  background: #1a2d50;
  box-shadow: 0 2px 28px rgba(26,26,46,.10);
}
[data-theme="light"] .nav-links a     { color: rgba(245,247,252,0.97); }
[data-theme="light"] .nav-links a:hover { color: #1a1a2e; }
[data-theme="light"] #topbar          { background: #1a2d50; } /* keep dark topbar */
[data-theme="light"] #bottom-nav      { background: #1a2d50; border-top-color: rgba(26,26,46,0.12); }
[data-theme="light"] .bottom-nav-btn  { color: rgba(245,247,252,0.97); }

[data-theme="light"] #page-loader  {  background: #1a2d50; }

/* ── THEME TOGGLE BUTTON ── */
#themeToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
  cursor: pointer;
  transition: background .3s, border-color .3s, color .3s;
  flex-shrink: 0;
  margin-left: 8px;
}
#themeToggle:hover {
  background: rgba(192,20,26,0.20);
  border-color: var(--red-bright);
  color: #fff;
}
[data-theme="light"] #themeToggle {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
}
[data-theme="light"] #themeToggle:hover {
  background: rgba(192,20,26,0.10);
  border-color: var(--red);
  color: var(--red);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes pulse    { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(.85); } }
@keyframes scrollLn { 0%,100%{ transform:scaleY(1); opacity:.7; } 50%{ transform:scaleY(.5); opacity:.2; } }
@keyframes rippleAnim { to { transform:scale(4); opacity:0; } }

/* ══════════════════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════════════════ */
#page-loader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: 90px; height: 90px;
  border-radius: 12px;
  overflow: hidden;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.loader-name {
  text-align: center;
  line-height: 1.2;
}
.loader-name-line1 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: .14em;
  color: #fff;
  display: block;
}
.loader-name-line2 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .22em;
  color: var(--red-bright);
  display: block;
  margin-top: 4px;
}
.loader-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 8px;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  animation: loaderBar 2.2s ease forwards;
}
@keyframes loaderPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.94); opacity: 0.8; }
}
@keyframes loaderBar {
  0%   { width: 0%; }
  80%  { width: 95%; }
  100% { width: 100%; }
}

/* ══════════════════════════════════════════════════
   BOTTOM MOBILE NAV
══════════════════════════════════════════════════ */
#bottom-nav {
  display: none; /* hidden on desktop */
}

.bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.bottom-nav-btn span {
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 768px) {
  #bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 950;
    background: rgba(14, 28, 56, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255,255,255,0.08);
    height: 58px;
    align-items: stretch;
    justify-content: stretch;
  }
  .bottom-nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background .2s, color .2s;
    border: none;
    background: none;
  }
  .bottom-nav-btn:hover,
  .bottom-nav-btn:active {
    background: rgba(255,255,255,0.06);
    color: #fff;
  }
  .bottom-nav-btn.call     { border-right: 1px solid rgba(255,255,255,0.07); }
  .bottom-nav-btn.whatsapp { border-right: 1px solid rgba(255,255,255,0.07); }
  .bottom-nav-btn svg { width: 22px; height: 22px; }
  .bottom-nav-btn.call     svg { stroke: #4a90d9; fill: none; }
  .bottom-nav-btn.whatsapp svg { fill: #25D366; }
  .bottom-nav-btn.mail     svg { stroke: var(--red-bright); fill: none; }

  /* push floating buttons up so they don't overlap bottom nav */
  .floating-contacts { bottom: 70px; }
}

/* ══════════════════════════════════════════════════
   LAYOUT – HEADER / NAV
══════════════════════════════════════════════════ */

/* ── FIXED HEADER WRAPPER ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ── TOP INFO BAR ── */
#topbar {
  background: #0e1c38;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}
.topbar-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}
.topbar-left svg { flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 12px;
  transition: color .25s;
  white-space: nowrap;
}
.topbar-contact:hover { color: #fff; }
.topbar-contact svg { flex-shrink: 0; width: 13px; height: 13px; }
.topbar-contact .tc-label { display: inline; }
.topbar-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── NAVBAR ── */
#navbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(26,45,80,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(26,45,80,0.99);
  box-shadow: 0 2px 28px rgba(0,0,0,.35);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 54px; height: 54px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-line1 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .14em;
  color: #fff;
  line-height: 1;
  display: block;
}
.nav-brand-line2 {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .22em;
  color: var(--red-bright);
  line-height: 1.3;
  display: block;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: #fff; }

#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
#hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: #fff;
  transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .3s;
  transform-origin: center;
}
#hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex; flex-direction: column;
  padding: 100px 10% 60px;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
#mobile-menu.open { transform: translateX(0); }
.mobile-nav-links { list-style: none; flex: 1; }
.mobile-nav-links li {
  border-top: 1px solid rgba(255,255,255,.07);
  transform: translateX(40px); opacity: 0;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .5s;
}
#mobile-menu.open .mobile-nav-links li { transform: translateX(0); opacity: 1; }
#mobile-menu.open .mobile-nav-links li:nth-child(1) { transition-delay: .07s; }
#mobile-menu.open .mobile-nav-links li:nth-child(2) { transition-delay: .13s; }
#mobile-menu.open .mobile-nav-links li:nth-child(3) { transition-delay: .19s; }
#mobile-menu.open .mobile-nav-links li:nth-child(4) { transition-delay: .25s; }
#mobile-menu.open .mobile-nav-links li:nth-child(5) { transition-delay: .31s; }
#mobile-menu.open .mobile-nav-links li:nth-child(6) { transition-delay: .37s; }
.mobile-nav-links a {
  display: block; padding: 20px 0;
  font-family: var(--cond);
  font-size: clamp(24px,5vw,32px);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.82); text-decoration: none;
  transition: color .25s;
}
.mobile-nav-links a:hover { color: var(--red-bright); }
.mobile-menu-footer { color: rgba(255,255,255,.25); font-size: 11.5px; letter-spacing: .1em; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1f3460 0%, #243a6a 45%, #1e2f58 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(192,20,26,.16) 0%, transparent 65%),
    linear-gradient(to bottom, transparent 60%, rgba(26,45,80,.6) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 1280px; margin: 0 auto;
  padding: 110px 6% 80px; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
  color: var(--red-bright);
  font-family: var(--cond); font-size: 15px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  animation: fadeUp .8s .1s both;
}
.hero-eyebrow-line { display: block; width: 28px; height: 2px; background: var(--red-bright); flex-shrink: 0; }

.royal-stack { margin-bottom: 24px; animation: fadeUp .9s .25s both; }
.royal-row {
  display: flex; align-items: baseline; gap: 14px;
  line-height: 1; margin-bottom: 2px;
  white-space: nowrap; flex-wrap: nowrap;
}
.royal-label {
  font-family: var(--display);
  font-size: clamp(32px,5vw,70px);
  letter-spacing: .04em; color: var(--white); line-height: 1;
  flex-shrink: 0;
}
.royal-accent {
  font-family: var(--display);
  font-size: clamp(32px,5vw,70px);
  letter-spacing: .04em; color: var(--red-bright); line-height: 1;
  flex-shrink: 0;
}
.hero-sub {
  font-size: clamp(13px,1.4vw,16px); color: rgba(255,255,255,.68);
  line-height: 1.85; max-width: 460px; font-weight: 300;
  margin-bottom: 32px;
  animation: fadeUp .9s .4s both;
}
.healthy-tagline {
  font-family: var(--display);
  font-size: clamp(18px,2.2vw,30px);
  letter-spacing: .14em; color: var(--gold);
  margin-bottom: 36px;
  animation: fadeUp .9s .64s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .9s .76s both;
}
.hero-right {
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1s .5s both;
}
.hero-visual-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; padding: 40px 32px;
  width: 100%; max-width: 400px; position: relative; overflow: hidden;
  backdrop-filter: blur(6px);
}
.hero-visual-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.hero-service-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.hero-service-item { display: flex; align-items: center; gap: 16px; }
.hero-service-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(192,20,26,.20);
  border: 1px solid rgba(192,20,26,.38);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-service-icon svg { width: 20px; height: 20px; }
.hero-service-name {
  font-family: var(--cond); font-size: 16px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--white);
}
.hero-service-desc { font-size: 15px; color: rgba(255,255,255,.5); margin-top: 2px; }
.card-badge {
  margin-top: 24px; padding: 12px 16px;
  background: rgba(192,20,26,.16);
  border: 1px solid rgba(192,20,26,.30);
  border-radius: 8px; display: flex; align-items: center; gap: 12px;
}
.card-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-bright); flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.card-badge-text { font-size: 13px; color: rgba(255,255,255,.68); }
.card-badge-text strong { color: var(--white); }

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1s 1.2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(192,20,26,.9), transparent);
  animation: scrollLn 2s ease-in-out infinite;
}
.scroll-label {
  font-size: 9px; letter-spacing: .2em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* ══════════════════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 6%; }

/* Section label — file 1 style (dark bg) */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--cond); font-size: 15px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red-bright); font-weight: 700;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: currentColor;
}

/* Section badge — file 2 style (light bg sections) */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(192,20,26,0.08), rgba(26,74,122,0.08));
  border: 1px solid rgba(192,20,26,0.2);
  border-radius: 50px; padding: 5px 18px;
  font-size: .8rem; font-weight: 700; color: var(--red);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

/* Shared heading helpers (file 2) */
.section-title {
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 14px;
  font-family: var(--font-head);
  color: #1a1a2e;
}
.title-accent       { color: var(--red); }
.title-accent-green { color: var(--green); }
.section-sub {
  color: var(--text3); font-size: 1rem;
  max-width: 560px; line-height: 1.7;
  font-family: var(--font-body);
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  border-radius: 3px; margin: 16px 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--red); color: var(--bg2); text-decoration: none;
  font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px; transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-1px); }

.btn-outline-hero {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white); text-decoration: none;
  font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 4px; transition: border-color .3s, background .3s;
  border-color: var(--white);
}
.btn-outline-hero:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.07); }

.btn-primary-royal {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white); border: none;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 25px rgba(192,20,26,0.4);
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: inline-block; text-decoration: none;
  font-family: var(--font-body);
}
.btn-primary-royal:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(192,20,26,0.5); color: #fff; }

.btn-outline-royal {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  display: inline-block; text-decoration: none;
  font-family: var(--font-body);
}
.btn-outline-royal:hover { background: var(--green); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(26,74,122,0.4); }

/* Ripple */
.ripple-btn { position: relative; overflow: hidden; }
.ripple-btn .ripple-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0); animation: rippleAnim 0.6s linear;
}

/* ── Scroll reveal ──
   NOTE: File 1 and file 2 both defined .reveal differently.
   Combined version: uses translateY(28px) from file 1 (larger/smoother lift).
   File 2's extra classes (.reveal-left, .reveal-right) added here.
*/
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Delay helpers (file 1 uses reveal-delay-N, file 2 uses delay-N — both kept) */
.reveal-delay-1, .delay-1 { transition-delay: .1s; }
.reveal-delay-2, .delay-2 { transition-delay: .2s; }
.reveal-delay-3, .delay-3 { transition-delay: .3s; }
.reveal-delay-4, .delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════
   EXPERTISE (light bg)
══════════════════════════════════════════════════ */
#expertise { padding: 120px 0; background: var(--off-white); overflow: hidden; }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.expertise-visual {
  position: relative; height: 500px;
  border-radius: 10px; overflow: hidden;
  background: var(--navy-mid);
}
.expertise-visual svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.expertise-heading {
  font-family: var(--display);
  font-size: clamp(30px,4vw,56px);
  letter-spacing: .04em; color: #1a2d50; line-height: 1.05;
  margin-bottom: 22px; text-transform: uppercase;
}
.expertise-body {
  font-size: 15px; line-height: 1.9;
  color: #4A5568; margin-bottom: 16px; font-weight: 300;
}
.expertise-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
  margin-top: 32px;
}
.exp-card {
  padding: 20px 16px; border: 1px solid #D8DCE8;
  border-radius: 8px; text-align: center;
  background: #fff; position: relative; overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.exp-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(192,20,26,.12);
  transform: translateY(-3px);
}
.exp-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.exp-card:hover::before { transform: scaleX(1); }
.exp-card-icon {
  width: 36px; height: 36px;
  background: rgba(192,20,26,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.exp-card-name {
  font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: #1a2d50; margin-bottom: 5px;
}
.exp-card-desc { font-size: 12px; color: #8A94A8; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
#stats { padding: 64px 0; background: var(--red-dark); overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(36px,5vw,62px);
  color: #fff; line-height: 1;
  margin-bottom: 10px; display: block;
}
.stat-label {
  font-family: var(--cond); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
#services { padding: 120px 0; background: var(--navy-mid); overflow: hidden; }
.services-header { max-width: 680px; margin-bottom: 60px; }
.services-header h2 {
  font-family: var(--display);
  font-size: clamp(30px,4.5vw,58px);
  letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.05; margin-bottom: 16px; color: var(--white);
}
.services-header p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.55); font-weight: 300; }
.services-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}
.service-card {
  background: var(--navy-mid); padding: 44px 38px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.service-card:hover { background: rgba(192,20,26,.09); }
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  position: absolute; top: 38px; right: 38px;
  font-family: var(--display); font-size: 50px;
  color: rgba(255,255,255,.05); line-height: 1;
}
.service-icon-wrap {
  width: 46px; height: 46px;
  background: rgba(192,20,26,.15);
  border: 1px solid rgba(192,20,26,.3);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 22px;
}
.service-card h3 {
  font-family: var(--cond); font-size: 19px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
}
.service-card p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.52); font-weight: 300; }

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
#about { background: #fff; padding: 90px 0; }
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.about-main-img {
  width: 450px;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.about-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(192,20,26,0.18); }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.about-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(192,20,26,0.35);
}
.about-feature-icon.green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 4px 14px rgba(26,74,122,0.35);
}
.about-feature h6 { font-weight: 700; margin-bottom: 3px; font-size: .95rem; font-family: var(--font-head); color: #1a1a2e; }
.about-feature p  { color: var(--text3); font-size: .85rem; margin: 0; font-family: var(--font-body); }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; height: 380px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(192,20,26,0.08), rgba(26,74,122,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--green);
  border: 2px solid var(--card-border);
  position: relative; overflow: hidden;
}
.about-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(192,20,26,0.03) 20px,rgba(192,20,26,0.03) 40px);
}
.about-badge-overlay {
  position: absolute; bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff; border-radius: var(--radius); padding: 16px 22px;
  font-family: var(--font-head); font-weight: 900;
  box-shadow: var(--shadow-green); text-align: center;
}
.about-badge-overlay .num { font-size: 2rem; display: block; }
.about-badge-overlay .lbl { font-size: .75rem; font-family: var(--font-body); opacity: .9; }

/* ══════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════ */
#process { background: #f0f4f8; padding: 90px 0; }
.process-timeline { position: relative; padding-left: 30px; }
.process-timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--red), var(--green));
  border-radius: 2px;
}
.process-step { position: relative; padding: 0 0 32px 32px; }
.process-step::before {
  content: attr(data-step);
  position: absolute; left: -18px; top: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff; font-weight: 900; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(192,20,26,0.4);
}
.process-step:nth-child(even)::before {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  box-shadow: 0 4px 14px rgba(26,74,122,0.4);
}
.process-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 22px 24px;
  backdrop-filter: var(--blur); box-shadow: var(--shadow);
  transition: var(--transition);
}
.process-card:hover { transform: translateX(6px); }
.process-card h5 { font-weight: 800; font-size: 1rem; margin-bottom: 6px; font-family: var(--font-head); color: #1a1a2e; }
.process-card p  { color: var(--text3); font-size: .85rem; margin: 0; line-height: 1.6; font-family: var(--font-body); }

/* ══════════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════════ */
#portfolio { background: #fff; padding: 90px 0; }
.portfolio-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(192,20,26,0.18);
}

/* Before/after visual layout */
.portfolio-visual {
  height: 200px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
.port-before, .port-after {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative;
}
.port-before { background: rgba(192,20,26,0.08); }
.port-after  { background: rgba(26,74,122,0.12); }
.port-label {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: rgba(0,0,0,0.5); color: #fff;
  border-radius: 50px; padding: 2px 10px; font-family: var(--font-body);
}
.port-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: linear-gradient(180deg, var(--red), var(--green));
}

/* Image-based portfolio cards */
.portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.portfolio-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.05); }

.portfolio-card-body { padding: 14px 16px; }
.portfolio-card-body h6 {
  font-family: var(--cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px;
}
.portfolio-card-body p { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
#testimonials { background: #f0f4f8; padding: 90px 0; }
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px;
  backdrop-filter: var(--blur); box-shadow: var(--shadow);
}
.testimonial-quote {
  font-size: 3rem; line-height: 1; color: var(--red);
  font-family: var(--font-head); opacity: 0.3;
}
.testimonial-text { font-size: 1.05rem; line-height: 1.7; color: var(--text2); margin: 12px 0 20px; font-family: var(--font-body); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.2rem;
  font-family: var(--font-head);
}
.author-info strong { font-weight: 800; display: block; font-family: var(--font-head); color: #1a1a2e; }
.author-info span   { color: var(--text3); font-size: .82rem; font-family: var(--font-body); }
.stars { color: #f5a623; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--card-border); cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════════
   VISION
══════════════════════════════════════════════════ */
#vision { padding: 140px 0; background: var(--navy); overflow: hidden; position: relative; }
#vision::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse 65% 65% at 80% 50%, rgba(192,20,26,.08), transparent);
  pointer-events: none;
}
.vision-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vision-statement {
  font-family: var(--display); font-size: clamp(36px, 5vw, 64px);
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--white); line-height: 1.12;
}
.vision-statement em { font-style: normal; color: var(--red-bright); }
.vision-detail-label {
  font-family: var(--cond); font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red-bright); font-weight: 700;
  margin-bottom: 18px; display: block;
}
.vision-detail p { font-size: 16px; line-height: 2; color: rgba(255,255,255,.65); font-weight: 300; margin-bottom: 22px; }

/* ── VISION MOBILE ── */
@media (max-width: 767px) {
  #vision { padding: 80px 0; }
  .vision-layout { grid-template-columns: 1fr; gap: 48px; }
  .vision-statement { font-size: clamp(32px, 8vw, 48px); }
  .vision-detail p { font-size: 15px; line-height: 1.85; }
  .vision-detail[style] { margin-top: 24px !important; }
}
/* ══════════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════════ */
#values { padding: 120px 0; background: var(--off-white); }
.values-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.values-header .section-label { color: var(--red); justify-content: center; }
.values-header .section-label::before { background: var(--red); }
.values-header h2 {
  font-family: var(--display); font-size: clamp(28px,4vw,50px);
  letter-spacing: .04em; text-transform: uppercase;
  color: #1a2d50; margin-bottom: 14px; line-height: 1.1;
}
.values-header p { font-size: 15px; line-height: 1.8; color: #4A5568; font-weight: 300; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card {
  background: #fff; border-radius: 10px;
  padding: 32px 26px;
  border: 1px solid transparent;
  transition: border-color .35s, box-shadow .35s, transform .35s;
}
.value-card:hover {
  border-color: rgba(192,20,26,.25);
  box-shadow: 0 12px 40px rgba(192,20,26,.08);
  transform: translateY(-4px);
}
.value-icon-wrap {
  width: 40px; height: 40px; background: rgba(192,20,26,.08);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.value-card h3 {
  font-family: var(--cond); font-size: 15px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: #1a2d50; margin-bottom: 10px;
}
.value-card p { font-size: 13.5px; line-height: 1.8; color: #4A5568; font-weight: 300; }

.section-label{
    color: var(--red-bright);
}

[data-theme="light"] .section-label{
    color: var(--red);
}

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
#pricing { background: #fff; padding: 90px 0; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 36px 28px;
  backdrop-filter: var(--blur); box-shadow: var(--shadow);
  transition: var(--transition); text-align: center; height: 100%;
  position: relative; overflow: hidden;
}
.pricing-card.featured { border-color: var(--red); box-shadow: var(--shadow), 0 0 0 2px var(--red); }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(192,20,26,0.2); }
.pricing-badge-tag {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff; font-size: .72rem; font-weight: 700;
  border-radius: 50px; padding: 3px 12px; text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--font-body);
}
.pricing-icon {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(192,20,26,0.1), rgba(26,74,122,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.pricing-card.featured .pricing-icon { background: linear-gradient(135deg, var(--red), var(--green)); color: #fff; }
.pricing-name { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; font-family: var(--font-head); color: #1a1a2e; }
.pricing-price {
  font-family: var(--font-head); font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin: 10px 0 4px;
}
.pricing-period { color: var(--text3); font-size: .82rem; margin-bottom: 20px; font-family: var(--font-body); }
.pricing-list { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.pricing-list li {
  padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: .87rem; color: var(--text2);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
}

.pricing-list li i { color: var(--green); font-size: .9rem; }
.glow-red:hover  { box-shadow: 0 0 20px rgba(192,20,26,0.4); }
.glow-green:hover{ box-shadow: 0 0 20px rgba(26,74,122,0.4); }

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
#faq { background: #f0f4f8; padding: 90px 0; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; margin-bottom: 12px;
  backdrop-filter: var(--blur); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--red); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 18px 22px; text-align: left;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  color: #1a1a2e; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-icon {
  width: 28px; height: 28px; min-width: 28px; border-radius: 50%;
  background: rgba(192,20,26,0.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text3); font-size: .88rem; line-height: 1.7;
  padding: 0 22px; font-family: var(--font-body);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }

/* ══════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════ */
#why { padding: 120px 0; background: var(--navy-mid); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-left h2 {
  font-family: var(--display); font-size: clamp(28px,4vw,52px);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.why-left p { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.52); font-weight: 300; margin-bottom: 14px; }
.why-right { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item-num {
  font-family: var(--display); font-size: 26px;
  color: var(--red-bright); flex-shrink: 0; line-height: 1; min-width: 30px;
}
.why-item-body h4 {
  font-family: var(--cond); font-size: 15px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); margin-bottom: 6px;
}
.why-item-body p { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.48); font-weight: 300; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
#contact { padding: 120px 0; background: var(--navy); overflow: hidden; position: relative; }
#contact::before {
  content: ''; position: absolute; top: 0; left: 0; width: 45%; height: 100%;
  background: radial-gradient(ellipse 65% 60% at 10% 50%, rgba(192,20,26,.07), transparent);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 {
  font-family: var(--display); font-size: clamp(26px,3.5vw,46px);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); line-height: 1.1; margin-bottom: 14px;
}
.contact-info > p { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,.48); font-weight: 300; margin-bottom: 40px; }
.contact-detail { margin-bottom: 22px; }
.contact-detail-label {
  font-family: var(--cond); font-size: 15px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--red-bright); font-weight: 700; margin-bottom: 6px;
}
.contact-detail-value { font-size: 14.5px; color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.75; }
.contact-detail-value a { color: inherit; text-decoration: none; transition: color .25s; }
.contact-detail-value a:hover { color: #fff; }
.form-group { position: relative; margin-bottom: 24px; }
.form-group label {
  position: absolute; top: 16px; left: 0;
  font-size: 13px; color: rgba(255,255,255,.35);
  pointer-events: none;
  transition: transform .3s, font-size .3s, color .3s;
  transform-origin: left;
}
.form-group input,
.form-group textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff; font-size: 15px; padding: 16px 0 12px;
  font-family: var(--sans); font-weight: 300; outline: none;
  transition: border-color .3s; resize: none;
}
.form-group textarea { min-height: 90px; }
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--red-bright); }
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(.85); color: var(--red-bright);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: transparent; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px; background: var(--red); color: #fff;
  font-size: 13px; font-weight: 700; font-family: var(--cond);
  letter-spacing: .1em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .3s, transform .2s; align-self: flex-start; margin-top: 8px;
}
.btn-submit:hover { background: var(--red-bright); transform: translateY(-1px); }

/* ── CONTACT CHOOSER OVERLAY ── */
#contact-chooser-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 35, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99998;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: ccFadeIn 0.2s ease;
}
#contact-chooser-overlay.active {
  display: flex;
}
@keyframes ccFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── CHOOSER MODAL CARD ── */
#contact-chooser {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: ccSlideUp 0.28s cubic-bezier(0.22,0.61,0.36,1);
  position: relative;
}
@keyframes ccSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header strip */
.cc-header {
  background: linear-gradient(135deg, #1a2d50 0%, #C0141A 100%);
  padding: 22px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.cc-header-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  font-family: 'Nunito', sans-serif;
}
.cc-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.cc-close:hover { background: rgba(255,255,255,0.28); }

/* Mode tabs (Call / WhatsApp) */
.cc-tabs {
  display: flex;
  border-bottom: 1px solid #eef0f5;
  background: #f8f9fc;
}
.cc-tab {
  flex: 1;
  padding: 12px 10px;
  background: none;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A94A8;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.cc-tab.active {
  color: #1a2d50;
  border-bottom-color: #C0141A;
  background: #fff;
}
.cc-tab svg { width: 15px; height: 15px; }
.cc-tab.tab-wa.active { color: #128C7E; border-bottom-color: #25D366; }

/* Number list */
.cc-body { padding: 20px 20px 24px; }

.cc-number-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e8eaf2;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  margin-bottom: 12px;
  text-decoration: none;
}
.cc-number-btn:last-child { margin-bottom: 0; }
.cc-number-btn:hover {
  border-color: #C0141A;
  box-shadow: 0 6px 24px rgba(192,20,26,0.12);
  transform: translateY(-2px);
}
.cc-number-btn.wa-btn:hover {
  border-color: #25D366;
  box-shadow: 0 6px 24px rgba(37,211,102,0.15);
}

.cc-num-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-num-icon.primary-icon { background: rgba(192,20,26,0.10); }
.cc-num-icon.secondary-icon { background: rgba(26,45,80,0.08); }
.cc-num-icon.wa-primary-icon { background: rgba(37,211,102,0.12); }
.cc-num-icon.wa-secondary-icon { background: rgba(37,211,102,0.07); }
.cc-num-icon svg { width: 20px; height: 20px; }

.cc-num-text { flex: 1; text-align: left; }
.cc-num-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.cc-num-label .badge-primary {
  background: #C0141A;
  color: #fff;
  font-size: 8px;
  padding: 1px 6px;
  border-radius: 20px;
  letter-spacing: .06em;
}
.cc-num-label.primary-label { color: #C0141A; }
.cc-num-label.secondary-label { color: #6B7A99; }
.cc-num-value {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .04em;
  color: #1a2d50;
}
.cc-num-arrow {
  color: #C0141A;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.cc-number-btn:hover .cc-num-arrow {
  opacity: 1;
  transform: translateX(0);
}
.cc-number-btn.wa-btn .cc-num-arrow { color: #25D366; }
.cc-num-arrow svg { width: 16px; height: 16px; }

/* WhatsApp panel (hidden by default) */
.cc-panel { display: none; }
.cc-panel.active { display: block; }

/* Footer note */
.cc-footer-note {
  font-size: 11px;
  color: #9AA3B5;
  text-align: center;
  padding: 0 20px 16px;
  font-family: 'Nunito', sans-serif;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer { background: #0e1c38; padding: 72px 0 36px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 36px;
}
.footer-brand-name {
  font-family: var(--display); font-size: 19px; letter-spacing: .1em;
  color: #fff; line-height: 1; display: block; margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: var(--cond); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red-bright); display: block; margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.3); font-weight: 300; max-width: 280px; }
.footer-col h4 {
  font-family: var(--red); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,.42); transition: color .25s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-tagline { font-family: var(--cond); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.22); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon.whatsapp  { background: #25D366; }
.social-icon.facebook  { background: #1877F2; }
.social-icon.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.youtube   { background: #FF0000; }
.social-icon.x-twitter { background: #000; }

/* ══════════════════════════════════════════════════
   FLOATING CONTACT BUTTONS
══════════════════════════════════════════════════ */
.floating-contacts {
  position: fixed; right: 18px; bottom: 80px;
  z-index: 900; display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.4);
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
  position: relative;
}
.float-btn:hover { transform: scale(1.12) translateX(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.5); }
.float-btn svg { width: 21px; height: 21px; }
.float-btn-call     { background: #1A5FBE; }
.float-btn-whatsapp { background: #25D366; }
.float-btn-mail     { background: var(--red); }
.float-btn::before {
  content: attr(data-label);
  position: absolute; right: 58px;
  background: rgba(10,15,30,.92);
  color: #fff;
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px;
  white-space: nowrap;
  opacity: 0; transform: translateX(8px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.float-btn:hover::before { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .expertise-grid, .vision-layout, .why-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .expertise-visual { height: 300px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { display: none; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  #hamburger { display: flex; }

  /* Topbar */
  .topbar-left { display: none; }
  .topbar-right { gap: 4px; margin-left: auto; }
  .topbar-contact .tc-label { display: none; }
  .topbar-contact {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }
  .topbar-contact svg { width: 15px; height: 15px; }
  .topbar-divider { display: none; }
  #topbar { padding: 6px 4%; justify-content: flex-end; }

  /* Hero */
  .royal-label, .royal-accent { font-size: clamp(28px, 8vw, 50px); }
  .hero-eyebrow { font-size: 14px; letter-spacing: .18em; }
  .hero-content { padding: 20px 5% 50px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline-hero { width: 100%; justify-content: center; }

  /* Grids */
  .values-grid  { grid-template-columns: 1fr; gap: 14px; }
  .services-grid{ grid-template-columns: 1fr; }
  .expertise-cards { grid-template-columns: 1fr; gap: 10px; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .footer-top   { grid-template-columns: 1fr; }

  /* Sections */
  #expertise, #services, #values, #why, #contact,
  #about, #process, #portfolio, #testimonials, #pricing, #faq {
    padding: 72px 0;
  }
  #vision { padding: 80px 0; }
  .services-header { margin-bottom: 36px; }
  .values-header   { margin-bottom: 40px; }

  /* About image */
  .about-img-wrap {
    position: relative; width: 100%; height: 260px; margin-bottom: 24px;
  }
  .about-main-img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
  }
  .about-badge-overlay { position: absolute; bottom: -18px; right: 16px; }

  /* Float btns */
  .float-btn { width: 44px; height: 44px; }
  .float-btn svg { width: 19px; height: 19px; }
  .floating-contacts { right: 14px; bottom: 70px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 28px 16px; }
  .stat-item:last-child { border-bottom: none; }

  /* Hero */
  .royal-label, .royal-accent { font-size: clamp(26px,7.5vw,42px); }
  .hero-eyebrow { font-size: 11px; letter-spacing: .12em; margin-bottom: 14px; }
  .healthy-tagline { font-size: 18px; margin-bottom: 20px; }
  .hero-content { padding: 16px 5% 40px; }

  /* Nav brand */
  .nav-brand-line1 { font-size: 17px; }
  .nav-brand-line2 { font-size: 10px; letter-spacing: .14em; }
  .nav-logo-img { width: 44px; height: 44px; }
  .nav-logo { gap: 8px; }
  #navbar { height: 60px; }

  /* Topbar compact */
  #topbar { padding: 5px 4%; }
  .topbar-contact { width: 30px; height: 30px; }
  .topbar-contact svg { width: 13px; height: 13px; }

  /* Footer */
  .footer-top { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Sections */
  #expertise, #services, #values, #why, #contact,
  #about, #process, #portfolio, #testimonials, #pricing, #faq {
    padding: 56px 0;
  }
  .expertise-cards { grid-template-columns: 1fr; }
  .service-card  { padding: 32px 24px; }
  .value-card    { padding: 26px 20px; }
  .why-grid      { gap: 36px; }
  .contact-grid  { gap: 36px; }

  /* About */
  .about-img-wrap { height: 220px; }
  .about-badge-overlay { bottom: -14px; right: 12px; }
}

/* ══════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 768px) {
  footer {
    padding-bottom: calc(58px + 60px) !important;
  }
}