/* Cata Luxury Barber Room — clean, modern, luxury design */
/* Design goals: minimal, elegant, spacious, premium feel */

/* Animation Variables */
:root{
  --anim-duration-fast: 0.2s;
  --anim-duration-normal: 0.3s;
  --anim-duration-slow: 0.6s;
  --anim-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --anim-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

:root{
  --bg: #0a0a0a;
  --bg2: #111111;
  --card: #1a1a1a;
  --text: #f5f5f5;
  --muted: #a0a0a0;
  --muted2: #707070;
  --line: rgba(255,255,255,.08);
  --shadow: 0 4px 24px rgba(0,0,0,.3);
  --accent: #d4af37;
  --accent-hover: #e5c158;
  --radius: 12px;
  --max: 1200px;

  --title: "Playfair Display", ui-serif, Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body{
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a{
  color: inherit;
  text-decoration: none;
}

.container{
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus{
  left: 20px;
  top: 20px;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(10,10,10,0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-bottom-color 0.3s ease;
}

.site-header.scrolled{
  background: rgba(10,10,10,.8);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo{
  height: 85px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212,175,55,.2) 0%, rgba(212,175,55,.05) 100%);
  border: 1px solid rgba(212,175,55,.3);
  font-size: 20px;
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name{
  font-family: var(--title);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.brand-sub{
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav{
  display: flex;
  align-items: center;
}

.nav-menu{
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a{
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-menu a:hover{
  color: var(--text);
}

.lang-toggle{
  display: flex;
  align-items: center;
  margin-left: 24px;
}

.lang-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.lang-btn:hover{
  border-color: var(--accent);
  background: rgba(212,175,55,.05);
  color: var(--text);
}

.lang-btn:hover .lang-option {
  color: var(--text);
}

.lang-option{
  transition: color 0.2s ease;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
}

.lang-option.active{
  color: var(--accent);
  font-weight: 600;
}

.lang-divider{
  color: var(--muted2);
  opacity: 0.5;
}

.nav-toggle{
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
}

.hamburger{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.hamburger::before{
  top: -6px;
}

.hamburger::after{
  top: 6px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, #f4d03f 50%, var(--accent) 100%);
  color: #0a0a0a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 
    0 4px 12px rgba(212,175,55,0.3),
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

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

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

.btn:hover{
  background: linear-gradient(135deg, var(--accent-hover) 0%, #f5d76e 50%, var(--accent-hover) 100%);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(212,175,55,0.4),
    0 4px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn:active{
  transform: translateY(0);
  box-shadow: 
    0 2px 8px rgba(212,175,55,0.3),
    0 1px 2px rgba(0,0,0,0.2),
    inset 0 1px 2px rgba(0,0,0,0.1);
}

.btn-ghost{
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 
    0 4px 12px rgba(212,175,55,0.2),
    0 2px 4px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* Focus indicators for accessibility */
.btn:focus-visible,
.btn-ghost:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.nav-menu a:focus-visible,
.lang-btn:focus-visible,
.modal-close:focus-visible,
.phone-modal-close:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-small{
  padding: 10px 20px;
  font-size: 14px;
}

.btn-full{
  width: 100%;
}

/* Hero */
.hero{
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  opacity: 1 !important; /* Always visible - hero is above the fold */
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.65) contrast(1.1);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,175,55,.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  padding: 80px 0 80px;
  opacity: 1 !important; /* Always visible - hero is above the fold */
}

.hero-copy{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-logo{
  width: clamp(300px, 50vw, 600px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.eyebrow{
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

/* Animated 3D Barber Pole with Golden Accents */
.barber-pole-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  height: 100px;
  perspective: 600px;
  perspective-origin: center center;
}

.barber-pole{
  position: relative;
  width: 44px;
  height: 100px;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  transform-style: preserve-3d;
  animation: barberPoleRotate3D 8s ease-in-out infinite;
  will-change: transform;
}

/* Golden Top Cap */
.barber-pole-cap{
  width: 100%;
  height: 16px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #f4d03f 25%,
    var(--accent) 50%,
    #c9a028 75%,
    var(--accent) 100%
  );
  border-radius: 22px 22px 0 0;
  position: relative;
  z-index: 3;
  box-shadow: 
    inset 0 4px 8px rgba(255,255,255,0.5),
    inset 0 -3px 6px rgba(0,0,0,0.4),
    0 4px 12px rgba(0,0,0,0.5),
    0 0 0 2px rgba(0,0,0,0.2),
    0 0 20px rgba(212,175,55,0.3);
  border: 1px solid rgba(212,175,55,0.6);
}

.barber-pole-cap::before{
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  height: 5px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.6) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0,0,0,0.3) 100%
  );
  border-radius: 3px;
  pointer-events: none;
}

.barber-pole-cap::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.8) 0%,
    rgba(212,175,55,0.6) 50%,
    transparent 100%
  );
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212,175,55,0.8);
}

.barber-pole-cap.bottom{
  border-radius: 0 0 22px 22px;
  margin-top: auto;
  box-shadow: 
    inset 0 -4px 8px rgba(255,255,255,0.5),
    inset 0 3px 6px rgba(0,0,0,0.4),
    0 -4px 12px rgba(0,0,0,0.5),
    0 0 0 2px rgba(0,0,0,0.2),
    0 0 20px rgba(212,175,55,0.3);
}

.barber-pole-cap.bottom::before{
  top: auto;
  bottom: 3px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.3) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255,255,255,0.6) 100%
  );
}

/* Striped Body with 3D Effect */
.barber-pole-stripes{
  flex: 1;
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  border-left: 2px solid rgba(0,0,0,0.2);
  border-right: 2px solid rgba(0,0,0,0.2);
  transform-style: preserve-3d;
  box-shadow: 
    inset 4px 0 12px rgba(255,255,255,0.5),
    inset -4px 0 12px rgba(0,0,0,0.3),
    0 0 0 1px rgba(0,0,0,0.15),
    inset 0 0 30px rgba(0,0,0,0.1);
}

.barber-pole-stripes::before{
  content: '';
  position: absolute;
  top: -400px;
  left: -200px;
  width: 400px;
  height: 1200px;
  background: repeating-linear-gradient(
    45deg,
    #dc2626 0%,
    #dc2626 12.5%,
    #ffffff 12.5%,
    #ffffff 25%,
    #1e40af 25%,
    #1e40af 37.5%,
    #ffffff 37.5%,
    #ffffff 50%,
    #dc2626 50%,
    #dc2626 62.5%,
    #ffffff 62.5%,
    #ffffff 75%,
    #1e40af 75%,
    #1e40af 87.5%,
    #ffffff 87.5%,
    #ffffff 100%
  );
  /* Pattern size: 80px x 80px creates perfect diagonal repeat at 45deg */
  /* This ensures seamless looping when moving 80px in both X and Y */
  background-size: 80px 80px;
  background-position: 0 0;
  animation: barberPoleScroll 3s linear infinite;
  transform-origin: center center;
  will-change: transform;
}

.barber-pole-stripes::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(
      ellipse 80% 100% at center,
      transparent 0%,
      rgba(0,0,0,0.15) 100%
    ),
    linear-gradient(
      to right,
      rgba(255,255,255,0.3) 0%,
      transparent 25%,
      transparent 75%,
      rgba(0,0,0,0.25) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Golden Accent Rings */
.barber-pole-stripes{
  position: relative;
}

.barber-pole-stripes::before{
  z-index: 0;
}

/* Smooth 3D Rotation Animation */
@keyframes barberPoleRotate3D{
  0%, 100%{
    transform: rotateY(0deg) rotateX(0deg) scale(1);
  }
  25%{
    transform: rotateY(10deg) rotateX(2deg) scale(1.02);
  }
  50%{
    transform: rotateY(0deg) rotateX(0deg) scale(1);
  }
  75%{
    transform: rotateY(-10deg) rotateX(-2deg) scale(1.02);
  }
}

/* Smooth Scrolling Stripe Animation - Seamless Loop */
/* For 45deg diagonal pattern: pattern repeats every 80px diagonally */
/* Moving exactly 80px in X and -80px in Y creates perfect seamless loop */
@keyframes barberPoleScroll{
  0%{
    transform: translate(0, 0);
  }
  100%{
    /* Exact pattern repeat distance for seamless loop */
    transform: translate(80px, -80px);
  }
}

.hero-title{
  font-family: var(--title);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
}

.hero-subtitle{
  font-size: clamp(18px, 2.5vw, 28px);
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: -8px 0 0 0;
}

.hero-seo-content{
  max-width: 800px;
  text-align: center;
  margin: 4px 0;
}

.hero-seo-content .hero-title{
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 20px auto;
  text-align: center;
  max-width: 700px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--body);
}

.hero-seo-content .hero-subtitle{
  margin-bottom: 24px;
}

.hero-description,
.hero-location,
.hero-services{
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 auto 20px auto;
  text-align: center;
  max-width: 700px;
}

.hero-description strong,
.hero-location strong,
.hero-seo-content .hero-title strong{
  color: var(--accent);
  font-weight: 600;
}

.hero-location{
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.8vw, 17px);
}

.hero-services{
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.8vw, 17px);
}

.hero-lede{
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

.hero-cta{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn-call {
  flex-direction: column;
  padding: 18px 36px;
  gap: 6px;
  line-height: 1.4;
}

.btn-text {
  display: block;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.btn-phone {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1px;
}

.hero-info{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-info-item{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  text-align: center;
  min-width: 180px;
}

.hero-info-item:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.3);
  transform: translateY(-2px);
}

.info-label{
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.info-value{
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.hero-scroll{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.hero-scroll .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: bob 2s ease-in-out infinite;
}

.hero-scroll .line{
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

@keyframes bob{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Sections */
.section{
  padding: 100px 0;
  /* Start visible, animate only when scrolling into view */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--anim-easing), transform 0.8s var(--anim-easing);
}

/* Only apply hidden state if JavaScript adds the class for animation */
.section.animate-ready{
  opacity: 0;
  transform: translateY(30px);
}

.section.animate-in{
  opacity: 1;
  transform: translateY(0);
}

.section-header{
  /* Start visible */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--anim-easing) 0.2s, transform 0.6s var(--anim-easing) 0.2s;
}

/* Only hide if parent section is ready for animation */
.section.animate-ready .section-header{
  opacity: 0;
  transform: translateY(20px);
}

.section.animate-in .section-header{
  opacity: 1;
  transform: translateY(0);
}

.section-alt{
  background: var(--bg2);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
}

.section-title{
  font-family: var(--title);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

/* Cards */
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 32px;
  /* Start visible */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--anim-easing), transform 0.6s var(--anim-easing), 
              box-shadow 0.3s var(--anim-easing), border-color 0.3s var(--anim-easing);
}

/* Only hide if ready for animation */
.card.animate-ready{
  opacity: 0;
  transform: translateY(20px);
}

.card.animate-in{
  opacity: 1;
  transform: translateY(0);
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-color: rgba(212,175,55,0.3);
}

.card-title{
  font-family: var(--title);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.muted{
  color: var(--muted);
}

.small{
  font-size: 14px;
}

.divider{
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* Price Lists */
.price-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.price-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

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

.price-left{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-name{
  font-weight: 500;
  font-size: 16px;
}

.price-meta{
  font-size: 14px;
  color: var(--muted);
}

.price-right{
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
}

.cta-row{
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Barber Grid */
.barber-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.barber-card{
  border-radius: var(--radius);
  /* Start visible */
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s var(--anim-easing), transform 0.6s var(--anim-easing),
              box-shadow 0.3s var(--anim-easing), border-color 0.3s var(--anim-easing);
}

/* Only hide if ready for animation */
.barber-card.animate-ready{
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.barber-card.animate-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.barber-card{
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.barber-card:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212,175,55,0.2);
}

.barber-photo{
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.barber-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.2) 100%);
}

.barber-body{
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.barber-name{
  font-family: var(--title);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.barber-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 2px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  font-size: 13px;
}

.barber-phone{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  font-size: 14px;
}

.barber-phone a{
  font-weight: 600;
  color: var(--text);
}

.barber-actions{
  display: flex;
  gap: 10px;
}

.barber-actions .btn{
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
}

.barber-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.thumb{
  border-radius: 6px;
  height: 50px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.thumb:hover{
  transform: scale(1.05);
}

.barber-note{
  margin: 0 0 6px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.barber-social{
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-icon{
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: all 0.2s ease;
}

.social-icon:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.3);
  transform: translateY(-2px);
}

.social-icon svg{
  width: 16px;
  height: 16px;
  fill: var(--text);
}

.barber-section-title{
  font-family: var(--title);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--text);
}

.barber-services{
  margin-bottom: 0;
}

.barber-services .price-item{
  padding: 8px 0;
}

.barber-services .price-name{
  font-size: 14px;
}

.barber-services .price-right{
  font-size: 16px;
}

.barber-payments{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}

.payments-list{
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* Gallery */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--card);
  position: relative;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g1{grid-column: span 7; height: 400px}
.g2{grid-column: span 5; height: 400px}
.g3{grid-column: span 4; height: 280px}
.g4{grid-column: span 4; height: 280px}
.g5{grid-column: span 4; height: 280px}

/* Reviews */
.review-summary{
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.summary-score{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 32px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.score-num{
  font-family: var(--title);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
}

.stars{
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--accent);
}

.summary-actions{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 32px;
  display: grid;
  gap: 16px;
  align-content: start;
}

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

.review-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.review-top{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.reviewer{
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(212,175,55,.1);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}

.reviewer strong{
  display: block;
  font-weight: 600;
}

.review-meta{
  font-size: 13px;
  color: var(--muted);
}

.review-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-stars{
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 16px;
}

/* Accordion */
.accordion{
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.acc-item{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
}

.acc-btn{
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
}

.acc-btn:hover{
  background: rgba(255,255,255,.02);
}

.chev{
  color: var(--muted);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.acc-panel{
  padding: 0 24px 24px 24px;
  color: var(--muted);
  line-height: 1.7;
  display: none;
}

.acc-item[data-open="true"] .acc-panel{
  display: block;
}

.acc-item[data-open="true"] .chev{
  transform: rotate(180deg);
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-links a{
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-links a:hover{
  color: var(--accent);
}

.map-wrap{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 400px;
}

.map-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card{
  display: grid;
  gap: 16px;
}

.contact-item{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.contact-label{
  color: var(--muted);
}

.contact-value{
  font-weight: 600;
}

.hours-grid{
  display: grid;
  gap: 8px;
}

.hour-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.hour-row:last-child{
  border-bottom: none;
}

.hour-row strong{
  font-weight: 600;
}

.hour-row.today{
  color: var(--accent);
}

.hour-row .live-status{
  font-size: 13px;
  font-weight: 500;
}

.info-value.open{
  color: var(--accent);
}

.info-value.closed{
  color: var(--muted);
}

.checklist,
.bullets{
  padding-left: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.checklist li,
.bullets li{
  margin: 8px 0;
}

.checklist li{
  list-style: "✓  ";
}

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

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.footer-section-title{
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-hours{
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-hours-item{
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-hours-item .day{
  font-weight: 500;
  color: var(--text);
}

.footer-social{
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  color: var(--text);
  transition: all 0.2s ease;
  border: 1px solid var(--line);
}

.footer-social a:hover{
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-service-areas{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-service-areas a{
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--card);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--line);
}

.footer-service-areas a:hover{
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.1);
}

.footer-contact-info{
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-contact-info a{
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-info a:hover{
  color: var(--accent);
}

.footer-contact-info svg{
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links{
  display: grid;
  gap: 12px;
}

.footer-links a{
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-links a:hover{
  color: var(--text);
}

.footer-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px){
  .barber-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid{
    grid-template-columns: repeat(6, 1fr);
  }
  
  .g1, .g2{grid-column: span 3}
  .g3, .g4, .g5{grid-column: span 2}
}

@media (max-width: 640px){
  .hero-info{
    flex-direction: column;
    width: 100%;
  }
  
  .hero-info-item{
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 768px){
  .container{
    width: calc(100% - 40px);
  }
  
  .section{
    padding: 60px 0;
  }
  
  .barber-grid,
  .reviews-grid,
  .review-summary,
  .contact-grid{
    grid-template-columns: 1fr;
  }
  
  .gallery-grid{
    grid-template-columns: 1fr;
  }
  
  .g1, .g2, .g3, .g4, .g5{
    grid-column: span 1;
    height: 240px;
  }
  
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-actions{
    justify-content: flex-start;
  }

  .footer-section-title{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .footer-section-title:first-child{
    margin-top: 0;
  }
  
  .header-inner{
    height: auto;
    min-height: 80px;
    padding: 12px 0;
  }
  
  .brand-logo{
    height: 80px;
  }
  
  .nav-toggle{
    display: inline-flex;
  }
  
  .lang-toggle{
    margin-left: 12px;
  }
  
  .lang-btn{
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .nav-menu{
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow);
    margin-top: 12px;
  }
  
  .nav-menu[data-open="true"]{
    display: flex;
  }
  
  .nav-menu a{
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.02);
  }
  
  .hero-content{
    padding: 80px 0 60px;
  }
  
  .hero-cta{
    flex-direction: column;
  }
  
  .hero-cta .btn{
    width: 100%;
  }
  
  .hero-info{
    gap: 16px;
    margin-top: 32px;
  }
  
  .hero-info-item{
    padding: 14px 20px;
    min-width: 160px;
  }
}

/* --- Updated Barber Section Styles --- */
:root {
    --bg-dark: #121212;
    --card-bg: #1e1e1e;
    --accent-gold: #D4AF37;
    --accent-hover: #b59020;
    --text-muted: #a0a0a0;
}

.team-section { 
    padding: 3rem 2rem;
}

.team-section .container {
    max-width: 1700px !important;
    width: min(1700px, calc(100% - 0px)) !important;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content { text-align: center; margin-bottom: 2.5rem; }
.main-title { font-family: var(--title); font-size: 3.2rem; margin-bottom: 0.5rem; }
.subtitle { color: var(--text-muted); font-size: 1.15rem; max-width: 1000px; margin: 0 auto; }

/* --- Grid Configuration --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: start;
}

@media (max-width: 1800px) {
    .team-section { max-width: 2000px; }
    .card-grid { gap: 2.5rem; }
}

@media (max-width: 1600px) {
    .team-section { max-width: 1800px; }
    .card-grid { gap: 2.25rem; }
}

@media (max-width: 1400px) {
    .team-section { max-width: 1600px; }
    .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-section { max-width: 1400px; }
}

@media (max-width: 750px) {
    .card-grid { grid-template-columns: 1fr; }
}

/* --- Card Structure --- */
.barber-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid #333;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.barber-card:hover {
    z-index: 10;
}

.card-image-wrapper { 
    height: 320px; 
    position: relative; 
    transition: height 0.4s ease;
}

.barber-card:hover .card-image-wrapper {
    height: 280px;
}

.barber-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }

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

.experience-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.85);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2;
}

.barber-name-default {
    font-family: var(--title);
    font-size: 1.7rem;
    text-align: center;
    padding: 1.25rem 2rem;
    color: white;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
}

.barber-card:hover .barber-name-default {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.card-body { 
    padding: 1.75rem; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
    border: 1px solid #333;
    border-top: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.barber-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
}

.barber-card:hover .card-body {
    max-height: 2000px;
    opacity: 1;
    padding: 1.75rem;
    border-color: var(--accent-gold);
}

.barber-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.barber-card:hover .barber-header {
    opacity: 1;
    transform: translateY(0);
}

.barber-name { font-family: var(--title); font-size: 1.8rem; }

.social-links { display: flex; gap: 12px; font-size: 1.6rem; }
.social-links a { color: var(--text-muted); transition: 0.2s; }
.social-links a:hover { color: var(--accent-gold); }

.language-indicator {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2a2a;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
}

.barber-card:hover .language-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* --- SERVICES (ACCORDION) --- */
.services-section {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.barber-card:hover .services-section {
    opacity: 1;
    transform: translateY(0);
}

.interactive-menu { 
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 0.5rem;
}

.interactive-menu::-webkit-scrollbar {
    width: 6px;
}

.interactive-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.interactive-menu::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.interactive-menu::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.service-group { border-bottom: 1px solid #2a2a2a; padding: 12px 0; }
.service-group.highlight .service-main { color: var(--accent-gold); }

.service-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    cursor: pointer;
    transition: 0.2s;
    gap: 8px;
    font-size: 1.2rem;
    flex-wrap: wrap;
}

.service-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
}

.service-main:hover { color: var(--accent-gold); }

.dots {
    flex-grow: 1;
    border-bottom: 1px dotted #333;
    margin: 0 12px;
    position: relative;
    top: -4px;
}

.cost { font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 1.15rem; }

.service-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-group.active .service-details {
    max-height: 250px;
    opacity: 1;
    padding: 14px 12px;
    background: #252525;
    margin-top: 10px;
    border-radius: 10px;
}

.details-title {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
}

.service-details ul { list-style: none; }
.service-details li { font-size: 1.05rem; color: #ddd; margin-bottom: 6px; display: flex; align-items: center; }
.service-details li::before { content: "•"; color: var(--accent-gold); margin-right: 10px; font-size: 1.2rem; }

/* --- SHOW MORE DROPDOWN LOGIC --- */
.more-services-toggle {
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px dashed #444;
    background: #1a1a1a;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, var(--card-bg) 80%, transparent);
    z-index: 5;
}

.more-services-toggle:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: linear-gradient(to top, #222 80%, transparent);
}

.more-services-toggle .chevron { transition: transform 0.25s ease; }

.more-services {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.interactive-menu.show-more .more-services {
    max-height: 600px;
    opacity: 1;
    margin-top: 5px;
}

.interactive-menu.show-more .more-services-toggle {
    border-style: solid;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.interactive-menu.show-more .more-services-toggle .chevron {
    transform: rotate(180deg);
}

/* --- PORTFOLIO CAROUSEL --- */
.portfolio-carousel {
    position: relative;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    background: #151515;
}

.portfolio-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.88);
    transform: scale(1.02);
}

.portfolio-slide.active {
    opacity: 1;
}

.portfolio-carousel:hover .portfolio-slide.active {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.btn-view-more {
    margin-top: 1.2rem;
    display: block;
    text-align: center;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border: 1px solid #444;
    color: var(--accent-gold);
    background: #1a1a1a;
    transition: 0.25s;
}

.btn-view-more:hover {
    border-color: var(--accent-gold);
    background: #222;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.12);
}

.payment-methods-section {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.32s, transform 0.4s ease 0.32s;
}

.barber-card:hover .payment-methods-section {
    opacity: 1;
    transform: translateY(0);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.payment-method {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #252525;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.2s ease;
}

.payment-method:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: #2a2a2a;
}

.recent-work-section {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.barber-card:hover .recent-work-section {
    opacity: 1;
    transform: translateY(0);
}

.section-label { font-size: 1rem; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }

@media (max-width: 480px) {
    .card-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 2.8rem; }
    .team-section { padding: 3rem 1.5rem; }
    .card-image-wrapper { height: 350px; }
    .barber-card:hover .card-image-wrapper { height: 320px; }
}

/* ═══════════════════════════════════════
   UPDATED BARBER SECTION STYLES
   ═══════════════════════════════════════ */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.4;
}

.section-title {
    font-family: var(--title);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* Barber Grid */
.barber-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1400px) {
    .barber-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .barber-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .barber-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Updated Barber Card */
.barber-card[data-barber] {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid #252525;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.barber-card[data-barber]:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent-gold);
}

.card-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.barber-card[data-barber]:hover .card-image img {
    transform: scale(1.05);
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--card-bg) 0%, transparent 50%);
    pointer-events: none;
}

.experience-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    z-index: 2;
}

.card-content {
    padding: 1.5rem;
    position: relative;
    margin-top: -2rem;
}

.barber-card[data-barber] .barber-name {
    font-family: var(--title);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.barber-specialty {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent-gold);
}

.meta-item .flag {
    font-size: 0.9rem;
    line-height: 1;
}

.meta-item .lang-divider {
    color: var(--text-muted);
    margin: 0 0.15rem;
}

.starting-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #252525;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-family: var(--title);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.view-profile {
    margin-left: auto;
    background: rgba(201, 169, 98, 0.15);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.barber-card[data-barber]:hover .view-profile {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.modal-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 560px;
    height: 100%;
    background: var(--card-bg);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.modal-overlay.active .modal-container {
    transform: translateX(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #252525;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-hero {
    position: relative;
    height: 320px;
}

.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--card-bg) 0%, transparent 60%);
}

.modal-body {
    padding: 0 2rem 2rem;
    margin-top: -3rem;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.modal-name {
    font-family: var(--title);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.modal-specialty {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-social {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid #252525;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.modal-tag {
    background: #1a1a1a;
    border: 1px solid #252525;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.modal-tag.highlight {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.15);
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #252525;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #252525;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-item:hover {
    padding-left: 0.5rem;
}

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

.service-info {
    flex: 1;
}

.service-item .service-name {
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.service-item.featured .service-name {
    color: var(--accent-gold);
}

.service-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.service-item .service-price {
    font-family: var(--title);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-item.featured .service-price {
    color: var(--accent-gold);
}

.service-item .service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-item.expanded .service-details {
    max-height: 200px;
}

.service-details-content {
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
    margin-top: 0.75rem;
}

.service-details-content ul {
    list-style: none;
}

.service-details-content li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-details-content li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-item {
    background: #1a1a1a;
    border: 1px solid #252525;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.portfolio-roulette {
    position: relative;
    height: 120px;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.portfolio-track {
    display: flex;
    gap: 0.5rem;
    animation: roulette 12s linear infinite;
    width: max-content;
}

.portfolio-roulette:hover .portfolio-track,
.portfolio-roulette.paused .portfolio-track {
    animation-play-state: paused;
}

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

.portfolio-item {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: all 0.4s ease;
}

.portfolio-roulette.expanded {
    height: auto;
}

.portfolio-roulette.expanded .portfolio-track {
    animation: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.portfolio-roulette.expanded .portfolio-item {
    width: calc(33.333% - 0.35rem);
    height: auto;
    aspect-ratio: 1;
}

.portfolio-roulette.expanded .portfolio-item img {
    filter: brightness(1);
}

.portfolio-roulette.expanded .portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.portfolio-expand-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 85%, rgba(0,0,0,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.portfolio-roulette.expanded .portfolio-expand-hint {
    opacity: 0;
    pointer-events: none;
}

.expand-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    transition: transform 0.3s ease;
}

.portfolio-roulette:hover .expand-icon {
    transform: scale(1.1);
}

.expand-icon svg {
    width: 18px;
    height: 18px;
}

.btn-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 58, 180, 0.4);
}

.btn-instagram svg {
    width: 20px;
    height: 20px;
}

.modal-container::-webkit-scrollbar {
    width: 0;
}

@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
    }

    .modal-hero {
        height: 260px;
    }

    .modal-body {
        padding: 0 1.5rem 1.5rem;
    }

    .modal-name {
        font-size: 1.75rem;
    }

    .card-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .card-meta {
        gap: 0.75rem;
    }

    .starting-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .view-profile {
        margin-left: 0;
        margin-top: 0.75rem;
        width: 100%;
        text-align: center;
    }
}

/* Phone Call Modal for Desktop */
.phone-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.phone-modal {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.phone-modal-overlay.active .phone-modal {
    transform: scale(1);
}

.phone-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.phone-modal-close:hover {
    background: rgba(255,255,255,0.1);
}

.phone-modal-close svg {
    width: 24px;
    height: 24px;
}

.phone-modal-content {
    text-align: center;
}

.phone-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon svg {
    width: 100%;
    height: 100%;
}

.phone-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.phone-modal-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.phone-modal-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-bottom: 1rem;
}

.phone-modal-actions .btn {
    width: 100%;
    justify-content: center;
}

.phone-modal-note {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* Services Gallery */
.services-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  /* Start visible */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--anim-easing) 0.3s, transform 0.8s var(--anim-easing) 0.3s;
}

.services-gallery-grid.animate-ready {
  opacity: 0;
  transform: translateY(30px);
}

.services-gallery-grid.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  /* Start visible */
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.6s var(--anim-easing), transform 0.6s var(--anim-easing),
              box-shadow 0.3s var(--anim-easing);
}

/* Only hide if ready for animation */
.service-gallery-item.animate-ready {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.service-gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-gallery-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.service-gallery-item:hover .service-gallery-overlay,
.service-gallery-item:focus-within .service-gallery-overlay {
  opacity: 1;
}

.service-gallery-item:hover .service-gallery-image img {
  transform: scale(1.1);
}

.service-gallery-content {
  text-align: center;
  color: var(--text);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.service-gallery-item:hover .service-gallery-content,
.service-gallery-item:focus-within .service-gallery-content {
  transform: translateY(0);
}

.service-gallery-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-family: var(--title);
}

.service-gallery-description {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-gallery-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-gallery-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* Mobile: Show overlay when image is above viewport */
@media (max-width: 768px) {
  .service-gallery-item {
    margin-bottom: 2rem;
  }
  
  .service-gallery-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
  }
  
  .service-gallery-content {
    transform: translateY(0);
  }
  
  .service-gallery-image img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .services-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-gallery-title {
    font-size: 1.25rem;
  }
  
  .service-gallery-description {
    font-size: 0.9rem;
  }
}

/* Sticky Bottom CTA for Mobile */
.mobile-sticky-cta {
  display: none; /* Hidden by default on desktop */
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex; /* Show on mobile only */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg2, #1a1c1f);
    border-top: 1px solid var(--accent, #d4af37);
    padding: 12px 20px;
    z-index: 999;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  }
  .mobile-sticky-cta .btn {
    width: 100%;
    margin: 0;
  }
  /* Add padding to footer so button doesn't cover content */
  .footer {
    padding-bottom: 80px; 
  }
}

/* Additional Animation Enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced button hover effects */
.section-cta .btn {
  position: relative;
  overflow: hidden;
}

.section-cta .btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--anim-easing), height 0.6s var(--anim-easing);
}

.section-cta .btn:hover::after {
  width: 300px;
  height: 300px;
}

/* Hero entrance animations - only animate on initial load, not on scroll */
.hero-content {
  opacity: 1 !important;
  animation: heroFadeIn 1s var(--anim-easing) 0.3s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  animation: heroTitleSlide 1s var(--anim-easing) 0.5s both;
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta {
  animation: heroCtaFade 1s var(--anim-easing) 0.7s both;
}

@keyframes heroCtaFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-info {
  animation: heroInfoFade 1s var(--anim-easing) 0.9s both;
}

@keyframes heroInfoFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service gallery enhancements */
.service-gallery-item:hover .service-gallery-image img {
  transform: scale(1.15);
  transition: transform 0.5s var(--anim-easing);
}

.service-gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212,175,55,0.25);
}

.service-gallery-content {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s var(--anim-easing) 0.1s, opacity 0.4s var(--anim-easing) 0.1s;
}

.service-gallery-item:hover .service-gallery-content,
.service-gallery-item:focus-within .service-gallery-content {
  transform: translateY(0);
  opacity: 1;
}
