/* ===========================
   NOVA BEAUTY BAR — style.css
   White/Black/Yellow Premium Theme
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #8B6914;
  --gold-mid: #B8923A;
  --black: #111111;
  --black-mid: #1a1a1a;
  --black-soft: #2a2a2a;
  --white: #ffffff;
  --off-white: #fafafa;
  --cream: #FEFDF9;
  --text: #111111;
  --text-mid: #333333;
  --text-light: #555555;
  --border: rgba(212,175,55,0.20);
  --border-soft: rgba(0,0,0,0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 70px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 18px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--white); color: var(--text); overflow-x: hidden; max-width: 100vw; }
section { scroll-margin-top: 80px; }
::selection { background: var(--gold); color: var(--black); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===========================
   LOADER
   =========================== */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99990;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-svg { width: 260px; height: auto; animation: loaderPulse 1.5s ease-in-out infinite; }
.loader-bar { width: 240px; height: 2px; background: rgba(255,255,255,0.08); margin: 1.5rem auto 0; overflow: hidden; border-radius: 2px; }
.loader-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); animation: loadBar 2.2s var(--ease) forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes loaderPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 5%;
  box-shadow: 0 1px 0 rgba(212,175,55,0.15), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-logo-svg { width: 200px; height: 52px; transition: opacity 0.3s; }
/* On transparent nav (hero), main text white */
.nav:not(.scrolled) .logo-text-main { fill: #ffffff; }
.nav:not(.scrolled) .logo-text-sub { fill: #D4AF37; }
/* On scrolled nav, main text black */
.nav.scrolled .logo-text-main { fill: #111111; }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.92);
  transition: color 0.3s; position: relative; padding-bottom: 3px;
}
.nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 0.7rem 1.8rem;
  border-radius: var(--radius); cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .hamburger span { background: var(--black); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
  background: var(--black); z-index: 99995; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: right 0.5s var(--ease-out);
}
.mobile-menu.open { right: 0; }
.mob-close {
  position: absolute; top: 1.5rem; right: 5%;
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; transition: all 0.3s;
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.mob-close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.2rem 0; overflow: hidden; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  font-style: italic; color: rgba(255,255,255,0.9); letter-spacing: 0.03em;
  display: inline-block; transform: translateY(100%);
  transition: transform 0.5s var(--ease-out), color 0.3s;
}
@media (max-width: 768px) {
  .mobile-menu a { font-size: 1.7rem; }
  .mobile-menu li { margin: 0.7rem 0; }
}
.mobile-menu.open a { transform: translateY(0); }
.mobile-menu.open li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.open li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.open li:nth-child(4) a { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(5) a { transition-delay: 0.3s; }
.mobile-menu.open li:nth-child(6) a { transition-delay: 0.35s; }
.mobile-menu.open li:nth-child(7) a { transition-delay: 0.4s; }
.mobile-menu a:hover { color: var(--gold); }
.mob-cta {
  font-family: var(--font-body) !important; font-size: 0.9rem !important;
  font-style: normal !important; font-weight: 700 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important;
  color: var(--black) !important; background: var(--gold) !important;
  padding: 0.8rem 2.5rem !important; border-radius: var(--radius) !important;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: none; border-radius: var(--radius);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,175,55,0.4); }
.btn-primary.full { width: 100%; text-align: center; }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1rem 2.6rem; border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius); transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold-mid); display: block; margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: var(--black); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-sub { font-size: 1.05rem; font-weight: 500; line-height: 1.8; color: var(--text-light); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal { transform: translateY(28px); }
.reveal-up { transform: translateY(48px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img { position: absolute; inset: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.78) 0%, rgba(10,8,6,0.60) 50%, rgba(20,16,12,0.70) 100%);
}

/* Hero particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; color: var(--gold); opacity: 0;
  font-size: 1rem; animation: particleFloat 8s ease-in-out infinite;
}
.p1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 0.8rem; }
.p2 { top: 25%; right: 12%; animation-delay: 1.5s; font-size: 1.2rem; }
.p3 { top: 65%; left: 8%; animation-delay: 3s; font-size: 0.7rem; }
.p4 { top: 70%; right: 10%; animation-delay: 4.5s; font-size: 1rem; }
.p5 { top: 40%; left: 50%; animation-delay: 2s; font-size: 0.6rem; }
@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-30px) scale(1.1); }
  80% { opacity: 0.5; }
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 5%; max-width: 980px;
}
.hero-tagline {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; display: block;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.8rem, 10vw, 8.5rem);
  font-weight: 800; line-height: 1.0; color: var(--white); margin-bottom: 1.8rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title .line { display: block; animation: lineReveal 1.2s var(--ease-out) both; }
.hero-title .line:nth-child(2) { animation-delay: 0.18s; }
.hero-title .italic { font-style: italic; color: var(--gold-light); }
@keyframes lineReveal { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-sub { font-size: 1.12rem; font-weight: 500; line-height: 1.85; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  margin: 2.5rem 5% 5rem; padding: 1.8rem 3rem;
}
.stat { flex: 1; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat > span { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat p { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.4rem; }
.stat-divider { width: 1px; height: 45px; background: rgba(212,175,55,0.25); flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.3; } }

/* ===========================
   ABOUT
   =========================== */
.about { padding: 8rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; padding-bottom: 2.5rem; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--black); color: var(--gold);
  padding: 0.6rem 1.3rem; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.about-img-secondary {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 52%; aspect-ratio: 1; border-radius: var(--radius-lg);
  overflow: hidden; border: 4px solid var(--white); box-shadow: var(--shadow);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-text { padding-left: 1rem; }
.about-body { font-size: 1.02rem; font-weight: 500; line-height: 1.9; color: var(--text-light); margin-bottom: 1.4rem; }
.about-features { margin: 2.2rem 0; display: flex; flex-direction: column; gap: 1.4rem; }
.feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.feature strong { font-size: 0.95rem; font-weight: 700; color: var(--black); display: block; margin-bottom: 0.25rem; }
.feature p { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }

/* ===========================
   SERVICES
   =========================== */
.services { padding: 8rem 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--border-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  position: relative;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,0.10); }
.service-card.featured { border-color: var(--gold); border-width: 2px; }
.featured-tag {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 20px;
}
.service-img { height: 210px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.07); }
.service-body { padding: 1.8rem; }
.service-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(0,0,0,0.06); line-height: 1; margin-bottom: 0.5rem;
}
.service-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--black); margin-bottom: 0.7rem; }
.service-body p { font-size: 0.92rem; font-weight: 500; line-height: 1.75; color: var(--text-light); margin-bottom: 1rem; }
.service-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 1rem; }
.service-link { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.service-link:hover { gap: 1rem; color: var(--gold-mid); }

/* ===========================
   GALLERY
   =========================== */
.gallery { padding: 8rem 0; background: var(--white); }
.gallery-tabs { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.tab-btn {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 0.7rem 1.8rem;
  background: transparent; border: 2px solid rgba(0,0,0,0.12);
  border-radius: 30px; cursor: pointer; color: var(--text-light); transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px; gap: 1rem; margin-top: 1.5rem; padding: 0 5%;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; position: relative; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem 1.8rem; opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.gallery-overlay p { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 1rem; padding-top: 0.5rem; }
.video-card { background: var(--off-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-soft); }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-info { padding: 1.2rem 1.5rem; }
.video-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.video-info p { font-size: 0.85rem; font-weight: 500; color: var(--text-light); line-height: 1.6; }

/* ===========================
   TECHNOLOGY
   =========================== */
.technology { padding: 8rem 0; background: var(--black); }
.technology .section-title { color: var(--white); }
.technology .section-title em { color: var(--gold-light); }
.technology .section-sub { color: rgba(255,255,255,0.55); }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(212,175,55,0.12); }
.tech-card {
  padding: 3rem 2rem; text-align: center; background: var(--black);
  border-right: 1px solid rgba(212,175,55,0.10);
  transition: background 0.3s; position: relative; overflow: hidden;
}
.tech-card:last-child { border-right: none; }
.tech-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gold); transition: width 0.4s var(--ease); }
.tech-card:hover { background: #1a1a1a; }
.tech-card:hover::after { width: 65%; }
.tech-icon { font-size: 2.6rem; display: block; margin-bottom: 1.5rem; }
.tech-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.8rem; }
.tech-card p { font-size: 0.9rem; font-weight: 400; line-height: 1.75; color: rgba(255,255,255,0.45); }

/* ===========================
   TEAM
   =========================== */
.team { padding: 8rem 0; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
  border: 1.5px solid var(--border-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(0,0,0,0.10); }
.team-photo { height: 300px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 2rem; }
.team-info h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; }
.team-role { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.9rem; }
.team-bio { font-size: 0.92rem; font-weight: 500; line-height: 1.75; color: var(--text-light); margin-bottom: 1.2rem; }
.team-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.team-tags span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); background: rgba(212,175,55,0.10); padding: 0.3rem 0.85rem; border-radius: 20px; border: 1px solid rgba(212,175,55,0.22); }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { padding: 8rem 0; background: var(--white); position: relative; overflow: hidden; }
.testimonials::before { content: '"'; font-family: var(--font-display); font-size: 30rem; color: rgba(212,175,55,0.04); position: absolute; top: -5rem; left: -2rem; line-height: 1; pointer-events: none; }
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; align-items: stretch; transition: transform 0.6s var(--ease-out); }
.testimonial-card {
  min-width: 100%;
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1.4rem; }
.testimonial-card p { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; line-height: 1.85; color: var(--text-mid); margin-bottom: 2rem; font-weight: 400; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.testimonial-author strong { font-size: 0.95rem; font-weight: 700; color: var(--black); display: block; }
.testimonial-author span { font-size: 0.78rem; font-weight: 500; color: var(--text-light); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 2.5rem; }
.slider-btn {
  background: var(--white); border: 2px solid rgba(0,0,0,0.12); color: var(--gold-dark);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.slider-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.06); }
.slider-dots { display: flex; gap: 0.5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.15); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ===========================
   BOOKING
   =========================== */
.booking { padding: 8rem 0; background: var(--cream); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.booking-info .section-title { color: var(--black); }
.booking-intro { font-size: 1.02rem; font-weight: 500; line-height: 1.85; color: var(--text-light); margin-bottom: 2rem; }
.booking-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.booking-detail { display: flex; align-items: flex-start; gap: 1rem; }
.detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.booking-detail strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 0.2rem; }
.booking-detail p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); }
.booking-detail a { color: var(--gold-dark); font-weight: 600; }
.booking-detail a:hover { color: var(--gold-mid); }

.payment-section { background: var(--white); border: 1.5px solid var(--border-soft); border-radius: var(--radius-lg); padding: 1.5rem; }
.payment-section h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black); margin-bottom: 1rem; }
.payment-methods { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.payment-badge { background: var(--black); color: var(--gold); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; padding: 0.45rem 0.9rem; border-radius: var(--radius); }
.payment-note { font-size: 0.78rem; font-weight: 600; color: var(--text-light); }

.booking-form { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: 0 20px 70px rgba(0,0,0,0.08); border: 1.5px solid var(--border-soft); }
.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 0.94rem; font-weight: 500; color: var(--black);
  background: var(--off-white); border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius);
  padding: 0.85rem 1rem; outline: none; width: 100%; transition: all 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); background: var(--white);
}
.form-group textarea { resize: vertical; }
.pay-options { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.pay-opt { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.pay-opt input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }
.pay-opt span { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.form-note { font-size: 0.75rem; font-weight: 500; color: var(--text-light); text-align: center; margin-top: 0.4rem; }
.form-success { display: none; text-align: center; padding: 2.5rem; }
.form-success.show { display: block; animation: fadeIn 0.5s var(--ease-out); }
.success-icon { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 1rem; animation: spin 0.8s linear; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.form-success h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--black); margin-bottom: 0.8rem; }
.form-success p { font-size: 0.95rem; font-weight: 500; color: var(--text-light); line-height: 1.7; }

/* ===========================
   CONTACT & MAP
   =========================== */
.contact-section { padding: 8rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border-soft); }
.map-container iframe { display: block; }
.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-item strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 0.3rem; }
.contact-item p { font-size: 0.96rem; font-weight: 500; color: var(--text-light); line-height: 1.65; }
.contact-item a { color: var(--gold-dark); font-weight: 600; transition: color 0.3s; }
.contact-item a:hover { color: var(--gold-mid); }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--black); padding: 5rem 0 2rem; border-top: 1px solid rgba(212,175,55,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo-svg { width: 200px; height: 52px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; font-weight: 400; line-height: 1.85; color: rgba(255,255,255,0.38); margin-bottom: 1.8rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 42px; height: 42px; border: 1.5px solid rgba(212,175,55,0.22);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38); transition: all 0.3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 1.2rem; }
.newsletter-form { display: flex; border: 1.5px solid rgba(212,175,55,0.2); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 0.88rem; font-weight: 400; color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.22); }
.newsletter-form button { background: var(--gold); color: var(--black); border: none; padding: 0.75rem 1.2rem; cursor: pointer; font-size: 0.9rem; font-weight: 700; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-payment p { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 0.7rem; }
.fp-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fp-badges span { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); font-size: 0.68rem; font-weight: 700; padding: 0.35rem 0.8rem; border-radius: 3px; border: 1px solid rgba(255,255,255,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom > p { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.22); }
.byrock-credit { display: flex; align-items: center; gap: 0.7rem; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.3); }
.byrock-logo svg { width: 145px; height: 34px; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.22); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* Hide floating buttons when mobile menu is open */
.mobile-menu.open ~ .whatsapp-float,
.mobile-menu.open ~ .chatbot-launcher,
.mobile-menu.open ~ .chatbot-window {
  display: none !important;
}
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 1.8rem; z-index: 9000;
  width: 62px; height: 62px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waBounce 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 34px; height: 34px; }
.whatsapp-float:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 12px 38px rgba(37,211,102,0.55); animation: none; }
.wa-tooltip {
  position: absolute; right: 74px; background: var(--black); color: var(--white);
  font-size: 0.78rem; font-weight: 700; padding: 0.45rem 1rem; border-radius: var(--radius);
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--black); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: waPulse 2s ease-out infinite; }
@keyframes waBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===========================
   AI CHATBOT — PREMIUM
   =========================== */
.chatbot-launcher {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 9001;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}
.chatbot-launcher svg { width: 26px; height: 26px; color: var(--gold); }
.chatbot-launcher:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(0,0,0,0.4), 0 0 0 4px rgba(212,175,55,0.15); }
.chat-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 2px 7px; border-radius: 20px; border: 2px solid var(--white);
}
.chatbot-window {
  position: fixed; bottom: 5.8rem; right: 1.8rem; z-index: 9002;
  width: 390px;
  height: 580px;
  max-height: calc(100vh - 7rem);
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(212,175,55,0.12);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.95); opacity: 0;
  pointer-events: none; transition: all 0.35s var(--ease-out);
  overflow: hidden;
}
.chatbot-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

/* Premium header with gradient */
.chatbot-header {
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  position: relative; flex-shrink: 0;
}
.chatbot-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.chatbot-back {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7); width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; display: none; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
}
.chatbot-back:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); color: var(--gold); }
.chatbot-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--black); font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.chatbot-header-text { flex: 1; min-width: 0; }
.chatbot-header strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.online-dot { font-size: 0.7rem; font-weight: 500; color: #4ade80; }
.chatbot-close {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7);
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.9rem;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chatbot-close:hover { background: rgba(255,80,80,0.25); border-color: rgba(255,80,80,0.5); color: #ff6b6b; transform: rotate(90deg); }

.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 1.3rem; display: flex; flex-direction: column; gap: 1rem;
  background: #f8f8f6;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.3); }
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.msg-bubble {
  max-width: 85%; padding: 0.9rem 1.15rem; border-radius: 16px;
  font-size: 0.88rem; font-weight: 500; line-height: 1.6;
}
.chat-msg.bot .msg-bubble {
  background: var(--white); color: var(--text); border: 1.5px solid rgba(212,175,55,0.15);
  border-bottom-left-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.chat-msg.user .msg-bubble { background: var(--black); color: var(--white); border-bottom-right-radius: 4px; }
.msg-bubble strong { color: var(--gold-dark); font-weight: 700; }
.msg-bubble a { color: var(--gold-dark); font-weight: 700; }

.chat-suggestions { display: flex; flex-direction: column; gap: 0.45rem; }
.suggestion-btn {
  background: var(--white); border: 1.5px solid rgba(212,175,55,0.18); border-radius: 22px;
  padding: 0.65rem 1.1rem; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer; text-align: left; transition: all 0.2s;
}
.suggestion-btn:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(212,175,55,0.04); transform: translateX(3px); }

.typing-dots { display: flex; gap: 4px; align-items: center; padding: 0.9rem 1.15rem; }
.typing-dots span { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: typing 1.2s ease-in-out infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100% { transform: scale(0.6); opacity: 0.4; } 40% { transform: scale(1); opacity: 1; } }

.chatbot-input {
  display: flex; border-top: 1.5px solid rgba(212,175,55,0.12); background: var(--white);
}
.chatbot-input input {
  flex: 1; border: none; padding: 1rem 1.2rem; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 500; outline: none; color: var(--black); background: transparent;
}
.chatbot-input input::placeholder { color: rgba(0,0,0,0.28); }
#chatSend {
  background: var(--gold); border: none; padding: 0 1.3rem; cursor: pointer;
  color: var(--black); transition: background 0.2s;
}
#chatSend:hover { background: var(--gold-light); }
#chatSend svg { width: 20px; height: 20px; display: block; }

.chatbot-back {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chatbot-back:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); color: var(--gold); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .video-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { max-width: 480px; margin: 0 auto; }
  .about-text { padding-left: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-item.tall { grid-row: span 1; height: 220px; }
  .gallery-item.wide { grid-column: span 2; }
  .nav-links { gap: 1.3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-stats { flex-direction: column; padding: 1.8rem; gap: 1.2rem; margin: 2rem 5% 4rem; }
  .stat-divider { width: 60px; height: 1.5px; }
  .services-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .byrock-credit { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; bottom: 5.2rem; }
  section { padding: 5rem 0; }
  .about, .services, .gallery, .team, .testimonials, .booking, .contact-section { padding: 5rem 0; }
  .technology { padding: 5rem 0; }
  /* Hero sub text — hide line break on mobile */
  .hero-sub br { display: none; }
  /* About secondary image overflow fix */
  .about-img-secondary { right: -1rem; bottom: -1.5rem; }
  /* Booking form padding */
  .booking-form { padding: 1.8rem 1.2rem; }
  /* Section title size on small screens */
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  /* Testimonials card padding */
  .testimonials::before { font-size: 16rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item, .gallery-item.tall { height: 200px; }
  .gallery-item.wide { grid-column: span 1; height: 200px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 0.5rem; }
  .payment-methods { gap: 0.4rem; }
  .hero-stats { margin: 1.5rem 1rem 0; }
  .whatsapp-float { bottom: 6.2rem; right: 1rem; width: 54px; height: 54px; }
  .chatbot-launcher { bottom: 1.2rem; right: 1rem; width: 54px; height: 54px; }
  /* About visual overflow fix on tiny screens */
  .about-img-secondary { width: 44%; right: -0.5rem; bottom: -1rem; }
  /* Booking info padding */
  .booking-info { text-align: center; }
  /* Nav logo sizing */
  .nav-logo-svg { width: 160px; }
  /* Footer bottom credit wrap */
  .byrock-logo svg { width: 120px; }
  /* Chatbot window full width on very small screens */
  .chatbot-window { width: calc(100vw - 1.5rem); right: 0.75rem; }
  /* Mobile menu font size reduction */
  .mobile-menu a { font-size: 2rem; }
  /* Ba slider height on tiny screens */
  .ba-slider { height: 220px; }
  /* Contact grid gap */
  .contact-grid { gap: 2rem; }
}

/* ============================================================
   NOVA BEAUTY BAR — GLAMOUR & LUXURY ENHANCEMENTS
   ============================================================ */

/* ---- Global Gold Shimmer Keyframe ---- */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(212,175,55,0.25), 0 0 30px rgba(212,175,55,0.10); }
  50%       { box-shadow: 0 0 24px rgba(212,175,55,0.50), 0 0 60px rgba(212,175,55,0.20); }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
@keyframes borderShimmer {
  0%   { border-color: rgba(212,175,55,0.15); }
  50%  { border-color: rgba(212,175,55,0.55); }
  100% { border-color: rgba(212,175,55,0.15); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Cursor: gold ring on interactive elements ---- */
a, button, .service-card, .team-card, .gallery-item, .tab-btn { cursor: pointer; }

/* ============================================================
   NAVIGATION — Glamour
   ============================================================ */
.nav-cta {
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transition: left 0.5s var(--ease);
}
.nav-cta:hover::before { left: 150%; }

/* ============================================================
   HERO — Luxury Enhancements
   ============================================================ */
.hero-bg-img img {
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg-img img {
  transform: scale(1.04);
}

/* Animated gold border on hero tagline */
.hero-tagline {
  position: relative; display: inline-block;
  padding-bottom: 0.6rem;
}
.hero-tagline::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 2.5s linear infinite;
  background-size: 400px 100%;
}

/* Hero title shimmer on italic */
.hero-title .italic {
  background: linear-gradient(90deg, #F0D060, #D4AF37, #8B6914, #D4AF37, #F0D060);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Enhanced particles — more glam */
.p1 { font-size: 1rem; animation-duration: 7s; }
.p2 { font-size: 1.4rem; animation-duration: 9s; }
.p3 { font-size: 0.85rem; animation-duration: 6s; }
.p4 { font-size: 1.1rem; animation-duration: 8s; }
.p5 { font-size: 0.7rem; animation-duration: 5s; }

/* Hero stats — glowing on hover */
.hero-stats {
  transition: border-color 0.5s, box-shadow 0.5s;
}
.hero-stats:hover {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 40px rgba(212,175,55,0.15);
}
.stat:hover .stat-num {
  animation: goldGlow 1.5s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* Buttons — shine sweep */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.55s var(--ease);
}
.btn-primary:hover::before { left: 150%; }

/* ============================================================
   SECTION LABELS — Animated underline
   ============================================================ */
.section-label {
  position: relative; display: inline-block;
}
.section-label::before {
  content: '✦';
  margin-right: 0.5rem;
  animation: glowPulse 2s ease-in-out infinite;
  color: var(--gold);
}

/* ============================================================
   ABOUT — Luxury Image Effects
   ============================================================ */
.about-img-main {
  transition: box-shadow 0.5s var(--ease);
}
.about-img-main:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 3px rgba(212,175,55,0.3);
}
.about-img-main img {
  transition: transform 0.9s var(--ease);
}
.about-img-main:hover img {
  transform: scale(1.04);
}
.about-img-secondary {
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  animation: floatUpDown 5s ease-in-out infinite;
}
.about-img-secondary:hover {
  animation: none;
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Gold accent line beside about heading */
.about-text .section-title {
  position: relative; padding-left: 1.2rem;
}
.about-text .section-title::before {
  content: '';
  position: absolute; left: 0; top: 0.3rem; bottom: 0.3rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

/* Feature items — hover lift */
.feature {
  padding: 1rem; border-radius: var(--radius-lg);
  transition: background 0.3s, transform 0.3s;
  border: 1px solid transparent;
}
.feature:hover {
  background: rgba(212,175,55,0.05);
  border-color: rgba(212,175,55,0.18);
  transform: translateX(6px);
}

/* ============================================================
   SERVICES — Luxury Cards
   ============================================================ */
.service-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover::before {
  transform: scaleX(1);
  animation: shimmer 2s linear infinite;
}
.service-card:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(212,175,55,0.2);
}
.service-card.featured::before {
  transform: scaleX(1);
}

/* Service link arrow animation */
.service-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.service-link:hover::after {
  transform: translateX(6px);
}

/* Service number — gold on hover */
.service-card:hover .service-num {
  color: rgba(212,175,55,0.15);
}

/* ============================================================
   GALLERY — Luxury Overlays
   ============================================================ */
.gallery-item {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.4s, transform 0.4s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 0px solid var(--gold);
  transition: border-width 0.3s, opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.gallery-item:hover::after {
  border-width: 2px;
  opacity: 1;
}
.gallery-overlay {
  background: linear-gradient(to top, rgba(10,8,4,0.88) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.gallery-overlay span {
  letter-spacing: 0.35em;
}

/* ============================================================
   TECHNOLOGY — Enhanced Dark Glamour
   ============================================================ */
.tech-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.tech-card:hover::before { opacity: 1; }

.tech-icon {
  transition: transform 0.4s var(--ease), filter 0.4s;
}
.tech-card:hover .tech-icon {
  transform: scale(1.2) translateY(-4px);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.5));
}
.tech-card h3 {
  transition: color 0.3s, letter-spacing 0.3s;
}
.tech-card:hover h3 {
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Gold border animation on tech grid */
.tech-grid {
  animation: borderShimmer 4s ease-in-out infinite;
}

/* ============================================================
   TEAM — Glamour Cards
   ============================================================ */
.team-card {
  position: relative; overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  transition: height 0.45s var(--ease);
  z-index: 0;
}
.team-card:hover::before { height: 100%; }
.team-info { position: relative; z-index: 1; }

.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.team-card:hover .team-photo::after { opacity: 1; }
.team-photo { position: relative; }

.team-card:hover {
  box-shadow: 0 32px 70px rgba(0,0,0,0.13), 0 0 0 1.5px rgba(212,175,55,0.25);
}
.team-tags span {
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.team-tags span:hover {
  background: rgba(212,175,55,0.2);
  color: var(--gold-mid);
  transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS — Glamour
   ============================================================ */
.testimonial-card {
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s, transform 0.4s;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -1rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 8rem;
  color: rgba(212,175,55,0.08); line-height: 1;
  pointer-events: none; font-style: italic;
}
.testimonial-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.testimonial-card:hover::after { opacity: 1; }
.testimonial-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 0 1.5px rgba(212,175,55,0.2);
  transform: translateY(-4px);
}

.stars {
  background: linear-gradient(90deg, #D4AF37, #F0D060, #D4AF37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
  display: inline-block;
}

.author-avatar {
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-author:hover .author-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.35);
}

.slider-btn {
  position: relative; overflow: hidden;
}
.slider-btn::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.slider-btn:hover::before { opacity: 1; }

/* ============================================================
   BOOKING FORM — Luxury Feel
   ============================================================ */
.booking-form {
  position: relative; overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12), 0 4px 16px rgba(212,175,55,0.08);
}

/* ============================================================
   CONTACT — Map Glow
   ============================================================ */
.map-container {
  transition: box-shadow 0.4s;
}
.map-container:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.16), 0 0 0 2px rgba(212,175,55,0.25);
}
.contact-item {
  padding: 1rem; border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.contact-item:hover {
  background: rgba(212,175,55,0.04);
  border-color: rgba(212,175,55,0.15);
  transform: translateX(5px);
}

/* ============================================================
   FOOTER — Glamour
   ============================================================ */
.footer {
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmer 4s linear infinite;
  background-size: 400px 100%;
}
.social-link {
  position: relative; overflow: hidden;
}
.social-link::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at center, rgba(212,175,55,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s; transform: scale(0);
}
.social-link:hover::before { opacity: 1; transform: scale(1); }
.social-link svg { transition: transform 0.3s var(--ease); }
.social-link:hover svg { transform: scale(1.2); }

.newsletter-form {
  transition: box-shadow 0.3s, border-color 0.3s;
}
.newsletter-form:hover {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 20px rgba(212,175,55,0.1);
}

.footer-col a {
  position: relative; display: inline-block;
}
.footer-col a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.footer-col a:hover::after { width: 100%; }

/* ============================================================
   WHATSAPP — Enhanced
   ============================================================ */
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(#25D366, #128C7E, #25D366);
  z-index: -1; opacity: 0;
  transition: opacity 0.3s;
}
.whatsapp-float:hover::before { opacity: 1; }

/* ============================================================
   SCROLL ANIMATIONS — Stagger on children
   ============================================================ */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.19s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.26s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.33s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.40s; }

.team-grid .team-card:nth-child(1) { transition-delay: 0.05s; }
.team-grid .team-card:nth-child(2) { transition-delay: 0.15s; }
.team-grid .team-card:nth-child(3) { transition-delay: 0.25s; }

.tech-grid .tech-card:nth-child(1) { transition-delay: 0.05s; }
.tech-grid .tech-card:nth-child(2) { transition-delay: 0.12s; }
.tech-grid .tech-card:nth-child(3) { transition-delay: 0.19s; }
.tech-grid .tech-card:nth-child(4) { transition-delay: 0.26s; }

/* ============================================================
   LUXURY IMAGE OVERLAYS — Service cards
   ============================================================ */
.service-img {
  position: relative;
}
.service-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.25) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover .service-img::after { opacity: 1; }

/* ============================================================
   GOLD DIVIDER — Section separator accent
   ============================================================ */
.section-header::after {
  content: '';
  display: block;
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.2rem auto 0;
  border-radius: 2px;
  animation: shimmer 3s linear infinite;
  background-size: 200px 100%;
}

/* ============================================================
   LUXURY SCROLLBAR — Enhanced
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold), var(--gold-dark));
  border-radius: 4px;
}

/* ============================================================
   SELECTION — Gold
   ============================================================ */
::selection {
  background: var(--gold);
  color: var(--black);
  text-shadow: none;
}


/* ============================================================
   BEFORE & AFTER DRAG SLIDER
   ============================================================ */
.before-after {
  padding: 8rem 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.before-after::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.before-after .section-title { color: var(--white); }
.before-after .section-title em { color: var(--gold-light); }
.before-after .section-sub { color: rgba(255,255,255,0.5); }
.before-after .section-label { color: var(--gold); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.ba-card {
  background: #161616;
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.3);
  border-color: rgba(212,175,55,0.35);
}
.ba-tag {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.82);
  border: 1px solid rgba(212,175,55,0.45);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 1.1rem; border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* ---- Slider container ---- */
.ba-slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* After image — full width base layer */
.ba-after-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.ba-after-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Before image — clipped by clip-path, starts covering full width */
.ba-before-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-before-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: saturate(0.15) brightness(0.82) contrast(0.95);
}

/* Handle */
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 10;
  pointer-events: none;
}
.ba-handle-line {
  flex: 1; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  box-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.ba-handle-btn {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 0px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,175,55,0.7), 0 4px 16px rgba(0,0,0,0.5);
  color: var(--black);
}
.ba-handle-btn svg {
  width: 14px; height: 14px; stroke-width: 3;
  flex-shrink: 0;
}

/* Before / After labels */
.ba-label-before,
.ba-label-after {
  position: absolute; bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 12px;
  backdrop-filter: blur(4px); z-index: 8;
  pointer-events: none;
}
.ba-label-before {
  left: 0.9rem;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.55);
}
.ba-label-after {
  right: 0.9rem;
  color: var(--gold);
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(212,175,55,0.35);
}

.ba-cta { text-align: center; margin-top: 1rem; }

/* Hint animation on load */
@keyframes baHint {
  0%   { left: 50%; }
  30%  { left: 35%; }
  60%  { left: 65%; }
  100% { left: 50%; }
}
.ba-slider.hint .ba-handle { animation: baHintHandle 1.8s ease-in-out forwards; pointer-events: none; }
@keyframes baHintHandle {
  0%   { left: 50%; }
  35%  { left: 30%; }
  70%  { left: 68%; }
  100% { left: 50%; }
}

@media (max-width: 1100px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ba-grid { grid-template-columns: 1fr; } .ba-slider { height: 260px; } }