/* =====================================================
   IT'S ME UNISEX SALOON — Premium Luxury Styles v2
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #a07c2e;
  --gold-muted: rgba(201,168,76,0.12);
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.85);
  --white-60: rgba(255,255,255,0.6);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.12);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow: 0 0 30px rgba(201,168,76,0.35);
  --shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  animation: pulseGold 1.5s ease-in-out infinite;
}
.preloader-sub {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 6px;
  font-family: var(--font-body);
}
.preloader-bar {
  width: 180px; height: 1px;
  background: var(--white-20);
  margin-top: 28px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadBar 2s ease forwards;
}
@keyframes pulseGold { 0%,100%{opacity:1}50%{opacity:0.35} }
@keyframes loadBar { to { width: 100%; } }

/* ── Particles Canvas ── */
#particles-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em; line-height: 1.2;
}
.nav-logo span { display: block; font-size: 0.6rem; font-family: var(--font-body); font-weight: 400; letter-spacing: 0.3em; color: var(--white-60); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-80); position: relative; transition: color 0.3s; }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { border: 1px solid var(--gold) !important; padding: 9px 24px; color: var(--gold) !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin: -8px;
  z-index: 9100;
  position: relative;
  flex-direction: column; gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
  pointer-events: none;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;   /* hidden by default on desktop */
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 9050;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1), opacity 0.45s ease;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav a {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 300;
  color: var(--white); letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mn-book {
  margin-top: 16px;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  padding: 14px 36px !important;
}


/* ── Gold Divider ── */
.gold-divider { display: flex; align-items: center; gap: 16px; margin: 20px 0; }
.gold-divider::before, .gold-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.gold-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.gold-divider span { color: var(--gold); font-size: 1.1rem; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  font-size: 0.96rem; color: var(--white-60);
  max-width: 580px; line-height: 1.85;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-body);
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 38px; border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { box-shadow: var(--glow); }
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 38px; border: 1px solid var(--gold);
  cursor: pointer; transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); box-shadow: var(--glow); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
}
.hero-swiper { width: 100%; height: 100%; }
.hero-slide { position: relative; width: 100%; height: 100%; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.88) 35%, rgba(8,8,8,0.25));
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 680px;
}
.hero-label {
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero-label::before { content: ''; display: block; width: 36px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-title strong { font-weight: 700; display: block; color: var(--gold); }
.hero-subtitle {
  font-size: 1rem; color: var(--white-60);
  margin-bottom: 40px; max-width: 460px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white-60); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(0.4);opacity:0.4}50%{transform:scaleY(1);opacity:1} }

.hero-fraction {
  position: absolute; right: 50px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-fraction .current { font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-fraction .sep { width: 1px; height: 36px; background: var(--white-20); }
.hero-fraction .total { font-size: 0.78rem; color: var(--white-40); }

.slide-1 .hero-bg { background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=85'); }
.slide-2 .hero-bg { background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1920&q=85'); }
.slide-3 .hero-bg { background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1920&q=85'); }

/* ── ABOUT PREVIEW ── */
.about-preview {
  padding: 110px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
  background: var(--black);
}
.about-images { position: relative; height: 560px; }
.about-img-main { position: absolute; width: 74%; height: 84%; object-fit: cover; top: 0; left: 0; }
.about-img-accent { position: absolute; width: 50%; height: 54%; object-fit: cover; bottom: 0; right: 0; border: 5px solid var(--black); box-shadow: var(--shadow); }
.about-badge {
  position: absolute; top: 36px; right: 36px;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); text-align: center;
  box-shadow: var(--glow); z-index: 2;
}
.about-badge .num { font-size: 1.9rem; font-weight: 700; line-height: 1; }
.about-badge .txt { font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 44px; padding-top: 36px;
  border-top: 1px solid var(--white-20);
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white-60); margin-top: 6px; }

/* ── SERVICES SECTION ── */
.services-section {
  padding: 90px 60px;
  background: var(--black-2);
  position: relative; z-index: 2;
}
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card { position: relative; height: 370px; overflow: hidden; cursor: pointer; }
.service-card.large { grid-row: span 2; height: auto; min-height: 740px; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 40%, transparent);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px; transition: var(--transition);
}
.service-card:hover .service-card-overlay { background: linear-gradient(to top, rgba(8,8,8,0.96) 50%, rgba(8,8,8,0.15)); }
.service-card-tag { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.service-card-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  transform: translateY(18px); opacity: 0; transition: var(--transition);
}
.service-card:hover .service-card-link { transform: translateY(0); opacity: 1; }

/* ── WHY CHOOSE US ── */
.why-section {
  padding: 110px 60px;
  position: relative; z-index: 2;
  background: var(--black);
}
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 56px; }
.why-card {
  padding: 38px 28px; border: 1px solid var(--white-20);
  position: relative; transition: var(--transition); overflow: hidden;
}
.why-card::before {
  content:''; position: absolute; inset: 0;
  background: var(--gold-muted); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s ease;
}
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleY(1); }
.why-icon { font-size: 1.9rem; color: var(--gold); margin-bottom: 18px; position: relative; }
.why-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 10px; position: relative; }
.why-card p { font-size: 0.86rem; color: var(--white-60); line-height: 1.8; position: relative; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 90px 60px;
  background: var(--black-2);
  position: relative; z-index: 2;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"'; position: absolute;
  font-family: var(--font-display); font-size: 28rem;
  color: rgba(201,168,76,0.03); top: -50px; left: -10px;
  line-height: 1; pointer-events: none;
}
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.testi-swiper { padding-bottom: 50px !important; }
.testi-card {
  background: var(--black-3); padding: 44px 38px;
  border: 1px solid var(--white-20); transition: var(--transition);
}
.testi-card:hover { border-color: var(--gold); }
.stars { color: var(--gold); margin-bottom: 18px; font-size: 0.85rem; letter-spacing: 3px; }
.testi-text {
  font-family: var(--font-display); font-size: 1.2rem;
  font-style: italic; line-height: 1.75;
  color: var(--white-80); margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-name { font-weight: 600; font-size: 0.88rem; }
.testi-role { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.08em; }

/* ── GALLERY PREVIEW ── */
.gallery-preview { position: relative; z-index: 2; background: var(--black); }
.gallery-intro { padding: 90px 60px 50px; display: flex; justify-content: space-between; align-items: flex-end; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-template-rows: 280px 280px; gap: 2px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.7rem; color: var(--gold); }

/* ── TEAM PREVIEW ── */
.team-section { padding: 90px 60px; background: var(--black-2); position: relative; z-index: 2; }
.team-header { text-align: center; margin-bottom: 50px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.team-card { position: relative; overflow: hidden; height: 440px; cursor: pointer; }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: grayscale(25%); }
.team-card:hover img { transform: scale(1.05); filter: grayscale(0); }
.team-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--black) 60%, transparent);
  padding: 36px 26px 26px; transform: translateY(16px); transition: var(--transition);
}
.team-card:hover .team-info { transform: translateY(0); }
.team-name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; }
.team-role { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ── INSTA STRIP ── */
.insta-strip { display: grid; grid-template-columns: repeat(6,1fr); position: relative; z-index: 2; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  color: var(--black); font-size: 1.4rem;
}
.insta-item:hover .insta-hover { opacity: 1; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 90px 60px; text-align: center;
  position: relative; z-index: 2;
  background: var(--black);
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 500px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }
.cta-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 300; margin-bottom: 18px; line-height: 1.1; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { color: var(--white-60); max-width: 480px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
#footer {
  background: var(--black-2);
  border-top: 1px solid var(--white-20);
  padding: 72px 60px 36px;
  position: relative; z-index: 2;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid var(--white-20); margin-bottom: 36px;
}
.footer-brand .nav-logo { margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 0.86rem; color: var(--white-60); line-height: 1.85; max-width: 270px; margin-bottom: 26px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--white-20);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-60); font-size: 0.82rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 0.86rem; color: var(--white-60); transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; font-size: 0.86rem; color: var(--white-60); }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: var(--white-60); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 0.76rem; color: var(--white-60);
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px;
  z-index: 9500;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover { transform: scale(1.1); }
.wa-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--black-2); color: var(--white);
  font-size: 0.76rem; padding: 7px 13px; border-radius: 4px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; border: 1px solid var(--white-20);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn  { from{opacity:0}to{opacity:1} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 52vh; min-height: 380px;
  position: relative; display: flex; align-items: flex-end; padding: 56px 60px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 18%, rgba(8,8,8,0.5));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; line-height: 1; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white-60); margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: var(--white-20); }

/* ── SWIPER PAGINATION ── */
.swiper-pagination-bullet { background: var(--white-60) !important; opacity: 1 !important; width: 6px !important; height: 6px !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 22px !important; border-radius: 3px !important; }

/* ── Glass card ── */
.glass-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(10px); border: 1px solid var(--white-20); padding: 38px; }

/* z-index layering for all sections */
.hero, .about-preview, .services-section, .why-section,
.testimonials-section, .gallery-preview, .team-section,
.insta-strip, .cta-banner, #footer { position: relative; z-index: 2; }
