/* ============================================================
   Prasanth Neethiraj — CEO Portfolio
   Custom CSS · Purple / Cyan / Orange theme
   ============================================================ */

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

:root {
  --bg:         #040612;
  --bg2:        #07091a;
  --bg3:        #0a0e24;
  --card:       #0c1029;
  --card-bd:    #1e266a;
  --purple:     #6428dc;
  --purple-lt:  #8c50ff;
  --purple-dim: #37146e;
  --cyan:       #00c8dc;
  --cyan-lt:    #3ce1f0;
  --cyan-dim:   #006470;
  --orange:     #f86e1e;
  --orange-lt:  #ff9148;
  --gold:       #f0aa00;
  --gold-lt:    #ffd032;
  --green:      #14d278;
  --green-bg:   #05371e;
  --amber:      #f5b200;
  --amber-bg:   #3e3000;
  --red:        #e63c3c;
  --red-bg:     #3e0f0f;
  --white:      #ffffff;
  --off-white:  #d2d7f0;
  --gray:       #788098;
  --gray-lt:    #a5b2d2;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all .25s ease;
  font-family: var(--font-head);
}
.btn-primary  { background: var(--orange);  color: #fff; }
.btn-primary:hover  { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(248,110,30,.35); }
.btn-secondary { background: transparent; color: var(--cyan-lt); border: 2px solid var(--cyan); }
.btn-secondary:hover { background: rgba(0,200,220,.1); transform: translateY(-2px); }
.btn-purple   { background: var(--purple); color: #fff; }
.btn-purple:hover   { background: var(--purple-lt); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 6px; }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-green  { background: var(--green-bg);  color: var(--green); border: 1px solid var(--green); }
.badge-amber  { background: var(--amber-bg);  color: var(--amber); border: 1px solid var(--amber); }
.badge-red    { background: var(--red-bg);    color: var(--red);   border: 1px solid var(--red); }
.badge-blue   { background: #031430;          color: #4f8ef7;      border: 1px solid #4f8ef7; }
.badge-purple { background: var(--purple-dim);color: var(--purple-lt); border: 1px solid var(--purple-lt); }
.badge-gray   { background: #111;             color: var(--gray);  border: 1px solid var(--card-bd); }

/* ── Announcement Bar ───────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.announce-bar a { color: #fff; text-decoration: underline; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4,6,18,.96);
  border-bottom: 1px solid var(--card-bd);
  backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--purple);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { font-size: 18px; font-family: var(--font-head); color: var(--white); display: block; }
.nav-logo-text span   { font-size: 10px; color: var(--gray); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--gray-lt); letter-spacing: .5px; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 10px 20px; font-size: 13px; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 60px 40px;
}

.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(30,38,106,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,38,106,.4) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-glow-1 { width: 500px; height: 500px; background: rgba(100,40,220,.25); top: -100px; left: -80px; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(0,200,220,.15); top: 100px; right: 200px; }
.hero-glow-3 { width: 350px; height: 350px; background: rgba(248,110,30,.18); bottom: -50px; right: -50px; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(100,40,220,.15);
  border: 1px solid var(--purple-lt);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 12px; color: var(--gray-lt);
  margin-bottom: 22px;
}
.hero-tag .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .line-cyan   { color: var(--cyan-lt); }
.hero-title .line-orange { color: var(--orange); }

.hero-sub {
  font-size: 17px;
  color: var(--gray-lt);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(248,110,30,.08);
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 13px; color: var(--orange-lt);
}

/* Hero Photo */
.hero-photo-wrap {
  position: relative;
}
.hero-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(100,40,220,.4);
  box-shadow: 0 0 60px rgba(100,40,220,.3), 0 0 120px rgba(0,200,220,.1);
}
.hero-photo-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}
/* Decorative arc */
.hero-arc {
  position: absolute; inset: -10px;
  border: 1px solid rgba(100,40,220,.25);
  border-radius: 24px;
  pointer-events: none;
}

/* Floating stat badges */
.hero-badge {
  position: absolute;
  background: var(--card);
  border: 2px solid var(--card-bd);
  border-radius: 14px;
  padding: 10px 16px;
  min-width: 110px;
  z-index: 5;
}
.hero-badge.badge-placements { bottom: 60px; left: -60px; border-color: var(--green); }
.hero-badge.badge-companies  { top: 60px;   right: -50px; border-color: var(--cyan);  }
.hero-badge.badge-branches   { bottom: 160px; right: -50px; border-color: var(--orange);}
.hero-badge .hb-num  { font-family: var(--font-head); font-size: 30px; font-weight: 900; line-height: 1; }
.hero-badge .hb-lbl  { font-size: 10px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.hero-badge.badge-placements .hb-num { color: var(--green); }
.hero-badge.badge-companies  .hb-num { color: var(--cyan);  }
.hero-badge.badge-branches   .hb-num { color: var(--orange);}

/* ── Stats Strip ────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(90deg, #12053a, #080e32, #12053a);
  border-top: 4px solid var(--cyan);
  border-bottom: 4px solid var(--purple);
  padding: 28px 40px;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(30,38,106,.8);
}
.stat-item:last-child { border-right: none; }
.stat-num  { font-family: var(--font-head); font-size: 44px; font-weight: 900; line-height: 1; }
.stat-lbl  { font-size: 12px; color: var(--gray); margin-top: 8px; letter-spacing: .5px; }

/* ── About ───────────────────────────────────────────────────── */
.about-section { padding: 80px 0; background: var(--bg2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p { font-size: 15px; color: var(--gray-lt); line-height: 1.85; margin-bottom: 16px; }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.pillar-card {
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 14px;
  padding: 22px 18px;
  border-top: 4px solid var(--purple);
  transition: transform .25s, border-color .25s;
}
.pillar-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.pillar-icon { font-size: 26px; margin-bottom: 12px; }
.pillar-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pillar-desc  { font-size: 12px; color: var(--gray); line-height: 1.6; }

/* ── CEO Quote ──────────────────────────────────────────────── */
.quote-section {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(90deg, #0c0520, #06101e, #0c0520);
  border-top: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  overflow: hidden;
  text-align: center;
}
.quote-marks {
  font-size: 120px;
  font-family: Georgia, serif;
  color: rgba(100,40,220,.15);
  line-height: 0;
  position: absolute;
}
.quote-marks.open  { top: 60px; left: 60px; }
.quote-marks.close { bottom: 20px; right: 60px; }
.quote-text {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--off-white);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.quote-author { font-size: 14px; color: var(--cyan); letter-spacing: 1px; }

/* ── Companies ───────────────────────────────────────────────── */
.companies-section { padding: 80px 0; background: var(--bg); }
.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 48px;
}
.company-card {
  background: var(--card);
  border: 2px solid var(--card-bd);
  border-radius: 18px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.company-card:hover { transform: translateY(-6px); }
.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.company-card.getin::before    { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.company-card.ramaussys::before{ background: linear-gradient(90deg, var(--cyan), var(--purple)); }
.company-card.getin    { border-color: rgba(240,170,0,.3); }
.company-card.ramaussys{ border-color: rgba(0,200,220,.3); }
.company-card:hover.getin    { border-color: var(--gold); }
.company-card:hover.ramaussys{ border-color: var(--cyan); }

.company-header { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.company-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 22px;
}
.getin .company-logo    { background: rgba(240,170,0,.12); border: 2px solid var(--gold);    color: var(--gold);   }
.ramaussys .company-logo{ background: rgba(0,200,220,.1);  border: 2px solid var(--cyan-dim);color: var(--cyan);   }

.company-info h3 { font-size: 20px; color: var(--white); margin-bottom: 4px; }
.company-info span { font-size: 12px; color: var(--gray); }
.company-founded {
  position: absolute; top: 28px; right: 28px;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.getin     .company-founded { background: rgba(240,170,0,.1); color: var(--gold);  border: 1px solid rgba(240,170,0,.3); }
.ramaussys .company-founded { background: rgba(0,200,220,.08); color: var(--cyan); border: 1px solid rgba(0,200,220,.25); }

.company-desc { font-size: 14px; color: var(--gray-lt); line-height: 1.75; margin-bottom: 22px; }
.company-stats { display: flex; gap: 24px; margin-bottom: 22px; }
.co-stat .csn { font-family: var(--font-head); font-size: 26px; font-weight: 800; }
.co-stat .csl { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.getin .csn     { color: var(--gold);  }
.ramaussys .csn { color: var(--cyan);  }

.company-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.company-tags .tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 4px;
  border: 1px solid;
}
.getin .tag     { color: var(--gold);  border-color: rgba(240,170,0,.3);  background: rgba(240,170,0,.06); }
.ramaussys .tag { color: var(--cyan);  border-color: rgba(0,200,220,.25); background: rgba(0,200,220,.05); }

/* ── Timeline ────────────────────────────────────────────────── */
.timeline-section { padding: 80px 0; background: var(--bg2); }
.timeline-wrap { position: relative; margin-top: 52px; }
.timeline-spine {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--cyan), var(--orange));
  transform: translateX(-50%);
}
.timeline-items { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  min-height: 70px;
}
.tl-item:nth-child(odd)  .tl-card { grid-column: 1; text-align: right; margin-right: 40px; }
.tl-item:nth-child(odd)  .tl-empty{ grid-column: 3; }
.tl-item:nth-child(even) .tl-empty{ grid-column: 1; }
.tl-item:nth-child(even) .tl-card { grid-column: 3; margin-left: 40px; }
.tl-dot {
  grid-column: 2;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.tl-dot-inner {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 2px currentColor;
}

.tl-card {
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 12px;
  padding: 14px 20px;
  transition: border-color .25s, transform .25s;
  cursor: default;
}
.tl-card:hover { transform: scale(1.02); }
.tl-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.tl-desc  { font-size: 12px; color: var(--gray-lt); }
.tl-date  { font-size: 11px; color: var(--gray); margin-top: 4px; font-family: var(--font-mono); }

/* ── Services ────────────────────────────────────────────────── */
.services-section { padding: 80px 0; background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--card);
  border: 2px solid var(--card-bd);
  border-radius: 18px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.service-card.s1::before { background: var(--gold); }
.service-card.s2::before { background: var(--cyan); }
.service-card.s3::before { background: var(--purple-lt); }
.service-card.s4::before { background: var(--orange); }
.service-card.s1:hover { border-color: var(--gold); }
.service-card.s2:hover { border-color: var(--cyan); }
.service-card.s3:hover { border-color: var(--purple-lt); }
.service-card.s4:hover { border-color: var(--orange); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card.s1 .service-icon { background: rgba(240,170,0,.1); }
.service-card.s2 .service-icon { background: rgba(0,200,220,.1);  }
.service-card.s3 .service-icon { background: rgba(140,80,255,.1); }
.service-card.s4 .service-icon { background: rgba(248,110,30,.1); }

.service-title { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.service-desc  { font-size: 13px; color: var(--gray-lt); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.service-link  { font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.service-card.s1 .service-link { color: var(--gold); }
.service-card.s2 .service-link { color: var(--cyan); }
.service-card.s3 .service-link { color: var(--purple-lt); }
.service-card.s4 .service-link { color: var(--orange); }

/* ── Booking Section ─────────────────────────────────────────── */
.booking-section {
  padding: 80px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--purple));
}
.booking-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}
.booking-copy .section-label { color: var(--orange); }
.booking-copy .section-title { font-size: clamp(32px, 4vw, 52px); }
.booking-copy .section-title span { color: var(--orange); }
.booking-sub { font-size: 15px; color: var(--gray-lt); margin: 14px 0 28px; line-height: 1.7; }

.booking-sessions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.session-type {
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .2s;
  cursor: pointer;
}
.session-type:hover { border-color: var(--orange); }
.session-type.active { border-color: var(--orange); background: rgba(248,110,30,.08); }
.session-icon { font-size: 18px; }
.session-name { font-size: 14px; font-weight: 700; color: var(--white); }
.session-meta { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* Booking Widget */
.booking-widget {
  background: var(--card);
  border: 2px solid var(--card-bd);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.widget-header {
  padding: 22px 28px;
  background: linear-gradient(90deg, rgba(100,40,220,.3), rgba(0,200,220,.1));
  border-bottom: 1px solid var(--card-bd);
  display: flex; align-items: center; justify-content: space-between;
}
.widget-header h3 { font-size: 18px; color: var(--white); }
.widget-urgency {
  background: rgba(248,110,30,.12);
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px; color: var(--orange-lt);
}
.widget-body { padding: 28px; }

/* Form Fields */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  background: rgba(10,14,36,.8);
  border: 1px solid var(--card-bd);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px; color: var(--off-white);
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,200,220,.1); }
.form-control::placeholder { color: rgba(120,128,152,.5); }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f86e1e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Calendar */
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cal-header h4 { font-size: 15px; color: var(--white); }
.cal-nav { background: none; border: 1px solid var(--card-bd); border-radius: 6px; width: 30px; height: 30px; color: var(--gray-lt); cursor: pointer; font-size: 14px; transition: all .2s; }
.cal-nav:hover { border-color: var(--cyan); color: var(--cyan); }

.cal-grid { width: 100%; border-collapse: separate; border-spacing: 3px; }
.cal-grid th { font-size: 11px; color: var(--gray); text-align: center; padding: 6px 0; }
.cal-grid td { text-align: center; padding: 2px; }
.cal-day {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none; background: none; cursor: default;
  font-size: 13px; color: var(--gray);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s; font-family: var(--font-body);
}
.cal-day.available { color: var(--green); cursor: pointer; }
.cal-day.available:hover { background: rgba(20,210,120,.15); color: var(--green); }
.cal-day.selected { background: var(--orange); color: #fff; cursor: pointer; }
.cal-day.today    { box-shadow: 0 0 0 2px var(--orange); color: var(--orange); font-weight: 700; }
.cal-day.booked   { color: var(--red); text-decoration: line-through; }
.cal-day.disabled { opacity: .3; }
.cal-day.has-dot::after { content: ''; display: block; width: 4px; height: 4px; background: currentColor; border-radius: 50%; margin: 0 auto; }

/* Time slots */
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 6px; }
.time-slot {
  background: rgba(10,14,36,.8);
  border: 1px solid var(--card-bd);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  font-size: 13px; color: var(--gray-lt);
  cursor: pointer;
  font-family: var(--font-mono);
  transition: all .2s;
}
.time-slot:hover  { border-color: var(--orange); color: var(--orange-lt); }
.time-slot.active { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 700; }
.time-slot.full   { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* Book button */
.btn-book {
  width: 100%; padding: 18px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px; font-weight: 800;
  cursor: pointer;
  font-family: var(--font-head);
  letter-spacing: .5px;
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(248,110,30,.3);
}
.btn-book:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(248,110,30,.45); }

/* ── Branches ─────────────────────────────────────────────────── */
.branches-section { padding: 60px 0; background: var(--bg3); }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.branch-card {
  background: var(--card);
  border: 2px solid var(--card-bd);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.branch-card:hover { transform: translateY(-4px); }
.branch-pin   { font-size: 26px; margin-bottom: 10px; }
.branch-city  { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.branch-sub   { font-size: 11px; color: var(--gray); }
.branch-card.b1 { border-color: rgba(0,200,220,.35); }
.branch-card.b2 { border-color: rgba(248,110,30,.35); }
.branch-card.b3 { border-color: rgba(240,170,0,.35); }
.branch-card.b4 { border-color: rgba(140,80,255,.35); }
.branch-card.b5 { border-color: rgba(20,210,120,.35); }

/* ── Newsletter ──────────────────────────────────────────────── */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(90deg, #14053c, #060e28, #14053c);
  border-top: 4px solid var(--cyan);
  border-bottom: 4px solid var(--purple);
  text-align: center;
}
.newsletter-section .section-title { margin: 10px 0 6px; }
.nl-sub { font-size: 15px; color: var(--gray-lt); margin-bottom: 30px; }
.nl-form { display: flex; gap: 12px; max-width: 560px; margin: 0 auto; }
.nl-input {
  flex: 1;
  background: rgba(10,14,36,.8);
  border: 1px solid var(--card-bd);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px; color: var(--off-white);
  outline: none;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.nl-input:focus { border-color: var(--cyan); }
.nl-input::placeholder { color: var(--gray); }
.nl-btn {
  background: var(--cyan);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 14px; font-weight: 800;
  cursor: pointer;
  font-family: var(--font-head);
  transition: all .2s;
}
.nl-btn:hover { background: var(--cyan-lt); transform: translateY(-1px); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #03040e;
  padding: 60px 0 0;
  border-top: 4px solid var(--orange);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--white); }
.footer-brand .tagline { font-size: 13px; color: var(--gray); margin: 10px 0 18px; line-height: 1.6; }
.footer-email { color: var(--cyan); font-size: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  padding: 8px 16px;
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 8px;
  font-size: 12px; color: var(--gray-lt);
  transition: all .2s;
}
.social-btn:hover { border-color: var(--cyan); color: var(--cyan); }

.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--gray); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--gray-lt); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--card-bd);
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-trademark { display: flex; align-items: center; gap: 8px; }
.trademark-badge {
  background: rgba(240,170,0,.1);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px; color: var(--gold);
  font-weight: 700;
}

/* ── Alert / Flash Messages ──────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: var(--green-bg);  border: 1px solid var(--green); color: var(--green); }
.alert-error   { background: var(--red-bg);    border: 1px solid var(--red);   color: var(--red);   }
.alert-info    { background: rgba(0,200,220,.08); border: 1px solid var(--cyan); color: var(--cyan); }

/* ── Loading Spinner ─────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Scroll animations ───────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner     { grid-template-columns: 1fr 420px; }
  .companies-grid { grid-template-columns: 1fr; }
  .booking-inner  { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-inner           { grid-template-columns: 1fr; }
  .hero-photo-wrap      { display: none; }
  .stats-strip .container { grid-template-columns: repeat(3,1fr); }
  .services-grid        { grid-template-columns: 1fr 1fr; }
  .branches-grid        { grid-template-columns: repeat(3,1fr); }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .about-inner          { grid-template-columns: 1fr; }
  .about-pillars        { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container    { padding: 0 20px; }
  .navbar       { padding: 0 20px; }
  .nav-links    { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner  { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: repeat(2,1fr); }
  .hero-title   { font-size: 38px; }
  .tl-item { grid-template-columns: 1fr 40px; }
  .tl-item:nth-child(odd) .tl-empty,
  .tl-item:nth-child(even) .tl-empty { display: none; }
  .tl-item .tl-card { grid-column: 1 !important; margin: 0 !important; text-align: left !important; }
  .tl-dot { grid-column: 2; }
  .nl-form { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   SUPPLEMENTAL — index.php class bridge
   ═══════════════════════════════════════════════════════════ */

/* ── Announce bar extras ─────────────────────────────────── */
.announce-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; position: relative; z-index: 10;
}
.announce-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; opacity: .7; flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.3);opacity:1} }
.announce-cta { margin-left: 10px; font-weight: 800; opacity: .9; }

/* ── Navbar bridge ───────────────────────────────────────── */
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1380px; margin: 0 auto;
}
.logo-p  { color: var(--purple-lt); font-weight: 900; font-size: 1.2rem; }
.logo-sep{ color: var(--cyan); margin: 0 6px; }
.logo-ceo{ color: var(--cyan); font-weight: 700; font-size: .9rem; letter-spacing: 1px; }
.nav-logo { font-family: var(--font-head); font-size: 1.1rem; color: var(--white); display: flex; align-items: center; }

.btn-outline { background: transparent; border: 2px solid var(--purple-lt); color: var(--purple-lt); }
.btn-outline:hover { background: rgba(100,40,220,.12); }
.btn-ghost   { background: transparent; border: 1px solid rgba(255,255,255,.12); color: var(--gray-lt); }
.btn-ghost:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--off-white); border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-links a.active { color: var(--cyan); }
.navbar.scrolled { background: rgba(4,6,18,.99); box-shadow: 0 2px 20px rgba(0,0,0,.4); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

@media (max-width: 860px) {
  .nav-toggle  { display: flex; }
  .nav-actions { display: none; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(4,6,18,.98);
    border-bottom: 2px solid var(--purple);
    padding: 16px 24px;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.05); }
}

/* ── Hero bridge ─────────────────────────────────────────── */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(100,40,220,.22); top: -150px; left: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(0,200,220,.12); bottom: 0; right: -50px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(30,38,106,.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(30,38,106,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero { position: relative; }
.hero-content { position: relative; z-index: 2; }
.hero-visual  { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(100,40,220,.12);
  border: 1px solid rgba(140,80,255,.4);
  border-radius: 30px; padding: 8px 18px;
  font-size: 12px; color: var(--gray-lt);
  font-weight: 600; margin-bottom: 22px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--green);
  border-radius: 50%; animation: pulse-dot 2s ease infinite;
}

.grad-text     { background: linear-gradient(120deg, var(--purple-lt), var(--cyan-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text-alt { background: linear-gradient(120deg, var(--orange), var(--gold));      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-ctas .btn svg { width: 16px; height: 16px; }

.hero-trust {
  display: flex; align-items: center; gap: 0;
  background: rgba(10,14,40,.6); border: 1px solid var(--card-bd);
  border-radius: 12px; padding: 14px 20px;
  width: fit-content;
}
.trust-item { text-align: center; padding: 0 20px; }
.trust-num  { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--white); }
.trust-label{ display: block; font-size: .72rem; color: var(--gray); letter-spacing: .5px; text-transform: uppercase; margin-top: 2px; }
.trust-divider { width: 1px; height: 36px; background: var(--card-bd); flex-shrink: 0; }

/* Hero photo rings */
.hero-photo-wrap {
  position: relative; display: flex; align-items: center;
  justify-content: center; padding: 30px;
}
.photo-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.photo-ring-1 { inset: 0;    border: 1px solid rgba(100,40,220,.3); border-radius: 50%; animation: spin-ring 20s linear infinite; }
.photo-ring-2 { inset: 10px; border: 1px solid rgba(0,200,220,.2);  border-radius: 50%; animation: spin-ring 30s linear infinite reverse; }
.photo-ring-3 { inset: 20px; border: 1px solid rgba(248,110,30,.15);border-radius: 50%; animation: spin-ring 40s linear infinite; }
@keyframes spin-ring { to { transform: rotate(360deg); } }

.hero-photo {
  width: 380px; height: 480px;
  object-fit: cover; object-position: center top;
  border-radius: 20px;
  border: 2px solid rgba(100,40,220,.4);
  box-shadow: 0 0 60px rgba(100,40,220,.3), 0 0 120px rgba(0,200,220,.08);
  position: relative; z-index: 2;
}
.photo-glow {
  position: absolute; inset: 30px; border-radius: 20px;
  background: radial-gradient(ellipse at center, rgba(100,40,220,.2), transparent 70%);
  pointer-events: none; z-index: 1;
}

.hero-float {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--card-bd);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  z-index: 5; min-width: 130px;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.hero-float strong { display: block; font-family: var(--font-head); font-size: .9rem; font-weight: 700; color: var(--white); }
.hero-float small  { display: block; font-size: .68rem; color: var(--gray); }
.hero-float-1 { bottom: 40px; left: -30px; border-left: 3px solid var(--green); }
.hero-float-2 { top: 40px;    right: -30px; border-left: 3px solid var(--cyan); }
.hero-float-3 { bottom: 140px; right: -30px; border-left: 3px solid var(--orange); }
.float-icon { font-size: 1.4rem; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 5;
}
.scroll-indicator {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 14px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  animation: scroll-bounce 2s ease infinite;
}
@keyframes scroll-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(14px)} }

/* ── Stats strip bridge ──────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}
.stat-divider { width: 1px; height: 48px; background: rgba(30,38,106,.8); flex-shrink: 0; }
.stat-suffix  { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--off-white); }
.stat-label   { font-size: .72rem; color: var(--gray); margin-top: 6px; letter-spacing: .5px; text-transform: uppercase; }
.stat-item { text-align: center; padding: 0 16px; }
.stat-num  { display: inline; font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; line-height: 1; color: var(--white); }

@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(3,1fr); } .stat-divider { display: none; } }
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Section helpers ─────────────────────────────────────── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
  background: rgba(0,200,220,.08); border: 1px solid rgba(0,200,220,.2);
  border-radius: 20px; padding: 4px 14px;
}
.section-sub { color: var(--gray-lt); font-size: 1rem; max-width: 560px; margin: 10px auto 0; line-height: 1.7; }

/* ── About bridge ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px; align-items: start;
}
.about-text p { font-size: 15px; color: var(--gray-lt); line-height: 1.85; margin-bottom: 16px; }
.about-lead { font-size: 1.1rem !important; color: var(--off-white) !important; font-weight: 500; }

.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.pillar {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 12px; padding: 20px 16px;
  transition: transform .25s, border-color .25s;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--cyan); }
.pillar-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(var(--c-rgb, 100,40,220), .1);
  background: color-mix(in srgb, var(--c, var(--purple)) 12%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--c, var(--purple));
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pillar p  { font-size: .8rem; color: var(--gray); line-height: 1.6; }

.about-image-wrap { position: relative; }
.about-img-frame  {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(100,40,220,.3);
}
.about-img { width: 100%; height: 440px; object-fit: cover; object-position: center top; display: block; }
.about-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(4,6,18,.9) 0%, transparent 60%);
  padding: 24px;
}
.overlay-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--white); }
.overlay-stat span   { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.os-num   { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--cyan); display: block; }
.os-label { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

.about-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.a-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(100,40,220,.08); border: 1px solid rgba(140,80,255,.2);
  border-radius: 8px; padding: 8px 14px;
  font-size: .78rem; color: var(--gray-lt);
}
.a-badge-alt { background: rgba(0,200,220,.06); border-color: rgba(0,200,220,.2); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-image-wrap { order: -1; } }
@media (max-width: 600px) { .about-pillars { grid-template-columns: 1fr; } }

/* ── Quote section bridge ────────────────────────────────── */
.quote-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
  padding: 60px 40px;
  background: rgba(10,14,40,.6); border: 1px solid var(--card-bd);
  border-radius: 20px;
  position: relative; z-index: 1;
}
.quote-mark {
  font-family: var(--font-head); font-size: 6rem; font-weight: 900;
  line-height: .5; color: var(--purple); opacity: .4;
  margin-bottom: 16px; display: block;
}
.ceo-quote {
  font-size: 1.15rem; color: var(--off-white); line-height: 1.85;
  font-style: italic; margin-bottom: 28px;
}
.quote-author {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.quote-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--purple);
}
.quote-author strong { display: block; font-size: .95rem; color: var(--white); font-weight: 700; }
.quote-author span   { font-size: .78rem; color: var(--gray); }

/* ── Companies bridge ────────────────────────────────────── */
.companies-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.company-card--getin    { border-color: rgba(240,170,0,.3); }
.company-card--ramaussys{ border-color: rgba(0,200,220,.3); }
.company-card--getin::before    { background: linear-gradient(90deg, var(--gold), var(--orange)); }
.company-card--ramaussys::before{ background: linear-gradient(90deg, var(--cyan), var(--purple)); }
.company-card--getin:hover    { border-color: var(--gold); }
.company-card--ramaussys:hover{ border-color: var(--cyan); }

.company-card-glow {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .3s; border-radius: inherit; pointer-events: none;
}
.company-card--getin .company-card-glow     { background: radial-gradient(ellipse at top left, rgba(240,170,0,.06), transparent 60%); }
.company-card--ramaussys .company-card-glow { background: radial-gradient(ellipse at top left, rgba(0,200,220,.06), transparent 60%); }
.company-card:hover .company-card-glow { opacity: 1; }

.company-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.company-logo {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--bg); border: 1px solid var(--card-bd);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.company-logo svg { width: 36px; height: 36px; }
.company-title-wrap h3   { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.company-tag { font-size: .72rem; color: var(--gray); letter-spacing: .5px; }
.company-desc { font-size: .88rem; color: var(--gray-lt); line-height: 1.7; margin-bottom: 18px; }
.company-stats { display: flex; gap: 20px; margin-bottom: 16px; }
.cs-item strong { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--white); }
.cs-item small  { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; }
.company-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.company-tags span {
  font-size: .7rem; padding: 4px 10px;
  background: rgba(255,255,255,.05); border: 1px solid var(--card-bd);
  border-radius: 20px; color: var(--gray-lt);
}
.company-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 600; color: var(--cyan);
  transition: gap .2s;
}
.company-link:hover { gap: 10px; }
.company-link svg { width: 14px; height: 14px; }

@media (max-width: 860px) { .companies-grid { grid-template-columns: 1fr; } }

/* ── Timeline bridge (new layout) ───────────────────────── */
.timeline {
  position: relative; max-width: 900px; margin: 0 auto;
}
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--purple), var(--cyan));
  transform: translateX(-50%);
}
.tl-item {
  display: flex; gap: 0; margin-bottom: 40px; opacity: 0; transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.tl-item.tl-visible { opacity: 1; transform: none; }
.tl-item--left  { flex-direction: row; }
.tl-item--right { flex-direction: row-reverse; }

.tl-content {
  width: calc(50% - 40px);
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 12px; padding: 20px;
}
.tl-item--right .tl-content { margin-left: 40px; }
.tl-item--left  .tl-content { margin-right: 40px; }

.tl-date { font-size: .72rem; font-weight: 700; color: var(--cyan); letter-spacing: .5px; text-transform: uppercase; display: block; margin-bottom: 6px; }
.tl-content h4  { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.tl-content p   { font-size: .82rem; color: var(--gray); line-height: 1.6; }

.tl-dot {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--card); border: 2px solid var(--purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  position: relative; z-index: 2;
  align-self: flex-start; margin-top: 14px;
}

@media (max-width: 700px) {
  .timeline::before { left: 20px; }
  .tl-item, .tl-item--right { flex-direction: row; }
  .tl-content { width: calc(100% - 60px); margin-left: 16px !important; margin-right: 0 !important; }
  .tl-dot { margin-top: 14px; }
}

/* ── Services bridge ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(100,40,220,.12); border: 1px solid rgba(100,40,220,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--c, var(--purple));
  background: color-mix(in srgb, var(--c, var(--purple)) 10%, transparent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-name  { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-desc  { font-size: .84rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.service-meta  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.service-duration {
  display: flex; align-items: center; gap: 4px;
  font-size: .78rem; color: var(--gray);
}
.service-duration svg { width: 13px; height: 13px; }
.service-price { font-size: .9rem; font-weight: 700; color: var(--green); }
.service-cta {
  display: block; font-size: .82rem; font-weight: 700;
  color: var(--cyan); transition: color .2s;
}
.service-cta:hover { color: var(--cyan-lt); }

@media (max-width: 1000px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

/* ── Booking widget bridge ───────────────────────────────── */
.booking-section { background: var(--bg2); }
.booking-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 40px;
}
.step { display: flex; align-items: center; gap: 8px; color: var(--gray); font-size: .82rem; font-weight: 600; }
.step-circle {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--card-bd); font-size: .8rem; font-weight: 700;
  transition: all .3s;
}
.step--active .step-circle { border-color: var(--purple-lt); background: var(--purple); color: #fff; }
.step--active  { color: var(--white); }
.step--done .step-circle  { border-color: var(--green); background: var(--green); color: #fff; }
.step-line { width: 60px; height: 2px; background: var(--card-bd); margin: 0 8px; }

.booking-form { max-width: 700px; margin: 0 auto; }
.booking-step { }
.booking-step.hidden { display: none; }
.booking-step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.hidden { display: none !important; }

.service-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-option {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 2px solid var(--card-bd);
  border-radius: 10px; padding: 14px 16px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.service-option:hover   { border-color: var(--purple); }
.service-option.selected{ border-color: var(--purple-lt); background: rgba(100,40,220,.08); }
.service-option input[type="radio"] { display: none; }
.so-content { flex: 1; }
.so-content strong { display: block; font-size: .9rem; color: var(--white); margin-bottom: 2px; }
.so-content span   { font-size: .78rem; color: var(--gray); }
.so-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--card-bd); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: transparent; transition: all .2s; }
.service-option.selected .so-check { border-color: var(--purple-lt); background: var(--purple); color: #fff; }

.calendar-wrap { margin-bottom: 24px; }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-nav-btn {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 8px; padding: 6px 14px; color: var(--off-white);
  cursor: pointer; font-size: 1rem; transition: background .2s;
}
.cal-nav-btn:hover { background: rgba(255,255,255,.08); }
.cal-month-label { font-weight: 700; color: var(--white); font-size: .95rem; }

.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.cal-hdr { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray); padding: 6px 0; }
.cal-cell {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .82rem; border-radius: 8px;
}
.cal-empty    { }
.cal-past     { color: rgba(255,255,255,.15); cursor: not-allowed; }
.cal-unavail  { color: rgba(255,255,255,.25); cursor: not-allowed; }
.cal-avail    { background: rgba(100,40,220,.12); border: 1px solid rgba(140,80,255,.2); color: var(--purple-lt); cursor: pointer; font-weight: 700; transition: background .2s; }
.cal-avail:hover { background: rgba(100,40,220,.25); border-color: var(--purple-lt); }
.cal-selected { background: var(--purple) !important; color: #fff !important; border-color: var(--purple-lt) !important; }

.time-slots-wrap { margin-bottom: 24px; }
.time-slots-wrap h4 { font-size: .9rem; font-weight: 600; color: var(--gray-lt); margin-bottom: 12px; }
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 50px; }
.slots-placeholder, .slots-loading, .slots-none { font-size: .85rem; color: var(--gray); width: 100%; }
.time-slot {
  background: var(--card); border: 2px solid var(--card-bd);
  border-radius: 8px; padding: 8px 16px;
  cursor: pointer; transition: border-color .2s, background .2s;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
}
.time-slot:hover   { border-color: var(--cyan); }
.time-slot.selected{ border-color: var(--cyan); background: rgba(0,200,220,.1); }
.time-slot small   { font-size: .68rem; color: var(--gray); }

.step-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

.booking-summary {
  background: var(--bg); border: 1px solid var(--card-bd);
  border-radius: 10px; padding: 16px; margin-bottom: 16px;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.summary-row:last-child { border-bottom: none; }
.summary-row span  { font-size: .8rem; color: var(--gray); }
.summary-row strong{ font-size: .88rem; color: var(--white); }

.booking-success { text-align: center; padding: 40px 20px; }
.success-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--green); color: #fff; font-size: 2rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.booking-ref  { font-family: var(--font-mono); font-size: .9rem; color: var(--cyan); margin: 10px 0 24px; }
.booking-success h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.booking-success p  { color: var(--gray-lt); font-size: .9rem; margin-bottom: 8px; }

/* ── Form helpers ────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 4px; }
.form-group--full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }
.form-group input,
.form-group textarea {
  background: rgba(10,14,40,.8); border: 1px solid var(--card-bd);
  border-radius: 8px; padding: 10px 14px; color: var(--off-white);
  font-size: .9rem; outline: none; transition: border-color .2s;
  font-family: var(--font-body); width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--purple-lt); }
.form-group textarea { resize: vertical; }
.req         { color: var(--orange); }
.field-error { font-size: .75rem; color: var(--red); }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
.form-feedback       { margin-top: 12px; font-size: .85rem; padding: 8px 12px; border-radius: 8px; }
.form-feedback--ok   { background: var(--green-bg); color: var(--green); border: 1px solid var(--green); }
.form-feedback--err  { background: var(--red-bg);   color: var(--red);   border: 1px solid var(--red); }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
}

/* ── Branches bridge ─────────────────────────────────────── */
.branches-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.branch-card--hq { border-color: rgba(240,170,0,.4) !important; }
.branch-icon  { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.branch-card h4   { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.branch-card p    { font-size: .78rem; color: var(--gray); line-height: 1.5; }
.branch-state     { font-size: .68rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-top: 8px; display: block; }
.hq-tag {
  display: inline-block; font-size: .6rem; font-weight: 800;
  background: rgba(240,170,0,.15); color: var(--gold);
  border: 1px solid rgba(240,170,0,.3); border-radius: 4px;
  padding: 1px 5px; letter-spacing: .5px; text-transform: uppercase;
  margin-left: 4px;
}

@media (max-width: 900px) { .branches-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .branches-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Blog bridge ─────────────────────────────────────────── */
.blog-section { background: var(--bg2); }
.blog-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card   {
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, border-color .25s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.blog-meta   { display: flex; align-items: center; justify-content: space-between; }
.blog-cat    { font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); }
.blog-date   { font-size: .72rem; color: var(--gray); }
.blog-title  { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.blog-title a{ color: var(--white); transition: color .2s; }
.blog-title a:hover { color: var(--cyan); }
.blog-excerpt{ font-size: .82rem; color: var(--gray); line-height: 1.6; flex: 1; }
.blog-read   { font-size: .8rem; font-weight: 700; color: var(--purple-lt); transition: color .2s; }
.blog-read:hover { color: var(--cyan); }

@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Newsletter bridge ───────────────────────────────────── */
.newsletter-inner {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.nl-text { flex: 1; min-width: 280px; }
.nl-text h3  { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.nl-text p   { font-size: .9rem; color: var(--gray-lt); }
.nl-form { display: flex; gap: 10px; flex: 1; min-width: 300px; }
.nl-form input {
  flex: 1; background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 8px; padding: 12px 14px; color: var(--off-white);
  font-size: .9rem; outline: none; transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--purple-lt); }
.nl-form input::placeholder { color: var(--gray); }
.nl-success { color: var(--green); font-size: .9rem; padding: 8px 0; }

@media (max-width: 700px) {
  .newsletter-inner { flex-direction: column; gap: 20px; }
  .nl-form { flex-direction: column; }
}

/* ── Contact bridge ──────────────────────────────────────── */
.contact-section { background: var(--bg3); }
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item      { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon      { font-size: 1.3rem; flex-shrink: 0; width: 40px; text-align: center; margin-top: 2px; }
.ci-item strong { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray); margin-bottom: 3px; }
.ci-item a, .ci-item span { font-size: .9rem; color: var(--gray-lt); transition: color .2s; }
.ci-item a:hover { color: var(--cyan); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .form-group { margin-bottom: 0; }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Footer bridge ───────────────────────────────────────── */
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 60px; padding-bottom: 48px;
}
.footer-brand { }
.footer-brand p { font-size: .88rem; color: var(--gray); line-height: 1.7; margin: 12px 0 20px; }
.footer-social  { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--card); border: 1px solid var(--card-bd);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-lt); transition: all .2s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fl-col h5   { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 16px; }
.fl-col a    { display: block; font-size: .85rem; color: var(--gray-lt); margin-bottom: 10px; transition: color .2s; }
.fl-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--card-bd);
  padding: 18px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .8rem; color: var(--gray); }
.footer-bottom a { color: var(--cyan); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; } .footer-links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-links { grid-template-columns: 1fr; } }

/* ── Flash messages bridge ───────────────────────────────── */
.flash {
  border-radius: 10px; padding: 12px 18px;
  margin-bottom: 20px; font-size: .88rem;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.flash-success { background: var(--green-bg); border: 1px solid var(--green); color: var(--green); }
.flash-error   { background: var(--red-bg);   border: 1px solid var(--red);   color: var(--red);   }
.flash-info    { background: rgba(0,200,220,.08); border: 1px solid var(--cyan); color: var(--cyan); }
.flash-close   { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: inherit; opacity: .7; line-height: 1; }
.flash-close:hover { opacity: 1; }

/* ── Nav fixes ───────────────────────────────────────────── */
.navbar { padding: 0; }
.navbar .container { display: none; }
.nav-inner { padding: 0 40px; height: 72px; }
@media (max-width: 600px) { .nav-inner { padding: 0 20px; } }
}
