/* ============================================
   L'ARTISTE BARBERSHOP V2 - STYLESHEET
   Made by Isolyd (isolyd.com)
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #d4a843;
  --gold-light: #f0d078;
  --gold-dark: #9c7a2e;
  --gold-glow: rgba(212, 168, 67, 0.15);
  --black: #080808;
  --dark: #0e0e0e;
  --dark-card: #131313;
  --dark-card-hover: #1a1a1a;
  --dark-border: #1f1f1f;
  --white: #faf6ee;
  --pure-white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #b0b0b0;
  --gray-500: #6d6d6d;
  --gray-700: #3a3a3a;
  --font-heading: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.7;
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 162, 78, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--dark-border);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.8rem;
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  transition: opacity var(--transition);
}

.nav-logo-img:hover {
  opacity: 0.85;
}

/* Loader logo image */
.loader-logo-img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-300);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* nav-cta removed, replaced by nav-actions */

.nav-book-btn {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-book-btn::after {
  display: none !important;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 162, 78, 0.3);
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 120px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(200, 162, 78, 0.1);
  border: 1px solid rgba(200, 162, 78, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-border);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Services Section ---------- */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: rgba(200, 162, 78, 0.3);
  transform: translateY(-4px);
  background: var(--dark-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 78, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- About / Why Us Section ---------- */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-card);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 78, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--gray-300);
}

/* ---------- Team Section ---------- */
.team {
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 162, 78, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-700);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Barber Avatar (face zoom) */
.barber-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  margin-bottom: 16px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
}

.booking-barber-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
}

.team-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card-info .role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-card-contact {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: nowrap;
}

.team-card-contact a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--gray-300);
  white-space: nowrap;
  font-weight: 500;
  transition: all var(--transition);
}

.team-card-contact a:hover {
  background: rgba(200, 162, 78, 0.15);
  color: var(--gold);
}

/* ---------- Location Section ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 78, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 1.2rem;
}

.location-detail h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.location-detail p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  aspect-ratio: 16/12;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Opening Hours Table */
.hours-table {
  width: 100%;
  margin-top: 8px;
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--dark-border);
  gap: 16px;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  font-size: 0.9rem;
}

.hours-table td:first-child {
  color: var(--gray-300);
  min-width: 110px;
  flex-shrink: 0;
}

.hours-table td:last-child {
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  text-align: right;
}

/* ---------- Portfolio Grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.portfolio-tile {
  display: block;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-card);
}

.portfolio-tile-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.portfolio-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-tile:hover .portfolio-tile-img img {
  transform: scale(1.08);
}

.portfolio-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
}

.portfolio-tile:hover .portfolio-tile-overlay {
  opacity: 1;
}

.portfolio-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--gray-500);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ---------- CTA Section ---------- */
.cta {
  background: var(--dark);
  text-align: center;
}

.cta-box {
  background: linear-gradient(135deg, rgba(200, 162, 78, 0.08), rgba(200, 162, 78, 0.02));
  border: 1px solid rgba(200, 162, 78, 0.2);
  border-radius: 20px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(200, 162, 78, 0.05), transparent 60%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  from {
    transform: translate(-10%, -10%);
  }
  to {
    transform: translate(10%, 10%);
  }
}

.cta-box .section-title {
  position: relative;
}

.cta-box .section-subtitle {
  position: relative;
  margin: 0 auto 32px;
}

.cta-box .btn {
  position: relative;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  color: var(--gray-300);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: rgba(200, 162, 78, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 80px;
  border-top: 1px solid var(--dark-border);
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom a {
  color: var(--gold);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ---------- Page Header (for sub pages) ---------- */
.page-header {
  padding: 160px 0 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dark-border), transparent);
}

/* ---------- Pricing Page ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: rgba(200, 162, 78, 0.3);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card h3 .icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item-name {
  font-size: 0.95rem;
  color: var(--gray-300);
}

.pricing-item-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
}

/* ---------- Gallery Page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--dark-card);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Instagram Embeds */
.instagram-media,
.instagram-media-rendered {
  min-width: 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.instagram-media iframe {
  border-radius: 12px !important;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: rgba(200, 162, 78, 0.2);
  color: var(--gold);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--dark);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(200, 162, 78, 0.3);
}

.contact-info-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 78, 0.1);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--gold);
}

.contact-info-card a:hover {
  color: var(--gold-light);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .nav-book-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    gap: 32px;
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-height: 400px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  animation: loaderFadeIn 0.3s ease 0.05s forwards;
}

.loader-logo span {
  color: var(--gold);
}

.loader-line {
  width: 60px;
  height: 2px;
  background: var(--dark-border);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.2s ease 0.15s forwards;
}

.loader-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---------- Google Reviews Section ---------- */
.reviews {
  position: relative;
  overflow: hidden;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.reviews-google-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
}

.reviews-google-logo img,
.reviews-google-logo svg {
  height: 24px;
  width: auto;
}

.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 40px;
}

.reviews-overall-score {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.reviews-overall-stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
  font-size: 1.3rem;
}

.reviews-overall-count {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.google-review-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.google-review-card:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.google-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}

.google-review-meta {
  flex: 1;
  min-width: 0;
}

.google-review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.google-review-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.google-review-stars {
  display: flex;
  gap: 1px;
  color: #fbbc04;
  font-size: 0.85rem;
}

.google-review-text {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.7;
  flex: 1;
}

.google-review-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--dark-border);
}

.google-review-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ---------- Booking Popup ---------- */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-popup {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  width: 94%;
  max-width: 540px;
  margin: auto 0;
  flex-shrink: 0;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.booking-overlay.active .booking-popup {
  transform: translateY(0) scale(1);
}

.booking-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px 12px;
}

.booking-popup-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.booking-popup-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 50%;
  color: var(--gray-300);
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition);
}

.booking-popup-close:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.booking-popup-subtitle {
  padding: 8px 32px 28px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.booking-barber-list {
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-barber-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  width: 100%;
}

.booking-barber-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  transform: translateX(4px);
}

.booking-barber-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
  flex-shrink: 0;
}

.booking-barber-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.booking-barber-info p {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}

.booking-barber-arrow {
  margin-left: auto;
  color: var(--gray-500);
  transition: all var(--transition);
  font-size: 1.1rem;
}

.booking-barber-btn:hover .booking-barber-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* Cal.com embed view inside popup */
.booking-embed-view {
  display: none;
}

.booking-embed-view.active {
  display: block;
}

.booking-embed-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 24px 32px 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-300);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.booking-embed-back:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.booking-embed-container {
  padding: 0 16px 24px;
  min-height: 520px;
  margin-top: 8px;
}

.booking-embed-container iframe {
  width: 100%;
  height: 650px;
  border: none;
  border-radius: var(--radius);
  background: var(--pure-white);
}

/* Booking Float Button */
.booking-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  height: 56px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.booking-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.booking-float svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .booking-popup {
    width: 95%;
    max-height: 95vh;
  }

  .booking-float {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    max-width: 100%;
  }
}

/* ---------- Staggered Animation Delays ---------- */
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

/* ---------- Gold Shimmer Button Effect ---------- */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero-bg-image {
    animation: none;
    transform: scale(1);
  }
}

/* ---------- Language Switcher ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 3px;
  margin-right: 8px;
}

.lang-btn {
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: transparent;
  color: var(--gray-500);
  font-family: var(--font-body);
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--black);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

/* ---------- Noise Texture Overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 800;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
