/* =============================================
   ROYAL HAIR STUDIO — Main Stylesheet
   Color: Black #0a0a0a, Gold #c9a84c, White #f5f5f5
   Fonts: Poppins (body), Montserrat (display)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --white: #f5f5f5;
  --white-2: #e0e0e0;
  --gray: #888888;
  --card-bg: rgba(255,255,255,0.04);
  --glass: rgba(201,168,76,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Light theme */
[data-theme="light"] {
  --black: #f5f5f5;
  --black-2: #ebebeb;
  --black-3: #e0e0e0;
  --white: #111111;
  --white-2: #222222;
  --gray: #555555;
  --card-bg: rgba(0,0,0,0.05);
  --glass: rgba(201,168,76,0.12);
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }

.gold { color: var(--gold); }
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1.2rem; }
.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
}

/* ---- Layout ---- */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
section { padding: 96px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(245,245,245,0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-crown {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-2);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: all var(--transition);
}
.theme-toggle:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  padding: 24px 5% 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-top: 1px solid rgba(201,168,76,0.2);
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--transition);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
[data-theme="light"] .mobile-menu { background: rgba(245,245,245,0.97); }

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black-3) 0%, var(--black) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--gray); font-size: 1.05rem; }

/* ---- Section Divider ---- */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 40px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ---- Cards ---- */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201,168,76,0.1);
}

/* ---- Glassmorphism Panel ---- */
.glass-panel {
  background: var(--glass);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  padding: 32px;
}

/* ---- Footer ---- */
footer {
  background: var(--black-3);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray);
  font-size: 0.82rem;
}

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  font-size: 1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ---- Gold text shimmer ---- */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

/* =========================================
   HOME PAGE
   ========================================= */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeIn 1s ease both;
}
.hero-badge i { font-size: 0.7rem; animation: goldPulse 2s infinite; border-radius: 50%; }
.hero h1 {
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(245,245,245,0.75);
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.35s ease both;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeUp 0.9s 0.65s ease both;
}
.hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.hero-stat span { font-size: 0.82rem; color: rgba(245,245,245,0.55); }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,245,245,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s ease both;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: float 2s ease-in-out infinite;
}

/* Featured Hairstyles */
.featured { background: var(--black-2); }
.featured-header { text-align: center; margin-bottom: 56px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.style-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.style-card img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.style-card:hover img { transform: scale(1.08); }
.style-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.style-card h3 { color: #fff; margin-bottom: 4px; }
.style-card span { color: var(--gold); font-size: 0.82rem; font-weight: 500; }
.style-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Testimonials */
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.08);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}
.author-info span { font-size: 0.78rem; color: var(--gray); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--black-3) 0%, rgba(201,168,76,0.07) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--gray); margin-bottom: 32px; }

/* =========================================
   ABOUT PAGE
   ========================================= */

/* Intro split */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-intro-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  animation: float 3s ease-in-out infinite;
}
.about-badge strong { font-size: 1.6rem; line-height: 1; }
.about-badge span { font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; }

.about-text .section-subtitle { max-width: 100%; }
.about-text p { color: var(--gray); margin-bottom: 16px; }

/* Mission / Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.mv-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 28px;
}
.mv-card h3 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mv-card p { color: var(--gray); font-size: 0.88rem; }

/* Team */
.team-section { background: var(--black-2); text-align: center; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.4); }
.team-card-img {
  position: relative;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-card-overlay { opacity: 1; }
.team-card-info { padding: 24px; }
.team-card-info h3 { margin-bottom: 4px; }
.team-card-info span { color: var(--gold); font-size: 0.82rem; }

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  background: var(--glass);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: all var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--black);
}
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 0.85rem; }

/* =========================================
   SERVICES PAGE
   ========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 24px 60px rgba(201,168,76,0.12);
}
.service-img {
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-price-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.4);
}
.service-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { color: var(--gray); font-size: 0.88rem; flex: 1; margin-bottom: 20px; }
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.service-duration {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray);
  font-size: 0.8rem;
}
.service-duration i { color: var(--gold); }

/* =========================================
   CONTACT PAGE
   ========================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
  background: rgba(0,0,0,0.04);
  color: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.info-card:hover { border-color: rgba(201,168,76,0.35); }
.info-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.info-card h4 { font-size: 0.85rem; color: var(--gold); margin-bottom: 4px; }
.info-card p { color: var(--gray); font-size: 0.85rem; }
.info-card a { color: var(--gray); transition: color var(--transition); }
.info-card a:hover { color: var(--gold); }

.contact-actions { display: flex; gap: 12px; margin-top: 4px; }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all var(--transition);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray);
}
.hours-row span:last-child { color: var(--gold); font-weight: 600; }
.hours-row.today { color: var(--white); }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  height: 240px;
  margin-top: 20px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(0%);
}
[data-theme="light"] .map-container iframe { filter: none; }

/* Form success/error */
.form-message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-top: 16px;
  display: none;
}
.form-message.success {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  display: block;
}
.form-message.error {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  color: #ff5050;
  display: block;
}

/* =========================================
   RESPONSIVE — COMPREHENSIVE MOBILE-FIRST
   ========================================= */

/* ---- Tablet: 1024px and below ---- */
@media (max-width: 1024px) {

  /* Layout */
  .container { width: 92%; }

  /* Navbar */
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 0.8rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Home */
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* About */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* About stats row */
  .about-intro { gap: 48px; }
}

/* ---- Small tablet / Large phone: 768px and below ---- */
@media (max-width: 768px) {

  /* Base */
  html { font-size: 15px; }
  section { padding: 60px 0; }
  .container { width: 94%; }

  /* ---- NAVBAR ---- */
  .nav-links { display: none; }
  .nav-actions .btn:not(.hamburger) { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 4%; height: 64px; }
  .nav-logo-text { font-size: 1rem; }

  /* ---- PAGE HERO ---- */
  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .page-hero p { font-size: 0.92rem; padding: 0 8px; }

  /* ---- HOME HERO ---- */
  .hero { min-height: 100svh; align-items: flex-end; padding-bottom: 80px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  .hero p { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.7rem; padding: 5px 14px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-stats { gap: 20px; margin-top: 40px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.6rem; }
  .hero-stat span { font-size: 0.75rem; }
  .hero-scroll { display: none; }

  /* ---- SECTION HEADINGS ---- */
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 0.9rem; }

  /* ---- FEATURED HAIRSTYLES ---- */
  .featured-header { margin-bottom: 36px; }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Remove the tall span on mobile */
  .featured-grid .style-card:nth-child(2) {
    grid-row: auto;
  }
  .featured-grid .style-card:nth-child(2) img {
    aspect-ratio: 3/4;
    height: auto;
  }
  .style-card img { aspect-ratio: 4/3; }

  /* ---- TESTIMONIALS ---- */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; }

  /* ---- CTA BANNER ---- */
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-banner > .container > div { flex-direction: column; align-items: center; }
  .cta-banner .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ---- ABOUT INTRO ---- */
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-img::before { display: none; }
  .about-intro-img img { aspect-ratio: 16/10; }
  .about-badge {
    right: 16px; bottom: 16px;
    width: 90px; height: 90px;
  }
  .about-badge strong { font-size: 1.3rem; }
  .mission-vision { grid-template-columns: 1fr; gap: 12px; }

  /* ---- ABOUT STATS ROW ---- */
  .about-intro + section > .container > div,
  section > .container > div[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ---- TEAM ---- */
  .team-section { text-align: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-card-info { padding: 16px; }
  .team-card-info h3 { font-size: 1rem; }

  /* ---- WHY CHOOSE US ---- */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 24px 16px; }
  .why-icon { width: 52px; height: 52px; font-size: 1.2rem; }

  /* ---- SERVICES ---- */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-body { padding: 20px; }
  .service-price-badge { font-size: 0.88rem; }

  /* ---- CONTACT ---- */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-actions { flex-direction: column; gap: 10px; }
  .btn-call, .btn-whatsapp { justify-content: center; text-align: center; width: 100%; }

  /* Contact quick-action cards (3-col on desktop) */
  section[style*="background:var(--black-2)"] > .container > div[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* ---- FOOTER ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px 0; }

  /* ---- GLASS PANELS (stats) ---- */
  .glass-panel { padding: 20px; }

  /* ---- SCROLL TOP ---- */
  .scroll-top { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 0.85rem; }

  /* ---- PRICE TABLE ---- */
  .glass-panel table { font-size: 0.85rem; }
  .glass-panel table td,
  .glass-panel table th { padding: 10px 10px; }
}

/* ---- Mobile: 480px and below ---- */
@media (max-width: 480px) {

  html { font-size: 14px; }
  section { padding: 48px 0; }
  .container { width: 96%; }

  /* Navbar */
  .navbar { padding: 0 4%; height: 60px; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-logo-crown { width: 30px; height: 30px; font-size: 0.9rem; }

  /* Page hero */
  .page-hero { padding: 100px 0 44px; }
  .page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Hero */
  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero p { font-size: 0.88rem; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.4rem; }

  /* Headings */
  h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  h3 { font-size: 1.05rem; }

  /* Buttons */
  .btn { padding: 12px 24px; font-size: 0.82rem; }
  .btn-sm { padding: 9px 18px; font-size: 0.78rem; }

  /* Featured */
  .style-card-overlay { padding: 16px; }
  .style-card h3 { font-size: 1rem; }

  /* Testimonials */
  .testimonial-card { padding: 20px 16px; }
  .testimonial-quote { font-size: 2.2rem; }
  .author-avatar { width: 40px; height: 40px; }

  /* About */
  .about-intro-img img { aspect-ratio: 4/3; border-radius: 12px; }
  .about-badge { width: 80px; height: 80px; right: 10px; bottom: 10px; }
  .about-badge strong { font-size: 1.1rem; }
  .mv-card { padding: 20px 16px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 16px; max-width: 400px; margin: 40px auto 0; }
  .team-card-img img { aspect-ratio: 4/3; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 20px 16px; display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .why-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1.1rem; }

  /* Services */
  .service-body h3 { font-size: 1.05rem; }
  .service-img img { aspect-ratio: 16/9; }

  /* Contact */
  .contact-form-card { padding: 20px 16px; }
  .contact-form-card h2 { font-size: 1.3rem; }
  .info-card { padding: 16px; gap: 12px; }
  .info-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
  .hours-row { font-size: 0.78rem; }
  .map-container { height: 200px; margin-top: 14px; }

  /* Quick action cards on contact */
  .contact-info-side { gap: 14px; }

  /* Stats grid (about page inline style override) */
  section .container div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Footer */
  .social-btn { width: 36px; height: 36px; font-size: 0.82rem; }
  .footer-socials { gap: 8px; }
  .footer-col ul { gap: 8px; }
  .footer-contact-item { font-size: 0.82rem; }

  /* Price table */
  .glass-panel { padding: 16px 12px; }
  .glass-panel table { font-size: 0.78rem; }
  .glass-panel table td,
  .glass-panel table th { padding: 8px 6px; }

  /* FAQ cards */
  .card[style*="padding:24px"] { padding: 16px !important; }

  /* Scroll top */
  .scroll-top { bottom: 16px; right: 12px; }

  /* Mobile menu */
  .mobile-menu { padding: 20px 4% 28px; gap: 16px; }
  .mobile-menu a { font-size: 1rem; }
}

/* ---- Very small: 360px and below ---- */
@media (max-width: 360px) {

  html { font-size: 13px; }
  .container { width: 96%; }

  .hero h1 { font-size: 1.7rem; }
  .hero-stats { flex-direction: column; gap: 12px; }

  .why-card { padding: 16px 12px; }
  .why-icon { width: 42px; height: 42px; }

  .contact-form-card { padding: 16px 12px; }
  .glass-panel table { font-size: 0.72rem; }

  .nav-logo-text { display: none; }
}

/* ---- Accessibility: reduce motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { transform: none !important; }
  .about-badge { animation: none !important; }
  .hero-scroll-line { animation: none !important; }
}

/* ---- Touch device improvements ---- */
@media (hover: none) and (pointer: coarse) {
  /* Larger tap targets */
  .btn { min-height: 48px; }
  .social-btn { width: 44px; height: 44px; }
  .nav-links a::after { display: none; }

  /* Always show team overlay info on mobile */
  .team-card-overlay { opacity: 1; }

  /* Remove hover transforms that feel wrong on touch */
  .service-card:hover,
  .why-card:hover,
  .card:hover { transform: none; }
  .service-card:hover .service-img img,
  .style-card:hover img,
  .team-card:hover .team-card-img img { transform: none; }
}

/* ---- Landscape mobile ---- */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: 100svh; padding-top: 80px; padding-bottom: 40px; align-items: center; }
  .hero h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-stats { margin-top: 24px; }
  .page-hero { padding: 90px 0 40px; }
}