/* ============================================
   NAIL STATION TOPAZ — Main Stylesheet
   ============================================ */
:root {
  --rose-gold: #C9A0A0;
  --rose-gold-light: #E8C8C8;
  --blush: #FDF0F0;
  --blush-deep: #F5E0E0;
  --plum: #3D1A2E;
  --plum-light: #5A2A45;
  --plum-mid: #7A3A60;
  --dusty-rose: #B56576;
  --charcoal: #2E2E2E;
  --white: #FFFFFF;
  --cream: #FFF8F5;
  --topaz-gold: #D4A847;
  --topaz-gold-light: #F0C96A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--blush); color: var(--charcoal); overflow-x: hidden; }

/* ── LOGO ── */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 64px; height: 64px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(255,255,255,0.9)) drop-shadow(0 0 16px rgba(255,255,255,0.5)); transition: transform .3s, filter .3s;border-radius: 30px; }
.logo-img:hover { transform: scale(1.06); filter: drop-shadow(0 0 12px rgba(240,201,106,1)) drop-shadow(0 0 24px rgba(240,201,106,0.6)); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; color: #fff; letter-spacing: 2px; text-transform: uppercase; }
.logo-tagline { font-size: .57rem; letter-spacing: 2px; text-transform: uppercase; color: var(--topaz-gold-light); font-weight: 600; margin-top: 3px; }

/* ── HEADER ── */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 60px; height: 82px; display: flex; align-items: center; justify-content: space-between; transition: all .4s; }
header.scrolled { background: var(--plum); box-shadow: 0 4px 30px rgba(61,26,46,.4); }
nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.88); text-decoration: none; transition: color .3s; }
nav a:hover { color: var(--topaz-gold-light); }
.nav-cta { background: var(--dusty-rose); color: #fff !important; padding: 10px 22px; border-radius: 30px; transition: background .3s !important; }
.nav-cta:hover { background: var(--topaz-gold) !important; color: var(--plum) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: #fff; border-radius: 2px; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--plum); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; text-decoration: none; }
.mobile-nav a:hover { color: var(--topaz-gold-light); }
.mobile-close { position: absolute; top: 28px; right: 28px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero { height: 100vh; position: relative; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; display: flex; align-items: center; justify-content: center; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; transform: scale(1.06); transition: transform 8s ease; }
.slide.active .slide-bg { transform: scale(1); }
.slide-bg svg { width: 100%; height: 100%; display: block; }
.slide-overlay { position: absolute; inset: 0; }
.slide-content { position: relative; text-align: center; color: #fff; max-width: 740px; padding: 0 30px; transform: translateY(30px); opacity: 0; transition: all .9s ease .4s; }
.slide.active .slide-content { transform: translateY(0); opacity: 1; }
.slide-label { font-size: .7rem; letter-spacing: 5px; text-transform: uppercase; color: var(--topaz-gold-light); margin-bottom: 18px; display: block; }
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 18px; }
.slide-sub { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 36px; font-weight: 300; }
.hero-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; }
.dot.active { background: var(--topaz-gold-light); width: 28px; border-radius: 4px; }

/* ── BUTTONS ── */
.btn-primary { display: inline-block; padding: 14px 38px; background: var(--dusty-rose); color: #fff; border-radius: 40px; font-size: .83rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all .3s; border: 2px solid var(--dusty-rose); }
.btn-primary:hover { background: var(--topaz-gold); border-color: var(--topaz-gold); color: var(--plum); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,168,71,.4); }
.btn-outline { display: inline-block; padding: 13px 36px; background: transparent; color: var(--plum); border-radius: 40px; font-size: .83rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all .3s; border: 2px solid var(--dusty-rose); }
.btn-outline:hover { background: var(--dusty-rose); color: #fff; transform: translateY(-2px); }
.btn-gold { display: inline-block; padding: 13px 36px; background: var(--topaz-gold); color: var(--plum); border-radius: 40px; font-size: .83rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all .3s; border: 2px solid var(--topaz-gold); }
.btn-gold:hover { background: transparent; color: var(--topaz-gold); transform: translateY(-2px); }

/* ── SECTION COMMONS ── */
.section-label { font-size: .7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--dusty-rose); font-weight: 700; margin-bottom: 14px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--plum); line-height: 1.22; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--dusty-rose); }

/* ── INTRO ── */
.intro { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 110px 80px; }
.intro-text p { font-size: 1rem; color: #666; line-height: 1.9; margin-bottom: 26px; }
.service-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.pill { padding: 8px 18px; border-radius: 30px; border: 1.5px solid var(--topaz-gold); font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--topaz-gold); }
.intro-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 12px; }
.mosaic-item { border-radius: 14px; overflow: hidden; position: relative; }
.mosaic-item:first-child { grid-row: span 2; }
.mosaic-item svg { width: 100%; height: 100%; display: block; transition: transform .5s; }
.mosaic-item:hover svg { transform: scale(1.05); }

/* ── STATS ── */
.stats { background: var(--plum); padding: 80px 60px; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%,rgba(212,168,71,.15) 0%,transparent 55%), radial-gradient(ellipse at 80% 50%,rgba(201,160,160,.1) 0%,transparent 55%); }
.stat-item { position: relative; padding: 20px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.1); }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.6rem,5vw,4.2rem); font-weight: 900; color: var(--topaz-gold-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .75rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* ── SERVICES ── */
.services { background: var(--cream); padding: 100px 80px; }
.services-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.tabs { display: flex; justify-content: center; margin: 0 auto 50px; border: 1px solid var(--rose-gold-light); border-radius: 50px; width: fit-content; overflow: hidden; flex-wrap: wrap; }
.tab-btn { padding: 13px 26px; background: transparent; border: none; font-family: 'Nunito', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--plum-mid); cursor: pointer; transition: all .3s; }
.tab-btn.active { background: var(--plum); color: #fff; }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tab-img { border-radius: 16px; overflow: hidden; height: 420px; }
.tab-img svg { width: 100%; height: 100%; display: block; }
.tab-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--plum); margin-bottom: 16px; }
.tab-text p { color: #666; line-height: 1.9; margin-bottom: 22px; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li { padding: 9px 0; color: #555; font-size: .93rem; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--blush-deep); }
.feature-list li::before { content: '✦'; color: var(--topaz-gold); font-size: .65rem; flex-shrink: 0; }

/* ── BRANCHES ── */
.branches { background: var(--white); padding: 100px 80px; }
.branches-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.branches-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.branch-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--blush-deep); transition: transform .3s, box-shadow .3s; background: var(--white); }
.branch-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(61,26,46,.14); }
.branch-map { height: 200px; position: relative; overflow: hidden; }
.branch-map svg { width: 100%; height: 100%; display: block; }
.branch-badge { position: absolute; top: 16px; left: 16px; background: var(--topaz-gold); color: var(--plum); padding: 5px 14px; border-radius: 20px; font-size: .72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.branch-body { padding: 24px 26px; }
.branch-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--plum); margin-bottom: 10px; font-weight: 700; }
.branch-address { font-size: .88rem; color: #666; line-height: 1.75; margin-bottom: 18px; display: flex; gap: 10px; }
.branch-address svg { flex-shrink: 0; margin-top: 3px; }
.branch-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.branch-btn { padding: 9px 18px; border-radius: 25px; font-size: .76rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: all .3s; display: inline-flex; align-items: center; gap: 6px; }
.branch-btn-primary { background: var(--plum); color: #fff; }
.branch-btn-primary:hover { background: var(--topaz-gold); color: var(--plum); }
.branch-btn-outline { border: 1.5px solid var(--rose-gold-light); color: var(--plum-mid); }
.branch-btn-outline:hover { border-color: var(--topaz-gold); color: var(--topaz-gold); }
.branch-card.featured { grid-column: span 2; }
.branch-card.featured .branch-content-inner { display: grid; grid-template-columns: 1fr 1fr; }
.branch-card.featured .branch-map { height: 100%; min-height: 220px; }

/* ── GALLERY STRIP ── */
.gallery-strip { display: flex; height: 280px; overflow: hidden; }
.gs-item { flex: 1; overflow: hidden; position: relative; cursor: pointer; transition: flex .4s ease; }
.gs-item:hover { flex: 2.2; }
.gs-item svg { width: 100%; height: 100%; display: block; transition: transform .5s; }
.gs-item:hover svg { transform: scale(1.04); }
.gs-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(61,26,46,.85)); color: #fff; padding: 20px 16px 12px; font-family: 'Playfair Display', serif; font-size: .95rem; opacity: 0; transition: opacity .3s; }
.gs-item:hover .gs-label { opacity: 1; }
.gs-image{
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; transform: scale(1);
}

/* ── TRENDY ── */
.trendy { background: var(--blush-deep); padding: 100px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trendy-img-wrap { width: 100%; height: 520px; border-radius: 18px; overflow: hidden; position: relative; }
.trendy-img-wrap svg { width: 100%; height: 100%; display: block; }
.trendy-badge { position: absolute; bottom: -22px; right: -22px; width: 128px; height: 128px; border-radius: 50%; background: var(--plum); display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border: 5px solid var(--blush-deep); animation: rotateBadge 14s linear infinite; line-height: 1.7; padding: 12px; }
@keyframes rotateBadge { to { transform: rotate(360deg); } }
.trendy-text p { color: #666; line-height: 1.9; margin-bottom: 28px; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blush); padding: 100px 80px; text-align: center; }
.testimonials-header { max-width: 580px; margin: 0 auto 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; max-width: 1100px; margin: 0 auto; }
.testi-card { background: var(--white); border-radius: 16px; padding: 32px 26px; text-align: left; border: 1px solid var(--blush-deep); transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(61,26,46,.1); }
.quote { font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--topaz-gold-light); line-height: .5; margin-bottom: 18px; display: block; }
.testi-text { color: #666; line-height: 1.82; font-size: .91rem; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--topaz-gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--plum); font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--plum); }
.author-role { font-size: .76rem; color: #999; }
.stars { color: var(--topaz-gold); font-size: .9rem; margin-bottom: 12px; }
/* ── TESTIMONIALS CAROUSEL ── */
.testi-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 26px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: left;
  border: 1px solid var(--blush-deep);
  transition: box-shadow 0.3s;
  flex: 0 0 calc(33.333% - 18px); /* 3 visible on desktop */
  min-width: 0;
}
.testi-card:hover {
  box-shadow: 0 20px 50px rgba(61, 26, 46, 0.1);
}

/* Arrow buttons */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rose-gold-light);
  color: var(--plum);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(61, 26, 46, 0.1);
}
.testi-arrow:hover {
  background: var(--topaz-gold);
  border-color: var(--topaz-gold);
  color: var(--plum);
  transform: translateY(-50%) scale(1.08);
}
.testi-arrow-left  { left: -24px; }
.testi-arrow-right { right: -24px; }

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-gold-light);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.testi-dot.active {
  background: var(--topaz-gold);
  width: 26px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc(50% - 13px); }
  .testi-arrow-left  { left: -10px; }
  .testi-arrow-right { right: -10px; }
}
@media (max-width: 600px) {
  .testi-card { flex: 0 0 100%; }
  .testi-arrow-left  { left: 0; }
  .testi-arrow-right { right: 0; }
}

/* ── VIDEO ── */
.video-section { position: relative; height: 480px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-section svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-content { position: relative; text-align: center; color: #fff; }
.play-btn { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; cursor: pointer; transition: all .3s; backdrop-filter: blur(8px); }
.play-btn:hover { background: var(--topaz-gold); border-color: var(--topaz-gold); transform: scale(1.1); }
.play-btn svg { position: relative !important; inset: unset !important; width: 28px; fill: #fff; margin-left: 4px; }
.video-content h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; margin-bottom: 12px; }
.video-content p { color: rgba(255,255,255,.7); }

/* ── CONTACT / BOOKING ── */
.contact { background: var(--plum); padding: 100px 80px; position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: rgba(212,168,71,.06); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; }
.contact-text .section-title { color: #fff; }
.contact-text p { color: rgba(255,255,255,.7); line-height: 1.9; margin-bottom: 34px; }
.contact-info-list { list-style: none; margin-bottom: 36px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.65; }
.contact-info-list li .icon { color: var(--topaz-gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.booking-form { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 42px; backdrop-filter: blur(10px); }
.booking-form h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: #fff; font-family: 'Nunito', sans-serif; font-size: .88rem; outline: none; transition: border .3s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--topaz-gold); }
.form-group select option { background: var(--plum); }

/* ── BLOG ── */
.blog { background: var(--cream); padding: 100px 80px; }
.blog-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; transition: transform .3s, box-shadow .3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(61,26,46,.12); }
.blog-img { height: 220px; position: relative; overflow: hidden; }
.blog-img svg { width: 100%; height: 100%; display: block; transition: transform .4s; }
.blog-card:hover .blog-img svg { transform: scale(1.06); }
.blog-tag { position: absolute; top: 14px; left: 14px; background: var(--dusty-rose); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.blog-body { padding: 22px; }
.blog-date { font-size: .76rem; color: #aaa; margin-bottom: 9px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--plum); line-height: 1.4; margin-bottom: 11px; }
.blog-excerpt { font-size: .86rem; color: #777; line-height: 1.75; }
.blog-link { color: var(--topaz-gold); font-weight: 700; font-size: .8rem; margin-top: 14px; display: inline-block; }

/* ── FOOTER ── */
footer { background: var(--plum); padding: 70px 80px 0; color: rgba(255,255,255,.7); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; line-height: 1.8; max-width: 290px; margin-top: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;        /* ← controls icon size */
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--topaz-gold);
  border-color: var(--topaz-gold);
  color: var(--plum);
  transform: scale(1.12);
}
.footer-col h4 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .86rem; transition: color .3s; }
.footer-col ul li a:hover { color: var(--topaz-gold-light); }
.footer-col ul li { font-size: .84rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(37,211,102,.45); text-decoration: none; transition: transform .3s; }
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; fill: #fff; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  header { padding: 0 30px; }
  .intro, .trendy { grid-template-columns: 1fr; padding: 70px 40px; }
  .branches-grid { grid-template-columns: 1fr; }
  .branch-card.featured { grid-column: span 1; }
  .branch-card.featured .branch-content-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .intro, .trendy, .branches, .services, .testimonials, .blog, .contact { padding: 60px 20px; }
  .stats { grid-template-columns: 1fr; padding: 60px 20px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .tab-content.active { grid-template-columns: 1fr; }
  .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-strip { flex-direction: column; height: auto; }
  .gs-item { height: 160px; flex: none; }
  .branches-grid { grid-template-columns: 1fr; }
}

/* ── HERO SLIDER ARROWS ── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  user-select: none;
}
.hero-arrow:hover {
  background: var(--topaz-gold);
  border-color: var(--topaz-gold);
  color: var(--plum);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow-left  { left: 28px; }
.hero-arrow-right { right: 28px; }

@media (max-width: 768px) {
  .hero-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .hero-arrow-left  { left: 12px; }
  .hero-arrow-right { right: 12px; }
}
