/* ============================================================
   Comfort Stay Ladies Hostel — Main Stylesheet
   Mobile-first | CSS Custom Properties | No framework
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:       #C2185B;
  --primary-50:    #FCE4EC;
  --primary-100:   #F8BBD9;
  --primary-600:   #AD1457;
  --primary-800:   #880E4F;
  --accent:        #FF80AB;
  --gold:          #F59E0B;
  --success:       #10B981;
  --bg:            #FFFBFE;
  --bg-alt:        #FFF0F6;
  --card-bg:       #FFFFFF;
  --text:          #1C1B1F;
  --text-muted:    #6B7280;
  --text-light:    #9CA3AF;
  --border:        #F3D4E3;
  --shadow-sm:     0 1px 3px rgba(194,24,91,.08), 0 1px 2px rgba(194,24,91,.04);
  --shadow:        0 4px 16px rgba(194,24,91,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:     0 20px 48px rgba(194,24,91,.14), 0 8px 20px rgba(0,0,0,.08);
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    .25s cubic-bezier(.4,0,.2,1);
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --font-heading:  'Playfair Display', Georgia, serif;
  --max-w:         1200px;
  --header-h:      72px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 600; }
p  { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary) 100%);
  color: #fff;
}
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: .5rem; }

/* ── Section Title ──────────────────────────────────────────── */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.section-title h2 { margin-bottom: .6rem; }
.section-title p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section--dark .section-title .eyebrow { background: rgba(255,255,255,.2); color: #fff; }
.section--dark .section-title h2,
.section--dark .section-title p { color: #fff; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(194,24,91,.35);
}
.btn--primary:hover { background: var(--primary-600); box-shadow: 0 6px 20px rgba(194,24,91,.45); transform: translateY(-1px); }
.btn--outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--primary); font-weight: 700; }
.btn--white:hover { background: var(--primary-50); }
.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.35); }
.btn--whatsapp:hover { background: #1EBE5A; transform: translateY(-1px); }
.btn--call { background: var(--primary); color: #fff; }
.btn--lg { padding: .95rem 2.2rem; font-size: 1.05rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: .25rem .75rem;
  border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.badge--coming { background: #FEF3C7; color: #92400E; border: 1px solid #FCD34D; }
.badge--active { background: #D1FAE5; color: #065F46; }

/* ── SVG Icons ──────────────────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,250,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.header__logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex-shrink: 0; }
.header__logo-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-800), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; font-weight: 900;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.header__logo-text { line-height: 1.2; }
.header__logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: var(--primary-800);
  display: block;
}
.header__logo-sub { font-size: .7rem; color: var(--text-muted); display: block; }
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--primary-50); }
.header__cta { display: none; gap: .65rem; }
.header__cta .btn { font-size: .85rem; padding: .55rem 1.2rem; }
.nav-toggle {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all var(--transition);
}
.nav-toggle:hover { background: var(--primary-50); color: var(--primary); }
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon--close { display: none; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 2rem; }
.mobile-nav__link {
  display: block; padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-nav__link:hover, .mobile-nav__link.active { color: var(--primary); background: var(--primary-50); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: .75rem; }
.mobile-nav__cta .btn { justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff0f6 0%, #fce4ec 35%, #fff8fa 70%, #fff 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: 65vw; height: 65vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(194,24,91,.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -10%; left: -10%;
  width: 45vw; height: 45vw;
  max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(255,128,171,.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
  position: relative; z-index: 1;
  display: grid; gap: 3rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title em { font-style: normal; color: var(--primary); }
.hero__desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero__trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-muted); font-weight: 500;
}
.hero__trust-item .icon { width: 16px; height: 16px; color: var(--primary); }
.hero__visual {
  display: none;
  position: relative;
}
.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--border);
}
.hero__card-icon {
  width: 52px; height: 52px;
  background: var(--primary-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  font-size: 1.6rem;
}
.hero__card-num { font-size: 1.6rem; font-weight: 800; color: var(--primary); font-family: var(--font-sans); }
.hero__card-label { font-size: .8rem; color: var(--text-muted); }
.hero__badge-est {
  position: absolute; top: 1rem; right: -1rem;
  background: var(--primary);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem; font-weight: 700;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--primary);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item__num {
  font-size: 2rem; font-weight: 800;
  color: #fff;
  font-family: var(--font-sans);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-item__label { font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   FEATURES / AMENITIES
═══════════════════════════════════════════════════════════ */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 56px; height: 56px;
  background: var(--primary-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: all var(--transition);
}
.feature-card__icon .icon { width: 26px; height: 26px; }
.feature-card:hover .feature-card__icon { background: var(--primary); color: #fff; }
.feature-card h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: .4rem; }
.feature-card p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   BRANCH CARDS
═══════════════════════════════════════════════════════════ */
.branch-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.branch-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.branch-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-800), var(--primary) 60%, var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.7);
  position: relative;
}
.branch-card__thumb-label {
  position: absolute; top: 1rem; left: 1rem;
}
.branch-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.branch-card__num {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: .4rem;
}
.branch-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.branch-card__addr {
  display: flex; align-items: flex-start; gap: .4rem;
  font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem;
}
.branch-card__addr .icon { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.branch-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; flex: 1; }
.branch-card__tag {
  background: var(--primary-50);
  color: var(--primary);
  font-size: .72rem; font-weight: 600;
  padding: .2rem .7rem; border-radius: 50px;
}
.branch-card__footer {
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.branch-card--coming { opacity: .85; }
.branch-card--coming .branch-card__body::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.4);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem; line-height: 1;
  font-family: Georgia, serif;
  color: var(--primary-100);
  position: absolute; top: .5rem; left: 1.25rem;
  pointer-events: none;
}
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.testimonial-card .star--filled { color: var(--gold); }
.testimonial-card .star--empty  { color: var(--border); }
.testimonial-card__text {
  color: var(--text); font-size: .95rem; line-height: 1.7;
  margin-bottom: 1.25rem; position: relative;
}
.testimonial-card__author { display: flex; align-items: center; gap: .85rem; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: .95rem; }
.testimonial-card__role { font-size: .8rem; color: var(--text-muted); }
.testimonial-card__branch {
  display: inline-flex; align-items: center;
  font-size: .72rem; color: var(--primary); font-weight: 600;
  margin-top: .2rem;
}

/* ═══════════════════════════════════════════════════════════
   ENQUIRY FORM
═══════════════════════════════════════════════════════════ */
.enquiry-section {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary) 100%);
  padding: 5rem 0;
}
.enquiry-wrap {
  max-width: 700px; margin: 0 auto;
  padding: 0 1.25rem;
}
.enquiry-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
}
.form-title { text-align: center; margin-bottom: 2rem; }
.form-title h2 { color: var(--text); margin-bottom: .4rem; }
.form-title p { color: var(--text-muted); font-size: .95rem; }
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-size: .85rem; font-weight: 600; color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(194,24,91,.12);
}
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #EF4444; }
.form-group .error-msg { color: #EF4444; font-size: .78rem; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; margin-top: .5rem; }
.form-notice { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .75rem; }
.form-success {
  display: none;
  text-align: center; padding: 2rem;
}
.form-success.show { display: block; }
.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--success); margin-bottom: .5rem; }

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
  background: #fff;
}
.faq-question {
  width: 100%; text-align: left;
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .95rem; font-weight: 600; color: var(--text);
  background: #fff;
  transition: all var(--transition);
}
.faq-question:hover { background: var(--primary-50); color: var(--primary); }
.faq-question[aria-expanded="true"] { background: var(--primary-50); color: var(--primary); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  background: var(--bg-alt);
}
.faq-answer.open { max-height: 400px; }
.faq-answer__inner { padding: 1rem 1.5rem 1.25rem; font-size: .92rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   MAP EMBED
═══════════════════════════════════════════════════════════ */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; }

/* ═══════════════════════════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__label {
  position: absolute; inset: 0;
  background: rgba(136,14,79,.6);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item__label { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-100) 0%, #fce4ec 50%, var(--primary-50) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem; color: var(--primary);
}
.gallery-placeholder span { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-align: center; padding: 0 .5rem; }

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 1.25rem 0 0;
}
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .25rem;
  font-size: .82rem; color: var(--text-muted);
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--primary); font-weight: 600; }
.breadcrumb__sep { color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-800), var(--primary));
  padding: 4rem 1.25rem;
  color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .85rem; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.about-story { display: grid; gap: 3rem; align-items: center; }
.about-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-800), var(--primary) 60%, var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,.5);
  position: relative;
}
.about-story__badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-story__badge-num { font-size: 2rem; font-weight: 800; color: var(--primary); font-family: var(--font-sans); line-height: 1; }
.about-story__badge-label { font-size: .78rem; color: var(--text-muted); }
.about-story__content h2 { margin-bottom: 1rem; }
.about-story__content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-checklist { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .92rem; color: var(--text);
}
.about-checklist .icon { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 1px; }
.why-choose { display: grid; gap: 1.25rem; }
.why-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-item__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.why-item__icon .icon { width: 22px; height: 22px; }
.why-item h4 { margin-bottom: .25rem; font-size: .95rem; }
.why-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.contact-info-grid { display: grid; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card__icon .icon { width: 22px; height: 22px; }
.contact-card h4 { font-size: .85rem; color: var(--text-muted); font-weight: 600; margin-bottom: .25rem; }
.contact-card__val { font-size: 1rem; font-weight: 700; color: var(--text); }
.contact-card__val a { color: var(--primary); transition: color var(--transition); }
.contact-card__val a:hover { color: var(--primary-600); }

.branch-address-list { display: grid; gap: 1rem; }
.branch-address-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.branch-address-card__num {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: .3rem;
}
.branch-address-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.branch-address-card p { font-size: .85rem; color: var(--text-muted); margin: 0 0 .75rem; }
.branch-address-card a { font-size: .82rem; color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   BRANCH PAGE SPECIFIC
═══════════════════════════════════════════════════════════ */
.branch-hero {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.branch-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.branch-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.branch-hero__tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.branch-hero h1 { color: #fff; margin-bottom: 1rem; }
.branch-hero__addr {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .95rem; color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}
.branch-hero__addr .icon { width: 18px; height: 18px; flex-shrink: 0; }
.branch-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.branch-overview { display: grid; gap: 3rem; align-items: start; }
.branch-nearby h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.nearby-list { display: flex; flex-direction: column; gap: .5rem; }
.nearby-list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: var(--text-muted);
}
.nearby-list .icon { width: 14px; height: 14px; color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   COMING SOON PAGE
═══════════════════════════════════════════════════════════ */
.coming-soon-hero {
  min-height: 80vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #fff0f6 0%, #fce4ec 50%, #fff 100%);
  padding-top: var(--header-h);
  text-align: center;
}
.coming-soon__inner { max-width: 640px; margin: 0 auto; padding: 4rem 1.25rem; }
.coming-soon__icon {
  width: 100px; height: 100px;
  background: var(--primary-50);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; margin: 0 auto 2rem;
  border: 2px solid var(--primary-100);
}
.coming-soon__inner h1 { margin-bottom: 1rem; }
.coming-soon__inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO (About, Contact, Branches)
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary) 100%);
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #1C1B1F;
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand { max-width: 320px; }
.footer__logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer__logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-800), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 900;
  font-family: var(--font-heading);
}
.footer__logo-name { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; color: #fff; }
.footer__brand p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.footer__social { display: flex; gap: .5rem; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 700;
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--primary); color: #fff; }
.footer__col h5 {
  font-size: .85rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.footer__links { display: flex; flex-direction: column; gap: .45rem; }
.footer__links a {
  font-size: .88rem; color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--primary-100); }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .88rem; color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.footer__contact-item .icon { width: 15px; height: 15px; color: var(--primary-100); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  align-items: center; text-align: center;
}
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.footer__bottom-links a {
  font-size: .82rem; color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
═══════════════════════════════════════════════════════════ */
.fab-container {
  position: fixed; bottom: 1.5rem; right: 1.25rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
  z-index: 900;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all var(--transition);
  color: #fff;
  position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab--wa { background: #25D366; }
.fab--call { background: var(--primary); }
.fab .icon { width: 24px; height: 24px; }
.fab__tooltip {
  position: absolute; right: calc(100% + .6rem);
  background: #333; color: #fff;
  font-size: .75rem; font-weight: 600; white-space: nowrap;
  padding: .35rem .8rem; border-radius: 50px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.fab:hover .fab__tooltip { opacity: 1; }

/* Sticky mobile call bar */
.sticky-call-bar {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 890;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.sticky-call-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem;
  font-weight: 700; font-size: .9rem;
  transition: all var(--transition);
}
.sticky-call-bar a:first-child { background: var(--primary); color: #fff; }
.sticky-call-bar a:first-child:hover { background: var(--primary-600); }
.sticky-call-bar a:last-child { background: #25D366; color: #fff; }
.sticky-call-bar a:last-child:hover { background: #1EBE5A; }
.sticky-call-bar .icon { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .6s ease; }
.fade-in.visible { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.animate-bounce { animation: bounce 2s infinite; }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════ */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-pill {
  background: var(--primary-50); color: var(--primary);
  font-size: .75rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 50px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≥ 640px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .branch-address-list { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__trust { gap: 2rem; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET WIDE (≥ 768px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .about-story { grid-template-columns: 1fr 1fr; }
  .enquiry-form { padding: 3rem; }
  .sticky-call-bar { display: none; }
  .fab-container { bottom: 2rem; right: 2rem; }
  .fab { width: 58px; height: 58px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥ 1024px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .header__cta { display: flex; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero__visual { display: block; }
  .hero__desc { font-size: 1.15rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .branch-overview { grid-template-columns: 1fr 320px; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .about-checklist { flex-direction: row; flex-wrap: wrap; }
  .about-checklist li { width: calc(50% - .3rem); }
  .why-choose { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — LARGE DESKTOP (≥ 1280px)
═══════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .container { padding: 0 2rem; }
  .section { padding: 6rem 0; }
  .hero__inner { padding: 5rem 2rem 6rem; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════════════════════ */
@media print {
  .site-header, .fab-container, .sticky-call-bar, .mobile-nav { display: none !important; }
  body { padding-top: 0; }
}
