/* ============================================================
   MyClickBook — main.css  (v2 — Light Mode Redesign)
   Brand: Projkeez Group Pvt Ltd
   Color palette extracted from logo: Deep Navy → Violet → Magenta
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Palette (from logo gradient) */
  --brand-navy:       #2A1B5E;
  --brand-violet:     #5B2D8E;
  --brand-purple:     #7B35A8;
  --brand-magenta:    #C41580;
  --brand-pink:       #E11479;
  --brand-hot:        #F0267A;

  /* Light Mode Surfaces */
  --surface-base:     #FFFFFF;
  --surface-soft:     #FAF9FF;
  --surface-muted:    #F3F0FA;
  --surface-card:     #FFFFFF;
  --surface-elevated: #FFFFFF;

  /* Text */
  --text-primary:     #1A0F3C;
  --text-secondary:   #4A3B6B;
  --text-muted:       #8878AA;
  --text-on-brand:    #FFFFFF;

  /* Borders */
  --border-light:     rgba(91,45,142,0.10);
  --border-medium:    rgba(91,45,142,0.18);
  --border-strong:    rgba(91,45,142,0.28);

  /* Gradients */
  --grad-primary:     linear-gradient(135deg, #2A1B5E 0%, #7B35A8 50%, #C41580 100%);
  --grad-horizontal:  linear-gradient(90deg, #7B35A8, #E11479);
  --grad-soft:        linear-gradient(135deg, #F3F0FA 0%, #FDF0F7 100%);
  --grad-card:        linear-gradient(145deg, rgba(123,53,168,0.06), rgba(225,20,121,0.04));
  --grad-hero:        linear-gradient(135deg, #F8F5FF 0%, #FDF0F7 40%, #FFF5FB 100%);
  --grad-vibrant:     linear-gradient(135deg, #5B2D8E, #E11479);

  /* Typography */
  /* --font-display:     'Instrument Serif', Georgia, serif; */
  /* --font-body:        'Outfit', system-ui, sans-serif; */
  --font-display:   'MS Sans Serif',sans-serif;
  --font-body:     'MS Sans Serif',sans-serif;

  /* Type Scale */
  --text-hero:        clamp(48px, 7vw, 88px);
  --text-h1:          clamp(36px, 5vw, 60px);
  --text-h2:          clamp(26px, 4vw, 44px);
  --text-h3:          clamp(18px, 2.5vw, 28px);
  --text-body:        16px;
  --text-sm:          14px;
  --text-xs:          12px;

  /* Spacing */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   64px;
  --space-2xl:  96px;
  --space-3xl:  140px;

  /* Layout */
  --container:  1240px;
  --nav-height: 72px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(42,27,94,0.08);
  --shadow-md:   0 8px 32px rgba(42,27,94,0.12);
  --shadow-lg:   0 20px 60px rgba(42,27,94,0.16);
  --shadow-glow: 0 0 48px rgba(196,21,128,0.22);
  --shadow-card: 0 4px 24px rgba(42,27,94,0.08), 0 1px 4px rgba(42,27,94,0.04);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Typography ── */
h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.12; font-weight: 400; }
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
p  { color: var(--text-secondary); line-height: 1.75; }

.text-hero  { font-family: var(--font-display); font-size: var(--text-hero); line-height: 1.06; font-weight: 400; }
.text-h1    { font-size: var(--text-h1); }
.text-h2    { font-size: var(--text-h2); }
.text-h3    { font-size: var(--text-h3); }
.text-sm    { font-size: var(--text-sm); }
.text-xs    { font-size: var(--text-xs); }

.text-gradient {
  background: var(--grad-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; }
.section--soft { background: var(--surface-soft); }
.section--muted { background: var(--surface-muted); }
.section--brand {
  background: var(--grad-primary);
  color: var(--text-on-brand);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(123,53,168,0.08);
  border: 1px solid rgba(123,53,168,0.15);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: var(--space-sm);
}

.section__heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

.section__sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.section__header { margin-bottom: var(--space-xl); }
.section__header--center { text-align: center; }
.section__header--center .section__sub { margin: 0 auto; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--t-base);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}
.nav__logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav__logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
}
.nav__links a:hover, .nav__links a.active { color: var(--brand-purple); }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--grad-horizontal);
  border-radius: 2px;
}

.nav__cta { display: flex; align-items: center; gap: var(--space-xs); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--t-base);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-md);
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.nav__mobile a:hover { color: var(--brand-purple); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,21,128,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,21,128,0.4);
}
.btn--secondary {
  background: var(--surface-muted);
  color: var(--text-primary);
}
.btn--secondary:hover {
  background: var(--border-light);
  transform: translateY(-1px);
}
.btn--outline {
  border: 1.5px solid var(--border-medium);
  color: var(--text-primary);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  background: rgba(123,53,168,0.04);
}
.btn--ghost { color: var(--brand-purple); font-weight: 600; padding: 12px 20px; }
.btn--ghost:hover { color: var(--brand-magenta); }
.btn--sm { padding: 8px 18px; font-size: var(--text-xs); }
.btn--lg { padding: 16px 36px; font-size: 16px; }

/* ── Cards ── */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}
.card--gradient { background: var(--grad-card); }

/* ── Badge / Tag ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge--purple { background: rgba(123,53,168,0.10); color: var(--brand-purple); }
.badge--pink   { background: rgba(225,20,121,0.10); color: var(--brand-pink); }
.badge--navy   { background: rgba(42,27,94,0.10);   color: var(--brand-navy); }
.badge--green  { background: rgba(22,163,74,0.10);  color: #16a34a; }

/* ── App Store Badges ── */
.store-badges { display: flex; gap: var(--space-sm); flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--text-primary);
  color: #fff;
  border-radius: 12px;
  transition: all var(--t-base);
  border: 1.5px solid var(--text-primary);
}
.store-badge:hover {
  background: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.store-badge:hover .store-badge__icon { filter: invert(1) sepia(1) saturate(5) hue-rotate(240deg); }
.store-badge__icon { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge__text small { display: block; font-size: 10px; font-weight: 400; opacity: 0.75; }
.store-badge__text strong { font-size: 14px; font-weight: 700; }

/* ── Divider ── */
.divider { height: 1px; background: var(--border-light); margin: var(--space-lg) 0; }

/* ── Grid Helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-md); }

/* ── Utility ── */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { flex-direction: column; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.gap-lg       { gap: var(--space-lg); }
.text-center  { text-align: center; }
.mt-sm        { margin-top: var(--space-sm); }
.mt-md        { margin-top: var(--space-md); }
.mt-lg        { margin-top: var(--space-lg); }
.mb-sm        { margin-bottom: var(--space-sm); }
.mb-md        { margin-bottom: var(--space-md); }
.mb-lg        { margin-bottom: var(--space-lg); }
.w-full       { width: 100%; }

/* ── Animations ── */
@keyframes float    { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(.9)} }
@keyframes shimmer  { 0%{background-position:-200% 0}100%{background-position:200% 0} }
@keyframes slideUp  { from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0}to{opacity:1} }
@keyframes spin     { to{transform:rotate(360deg)} }
@keyframes gradMove { 0%,100%{background-position:0% 50%}50%{background-position:100% 50%} }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-100 { transition-delay: 0.10s; }
.anim-delay-200 { transition-delay: 0.20s; }
.anim-delay-300 { transition-delay: 0.30s; }
.anim-delay-400 { transition-delay: 0.40s; }
.anim-delay-500 { transition-delay: 0.50s; }

/* ── Image Containers ── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img-rounded { border-radius: var(--r-lg); overflow: hidden; }

/* ── Tag Pill ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface-muted);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.tag--purple { background: rgba(123,53,168,0.08); color: var(--brand-purple); border-color: rgba(123,53,168,0.15); }
.tag--pink   { background: rgba(225,20,121,0.08); color: var(--brand-pink);   border-color: rgba(225,20,121,0.15); }

/* ── Footer ── */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
}


@media (max-width: 768px){
    .footer-grid{
        grid-template-columns:1.5fr 1fr;
        gap:20px;
    }
}

.footer__brand p { font-size: var(--text-sm); line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: var(--space-sm); }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: rgba(255,255,255,0.9); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
}
.footer__logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer__logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: var(--space-xl) 0; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .store-badges { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .btn { padding: 10px 20px; font-size: var(--text-xs); }
  .btn--lg { padding: 13px 26px; font-size: var(--text-sm); }
}

/* ── Prose Image Fallback (Unsplash) ── */
.img-salon-1  { background: linear-gradient(135deg,#f0e6ff,#ffe4f0); }
.img-salon-2  { background: linear-gradient(135deg,#e6f0ff,#f0e6ff); }
.img-hero-bg  { background: var(--grad-hero); }

/* ============================================================
   MyClickBook — Enhanced Styles v2.1
   Lottie containers, Indian image styles, transitions,
   React-style animations, Bangalore imagery
   ============================================================ */

/* ── Page transition overlay ── */
#page-transition-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #2A1B5E 0%, #7B35A8 50%, #C41580 100%);
  pointer-events: none;
}

/* ── Lottie containers ── */
.lottie-wrap {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lottie-icon { width: 56px; height: 56px; }
.lottie-icon--sm { width: 36px; height: 36px; }
.lottie-icon--lg { width: 80px; height: 80px; }
.lottie-icon--xl { width: 120px; height: 120px; }
.lottie-hero { width: 100%; max-width: 420px; height: 420px; }
.lottie-inline { width: 24px; height: 24px; display: inline-block; vertical-align: middle; }
.lottie-section { width: 100%; max-width: 320px; height: 280px; margin: 0 auto; }
.lottie-feature { width: 64px; height: 64px; }

/* ── Feature card Lottie icon replacement ── */
.feature-icon--lottie {
  width: 64px; height: 64px;
  background: rgba(123,53,168,0.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md);
  transition: background var(--t-base);
}
.feature-card:hover .feature-icon--lottie { background: var(--grad-primary); }

/* ── Indian salon image cards ── */
.salon-img-card {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.salon-img-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.salon-img-card:hover img { transform: scale(1.07); }
.salon-img-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,27,94,0.75) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--t-base);
}
.salon-img-card:hover .salon-img-card__overlay { opacity: 1; }
.salon-img-card__label {
  position: absolute; bottom: var(--space-sm); left: var(--space-sm);
  color: #fff; font-size: var(--text-sm); font-weight: 700;
  opacity: 0; transition: opacity var(--t-base); transform: translateY(8px);
  transition: all var(--t-base);
}
.salon-img-card:hover .salon-img-card__label { opacity: 1; transform: translateY(0); }

/* ── Bangalore location badge ── */
.blr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: var(--r-full);
  background: rgba(255,153,0,0.1); border: 1px solid rgba(255,153,0,0.25);
  font-size: 11px; font-weight: 700; color: #b36a00;
  letter-spacing: 0.06em;
}
.blr-badge::before {
  content: '📍'; font-size: 13px;
}

/* ── Enhanced phone mockup salon cards with images ── */
.phone-salon-img {
  width: 48px; height: 48px; border-radius: var(--r-md);
  overflow: hidden; flex-shrink: 0;
  background-size: cover; background-position: center;
  transition: opacity 0.5s ease;
}
.phone-salon-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Team member avatar with real photo ── */
.team-avatar-img {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; margin: 0 auto var(--space-sm);
  border: 3px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.team-avatar-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-avatar-img { transform: scale(1.05); box-shadow: 0 8px 24px rgba(123,53,168,0.2); }
.team-card:hover .team-avatar-img img { transform: scale(1.08); }

/* ── Blog card image enhancement ── */
.blog-card__img-wrap {
  width: 100%; aspect-ratio: 16/9;
  overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
}
.blog-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.08); }
.blog-card__category-pill {
  position: absolute; top: var(--space-sm); left: var(--space-sm);
  background: var(--grad-primary); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-full);
  backdrop-filter: blur(4px);
}

/* ── Testimonial avatar with real photo ── */
.testimonial-avatar-img {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--border-light);
}
.testimonial-avatar-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── India flag accent ── */
.india-accent {
  background: linear-gradient(90deg, #FF9933 33%, #ffffff 33%, #ffffff 66%, #138808 66%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Bangalore hero image panel ── */
.blr-hero-panel {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hero);
}
.blr-hero-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.blr-hero-panel__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,27,94,0.4) 0%, transparent 60%);
}

/* ── Vendor/salon listing image ── */
.vendor-card-img {
  width: 100%; height: 200px;
  overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
}
.vendor-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vendor-card:hover .vendor-card-img img { transform: scale(1.06); }

/* ── Floating image badges (hero decorations) ── */
.img-badge {
  position: absolute;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #fff;
}
.img-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-badge--tl { top: 10%; left: -20px; width: 120px; height: 90px; animation: float 6s ease-in-out infinite 1s; }
.img-badge--br { bottom: 8%; right: -15px; width: 140px; height: 100px; animation: float 7s ease-in-out infinite 2s; }
.img-badge--tr { top: 5%; right: -10px; width: 100px; height: 80px; animation: float 5s ease-in-out infinite 0.5s; }

/* ── Shimmer loading placeholder ── */
.img-shimmer {
  background: linear-gradient(90deg, #f0e6ff 25%, #fce4f5 50%, #f0e6ff 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Smooth section fade-up ── */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── Horizontal scroll gallery (mobile) ── */
.img-gallery-scroll {
  display: flex; gap: var(--space-sm);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: var(--space-sm);
}
.img-gallery-scroll::-webkit-scrollbar { display: none; }
.img-gallery-scroll > * { scroll-snap-align: start; flex-shrink: 0; }

/* ── City image grid ── */
.city-img-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-sm);
  border-radius: var(--r-xl); overflow: hidden;
}
.city-img-grid__main { grid-row: 1 / 3; }
.city-img-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.city-img-grid img:hover { transform: scale(1.04); }

/* ── Lottie success animation container ── */
.lottie-success { width: 140px; height: 140px; margin: 0 auto; }
.lottie-empty   { width: 200px; height: 160px; margin: 0 auto; }

/* ── Enhanced gradient image overlay ── */
.img-with-gradient {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
}
.img-with-gradient img { display: block; width: 100%; }
.img-with-gradient::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,27,94,0.6) 0%, rgba(123,53,168,0.2) 40%, transparent 70%);
}
.img-with-gradient__caption {
  position: absolute; bottom: var(--space-md); left: var(--space-md);
  color: #fff; z-index: 2;
}
.img-with-gradient__caption h4 { font-family: var(--font-display); font-size: 22px; margin-bottom: 4px; }
.img-with-gradient__caption p { font-size: var(--text-xs); opacity: 0.85; }

/* ── Rotating salon image strip ── */
.salon-strip {
  display: flex; gap: var(--space-sm);
  animation: scroll-strip 25s linear infinite;
}
.salon-strip:hover { animation-play-state: paused; }
.salon-strip__item {
  flex-shrink: 0; width: 240px; height: 180px;
  border-radius: var(--r-lg); overflow: hidden;
}
.salon-strip__item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scroll-strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.salon-strip-wrap { overflow: hidden; }

