/* ============================================================
   Balaji Career Innovators — Stylesheet
   Mobile-first, fully responsive
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --navy:    #0B1F3A;
  --navy2:   #1a3a66;
  --gold:    #D4A645;
  --gold-lt: #EFC76A;
  --gold-dk: #A8832A;
  --cream:   #FBF8F3;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #5a627a;
  --border:  #e4ddd0;
  --wa:      #25D366;
  --wa-dk:   #128C7E;
  --r: 10px; --rs: 8px;
  --shadow:    0 4px 24px rgba(11,31,58,.10);
  --shadow-lg: 0 10px 40px rgba(11,31,58,.18);
  --ff: 'Fraunces', Georgia, serif;
  --fb: 'Manrope', system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;        /* FIX: no horizontal scroll */
}
body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;        /* FIX: no horizontal scroll */
  width: 100%;
  max-width: 100vw;
}
*, *::before, *::after { max-width: 100%; } /* FIX: nothing overflows */

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- INPUTS — FIX iOS zoom (needs 16px min) ---- */
input, select, textarea {
  font-family: var(--fb);
  font-size: 16px;           /* FIX: iOS won't zoom if ≥16px */
  -webkit-appearance: none;
  appearance: none;
}

/* ---- UTILITY ---- */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
.hidden { display: none !important; }
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }

/* ---- SCROLL ANIMATIONS ---- */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-aos].in { opacity: 1; transform: none; }
[data-aos][data-d="80"]  { transition-delay: 80ms; }
[data-aos][data-d="160"] { transition-delay: 160ms; }
[data-aos][data-d="240"] { transition-delay: 240ms; }
[data-aos][data-d="320"] { transition-delay: 320ms; }
[data-aos][data-d="400"] { transition-delay: 400ms; }
[data-aos][data-d="60"]  { transition-delay: 60ms; }
[data-aos][data-d="100"] { transition-delay: 100ms; }
[data-aos][data-d="120"] { transition-delay: 120ms; }
[data-aos][data-d="150"] { transition-delay: 150ms; }
[data-aos][data-d="180"] { transition-delay: 180ms; }
[data-aos][data-d="200"] { transition-delay: 200ms; }
[data-aos][data-d="300"] { transition-delay: 300ms; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--rs);
  font-family: var(--fb); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .25s; white-space: nowrap;
  border: 2px solid transparent; text-decoration: none;
  min-height: 48px;             /* FIX: touch target */
  -webkit-tap-highlight-color: transparent;
}
.btn-primary  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); box-shadow: 0 6px 20px rgba(212,166,69,.35); }
.btn-sm  { padding: 9px 18px; font-size: 13px; min-height: 40px; }
.btn-lg  { padding: 15px 32px; font-size: 16px; min-height: 52px; }
.btn-full { width: 100%; padding: 15px; font-size: 15px; }
.btn-wa   { background: var(--wa);   color: #fff; border-color: var(--wa); }
.btn-wa:hover   { background: var(--wa-dk); border-color: var(--wa-dk); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.btn-call { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-call:hover { background: var(--navy2); box-shadow: 0 6px 20px rgba(11,31,58,.25); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dk); }

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  background: var(--navy); color: rgba(255,255,255,.82);
  font-size: 12px; font-weight: 600; padding: 7px 0;
}
.top-strip-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 768px) { .top-strip-inner { justify-content: flex-start; } }
.ts-item { display: flex; align-items: center; gap: 6px; }
.ts-item a:hover { color: var(--gold); }
.ts-sep { width: 1px; height: 14px; background: rgba(255,255,255,.25); display: none; }
@media (min-width: 600px) { .ts-sep { display: block; } }
.ts-cta { color: var(--gold-lt); font-weight: 700; display: none; }
@media (min-width: 900px) { .ts-cta { display: block; margin-left: auto; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; height: var(--nav-h); gap: 16px;
  position: relative;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) { .nav-logo { height: 52px; } }

/* footer logo */
.footer-logo { margin-bottom: 16px; display: inline-block; }
.footer-logo-img {
  height: 52px; width: auto; max-width: 190px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 7px 12px;
}

/* ---- University logo cards ---- */
.uni-logo-wrap {
  width: 72px; height: 56px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: #fff; border: 1px solid #eee;
  display: flex; align-items: center; justify-content: center;
  padding: 4px;
}
.lpu-bg { background: #3a3a3a !important; border-color: #3a3a3a !important; }
.uni-logo {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none; gap: 2px; margin: 0 auto;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 13px; border-radius: 6px; font-size: 13px; font-weight: 600;
  color: var(--muted); transition: all .25s;
}
.nav-links a:hover { color: var(--navy); background: var(--cream); }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-call {
  display: none; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--navy);
  padding: 8px 12px; border-radius: var(--rs); border: 1.5px solid var(--border);
  transition: all .25s;
}
@media (min-width: 768px) { .nav-call { display: flex; } }
.nav-call:hover { border-color: var(--navy); background: var(--cream); }

.nav-apply { display: none; }
@media (min-width: 640px) { .nav-apply { display: inline-flex; } }

.hamburger {
  display: flex; flex-direction: column; gap: 5px; padding: 8px; border-radius: 6px;
  cursor: pointer; background: none; border: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav dropdown */
.mobile-nav {
  display: none; flex-direction: column;
  position: absolute; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--gold); padding: 12px 16px 16px;
  box-shadow: 0 8px 30px rgba(11,31,58,.12); z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; font-size: 15px; font-weight: 600; color: var(--text);
  border-radius: 8px; transition: background .2s;
}
.mobile-nav a:hover { background: var(--cream); }
.mobile-nav-btns { display: flex; gap: 10px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.mobile-nav-btns .btn { flex: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--navy);
  overflow: hidden; padding: 48px 0 52px;
}
@media (min-width: 768px) { .hero { padding: 64px 0 68px; } }
@media (min-width: 1024px) { .hero { padding: 80px 0 80px; } }

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 110% 30%, rgba(212,166,69,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at -10% 70%, rgba(26,58,102,.5) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; gap: 36px;
}
@media (min-width: 900px) {
  .hero-inner { flex-direction: row; align-items: center; gap: 48px; }
}

.hero-copy { color: #fff; flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,166,69,.18); color: var(--gold-lt);
  border: 1px solid rgba(212,166,69,.35); padding: 6px 14px;
  border-radius: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase; margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--ff); font-size: clamp(26px, 5vw, 46px);
  line-height: 1.2; font-weight: 700; color: #fff; margin-bottom: 16px;
}
.hero-h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,.8); line-height: 1.7;
  margin-bottom: 24px; max-width: 480px;
}
.hero-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.stat-pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 11px 16px; text-align: center; flex: 1; min-width: 90px;
}
.stat-num { display: block; font-family: var(--ff); font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { display: block; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.65); letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btns .btn { flex: 1; min-width: 140px; }

/* FORM CARD */
.form-wrap { width: 100%; }
@media (min-width: 900px) { .form-wrap { width: 400px; flex-shrink: 0; } }
@media (min-width: 1100px) { .form-wrap { width: 430px; } }

.form-card {
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow-lg); overflow: hidden;
}
.form-hd {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 18px 22px; position: relative;
}
.form-hd::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
}
.form-hd h3 { font-family: var(--ff); font-size: 18px; color: #fff; font-weight: 600; margin-bottom: 3px; }
.form-hd p  { font-size: 12.5px; color: rgba(255,255,255,.7); }
.form-body  { padding: 18px 20px 20px; }

/* FORM ELEMENTS */
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.fg:last-of-type { margin-bottom: 0; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 400px) { .frow { grid-template-columns: 1fr; } }

label { font-size: 11.5px; font-weight: 700; color: var(--muted); letter-spacing: .3px; text-transform: uppercase; }
.req  { color: #e53e3e; }

input[type=text], input[type=email], input[type=tel], select, textarea {
  padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--rs);
  color: var(--text); background: #fff; width: 100%; transition: border-color .25s, box-shadow .25s;
  font-size: 16px; /* prevent iOS zoom */
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,166,69,.15);
}
input.err, select.err, textarea.err { border-color: #e53e3e; }
textarea { resize: vertical; min-height: 68px; }

.mode-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.mode-tab {
  display: flex; align-items: center; gap: 5px; padding: 9px 12px;
  border-radius: 7px; border: 1.5px solid var(--border); font-size: 13px;
  font-weight: 700; cursor: pointer; color: var(--muted); transition: all .25s;
  user-select: none; flex: 1; justify-content: center;
}
.mode-tab input { accent-color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }
.mode-tab.on { border-color: var(--gold); background: rgba(212,166,69,.08); color: var(--gold-dk); }
.form-note { font-size: 11.5px; color: var(--muted); margin-top: 10px; text-align: center; }
.f-err { color: #e53e3e; font-size: 11.5px; margin-top: 3px; display: block; }
.form-banner {
  padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  margin-bottom: 12px; background: #fff5f5; color: #c53030; border: 1.5px solid #fed7d7;
}

/* SUCCESS STATE */
.form-success { padding: 32px 20px; text-align: center; }
.suc-ico {
  width: 64px; height: 64px; background: linear-gradient(135deg,#2ecc71,#27ae60);
  color: #fff; border-radius: 50%; font-size: 28px; display: grid; place-items: center;
  margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(46,204,113,.3);
}
.form-success h4 { font-family: var(--ff); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.form-success p  { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.suc-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.suc-btns .btn { flex: 1; min-width: 120px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.trust-sep { width: 1px; height: 18px; background: var(--border); display: none; }
@media (min-width: 700px) { .trust-sep { display: block; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 60px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.sec-tag {
  display: inline-block; background: rgba(212,166,69,.12); color: var(--gold-dk);
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
  border: 1px solid rgba(212,166,69,.3);
}
.sec-title { font-family: var(--ff); font-size: clamp(22px, 4vw, 34px); font-weight: 700; line-height: 1.25; color: var(--navy); margin-bottom: 14px; }
.sec-sub   { font-size: 15px; color: var(--muted); line-height: 1.75; }
.sec-tag-lt { background: rgba(212,166,69,.2); color: var(--gold-lt); border-color: rgba(212,166,69,.4); }
.sec-title-lt { color: #fff; }
.sec-sub-lt   { color: rgba(255,255,255,.68); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }

.feat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 28px 24px; transition: all .3s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.feat-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-ico {
  width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 12px; display: grid; place-items: center; font-size: 24px;
  margin-bottom: 16px; box-shadow: 0 3px 10px rgba(11,31,58,.15);
}
.feat-card h3 { font-family: var(--ff); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 9px; line-height: 1.3; }
.feat-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   UNIVERSITIES
   ============================================================ */
.uni-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
@media (min-width: 600px) { .uni-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .uni-grid { grid-template-columns: repeat(5, 1fr); } }

.uni-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 16px 14px; display: flex; align-items: center; gap: 12px; transition: all .3s;
}
.uni-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.uni-card-more { }
.uni-info h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.uni-info p  { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.uni-badge {
  display: inline-block; font-size: 9.5px; font-weight: 700; padding: 2px 7px;
  border-radius: 8px; background: rgba(212,166,69,.12); color: var(--gold-dk);
  border: 1px solid rgba(212,166,69,.25); margin-right: 3px; margin-bottom: 2px;
}
.uni-cta { text-align: center; }
.uni-cta p { font-size: 14.5px; color: var(--muted); margin-bottom: 12px; }

/* ============================================================
   PROGRAMS
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 600px) { .prog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .prog-grid { grid-template-columns: repeat(4, 1fr); } }

.prog-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 22px 18px; transition: all .3s;
}
.prog-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.prog-ico { font-size: 28px; margin-bottom: 12px; }
.prog-card h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.prog-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.prog-lnk { font-size: 13px; font-weight: 700; color: var(--gold-dk); transition: color .25s; }
.prog-lnk:hover { color: var(--navy); }

/* ============================================================
   PROCESS
   ============================================================ */
.proc-wrap {
  display: flex; flex-direction: column; gap: 0;
}
@media (min-width: 768px) {
  .proc-wrap { flex-direction: row; align-items: flex-start; overflow-x: auto; padding-bottom: 8px; }
}
.proc-step {
  display: flex; align-items: flex-start; gap: 14px; padding: 0 0 0 0;
}
@media (min-width: 768px) {
  .proc-step { flex: 1; min-width: 140px; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; }
}
.step-num {
  font-family: var(--ff); font-size: 40px; font-weight: 700;
  color: rgba(212,166,69,.3); line-height: 1; flex-shrink: 0;
  min-width: 48px;
}
@media (min-width: 768px) { .step-num { font-size: 48px; min-width: unset; } }
.step-body h4 { font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-body p  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.65; }
.proc-con {
  width: 2px; height: 28px; margin: 4px 0 4px 20px;
  background: rgba(212,166,69,.25);
}
@media (min-width: 768px) {
  .proc-con { width: 40px; height: 2px; margin: 28px 0 0; flex-shrink: 0; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 24px; transition: all .3s;
}
.test-card:hover { background: rgba(255,255,255,.11); border-color: rgba(212,166,69,.35); }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.test-card > p { font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 38px; height: 38px; background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy); border-radius: 50%; font-weight: 800; font-size: 15px;
  display: grid; place-items: center; flex-shrink: 0;
}
.test-author strong { display: block; font-size: 13.5px; color: #fff; font-weight: 700; }
.test-author span   { font-size: 11.5px; color: rgba(255,255,255,.55); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { display: flex; flex-direction: column; gap: 36px; }
@media (min-width: 960px) { .contact-wrap { flex-direction: row; align-items: flex-start; gap: 52px; } }
.contact-info { flex: 1; min-width: 0; }
@media (min-width: 960px) { .contact-form { width: 440px; flex-shrink: 0; } }

.contact-info h2 {
  font-family: var(--ff); font-size: clamp(22px, 4vw, 30px); color: var(--navy);
  font-weight: 700; line-height: 1.3; margin-bottom: 12px;
}
.contact-intro { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.cc-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.cc-item {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--rs);
  padding: 14px 18px; transition: all .3s;
}
.cc-item:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateX(3px); }
.cc-item.wa:hover { border-color: var(--wa); }
.cc-ico { width: 42px; height: 42px; background: var(--cream); border-radius: 9px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; border: 1px solid var(--border); }
.cc-label { display: block; font-size: 10.5px; font-weight: 700; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; }
.cc-val   { display: block; font-size: 14.5px; font-weight: 700; color: var(--navy); }
.c-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 18px; max-width: 260px; }
.fsocial { display: flex; gap: 8px; }
.fsoc {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px;
  border-radius: 8px; font-size: 13px; font-weight: 700; transition: all .25s;
}
.fsoc.wa   { background: rgba(37,211,102,.15); color: #2ecc71; border: 1.5px solid rgba(37,211,102,.25); }
.fsoc.wa:hover { background: var(--wa); color: #fff; border-color: var(--wa); }
.fsoc.call { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.15); }
.fsoc.call:hover { background: rgba(255,255,255,.15); }

.fc h4 { font-size: 12px; font-weight: 800; color: #fff; letter-spacing: .9px; text-transform: uppercase; margin-bottom: 14px; }
.fc ul li { margin-bottom: 9px; }
.fc ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .25s; }
.fc ul li a:hover { color: var(--gold); }
.fcl li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px !important; }
.fcl .fci { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.fcl a, .fcl span { font-size: 13px; color: rgba(255,255,255,.6); }
.fcl a:hover { color: var(--gold); }
.fhours { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.75; }
.fhours strong { color: rgba(255,255,255,.7); display: block; margin-bottom: 4px; }

.footer-partners {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(255,255,255,.4);
}
.ppill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 3px 11px; border-radius: 20px; font-size: 11.5px;
  color: rgba(255,255,255,.7); font-weight: 600;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px; padding: 18px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wrap {
  position: fixed; right: 14px; bottom: 74px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
@media (min-width: 768px) { .float-wrap { right: 20px; bottom: 80px; } }

.float-btn {
  display: flex; align-items: center; gap: 8px;
  height: 50px; padding: 0 18px 0 14px; border-radius: 40px;
  font-size: 13.5px; font-weight: 700; color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: all .25s;
  text-decoration: none; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.float-label { display: none; }
@media (min-width: 500px) { .float-label { display: inline; } }

.float-wa   { background: var(--wa); animation: wapulse 3s infinite; }
.float-wa:hover   { background: var(--wa-dk); }
.float-call { background: var(--navy); }
.float-call:hover { background: var(--navy2); }

@keyframes wapulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.65), 0 0 0 6px rgba(37,211,102,.1); }
}

.scroll-top {
  position: fixed; right: 14px; bottom: 18px; z-index: 8999;
  width: 44px; height: 44px; background: var(--navy); color: #fff;
  border-radius: 12px; display: grid; place-items: center; font-size: 18px;
  box-shadow: var(--shadow); transition: all .25s; opacity: 0; pointer-events: none; cursor: pointer;
  border: none; -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) { .scroll-top { right: 20px; } }
.scroll-top.vis { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-dk); }
