/* ===================================
   ARTAN BARBERS — Design System
   Dark Premium Barbershop Theme
   =================================== */

/* ===== INTRO VIDEO OVERLAY ===== */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: all;
}

.intro-overlay.hidden {
    pointer-events: none;
}

.intro-left,
.intro-right {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
    z-index: 10001;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.intro-left {
    left: 0;
}

.intro-right {
    right: 0;
}

.intro-overlay.open .intro-left {
    transform: translateX(-100%);
}

.intro-overlay.open .intro-right {
    transform: translateX(100%);
}

.intro-video-wrapper {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: opacity 0.6s ease;
}

.intro-overlay.open .intro-video-wrapper {
    opacity: 0;
    pointer-events: none;
}

.intro-video-wrapper video {
    max-width: 80%;
    max-height: 70vh;
    object-fit: contain;
}

.intro-skip {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.05em;
    z-index: 10003;
}

.intro-skip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

body.intro-active {
    overflow: hidden;
}
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --text-accent: rgba(255, 255, 255, 0.9);

    --accent: #c8a97e;
    --accent-hover: #d4b98e;
    --accent-glow: rgba(200, 169, 126, 0.15);
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Typography */
    --font-display: 'UnifrakturCook', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --gap: 24px;
    
    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-number {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

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

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-container-centered {
    justify-content: space-between;
    position: relative;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    z-index: 2;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 36px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    text-transform: none;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-clean {
    background: #000000;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: heroFadeIn 1.2s var(--ease) both;
}

.hero-logo-img {
    max-width: 380px;
    max-height: 380px;
    margin: 0 auto 24px;
    object-fit: contain;
    animation: heroFadeIn 0.8s var(--ease) 0.2s both;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
    margin-bottom: 16px;
}

.hero-title-blackletter {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    display: block;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s var(--ease);
}

.btn-primary {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-hero {
    animation: heroFadeIn 1.5s var(--ease) 0.5s both;
}

/* Hero Scroll Indicator */
.hero-socials {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 3;
}

.hero-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.hero-social-icon:hover {
    background: var(--accent);
    color: #000;
    transform: scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: heroFadeIn 2s var(--ease) 1s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.4rem !important;
    color: var(--text-primary) !important;
    line-height: 1.5 !important;
    margin-bottom: 28px !important;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.about-img-wrapper {
    overflow: hidden;
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    filter: grayscale(20%);
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-img-1 {
    grid-column: 1 / -1;
}

.about-img-1 img {
    height: 280px;
}

.about-img-2 img {
    height: 220px;
}

.about-img-single {
    grid-column: 1 / -1;
}

.about-img-single img {
    height: 400px;
    width: 100%;
}

/* ===== TEAM ===== */
.section-team {
    background: var(--bg-secondary);
}

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

.team-card {
    background: var(--bg-card);
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
}

.team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s;
}

.team-card:hover .team-img-overlay {
    opacity: 1;
}

.team-experience {
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.team-info {
    padding: 24px;
}

.team-role {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 6px;
}

/* ===== PRICING ===== */
.pricing-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-tab {
    padding: 16px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s;
}

.pricing-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.pricing-tab.active {
    color: var(--text-primary);
}

.pricing-tab.active::after {
    transform: scaleX(1);
}

.pricing-tab:hover {
    color: var(--text-primary);
}

.pricing-panel {
    display: none;
    animation: fadeSlideUp 0.4s var(--ease);
}

.pricing-panel.active {
    display: block;
}

.price-row {
    display: flex;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.price-row:hover {
    background: var(--bg-glass);
}

.price-row-wrapper {
    border-bottom: 1px solid var(--border);
}

.price-row-wrapper .price-row {
    border-bottom: none;
}

.price-description {
    padding: 0 0 14px 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

.price-service {
    font-size: 0.95rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.price-service small {
    color: var(--text-muted);
    font-size: 0.8em;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    margin: 0 16px;
    min-width: 40px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* ===== GALLERY CAROUSEL ===== */
.section-gallery {
    background: var(--bg-secondary);
}

.gallery-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track-wrapper {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 0 8px;
}

.carousel-media-item {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-primary);
}

.carousel-media-item img,
.carousel-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #fff;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 2;
}

.carousel-arrow:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s;
}

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

.contact-value-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.btn-contact {
    margin-top: 40px;
    width: 100%;
    justify-content: center;
}

.contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-wrapper {
    display: block;
    width: 100%;
    height: 300px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: border-color 0.3s;
}

.map-wrapper:hover {
    border-color: var(--accent);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    transition: padding-bottom 0.3s;
}

.map-wrapper:hover .map-overlay {
    padding-bottom: 24px;
}

.map-overlay svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: border-color 0.3s;
}

.review-card:hover {
    border-color: var(--accent);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

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

.review-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.review-write-section {
    text-align: center;
    padding-top: 10px;
}

/* Review Modal */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    width: 100%;
    max-width: 440px;
    position: relative;
}

.review-modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.review-error {
    color: #f87171;
    font-size: 0.8rem;
    margin-top: 8px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 4px;
}

.star-rating .star {
    font-size: 1.8rem;
    color: var(--border);
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}

.star-rating .star.active,
.star-rating .star.hover {
    color: var(--accent);
}

.star-rating .star:hover {
    transform: scale(1.15);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    width: 90%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.5s var(--ease);
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--text-muted);
    padding: 8px;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

/* Booking Steps Indicator */
.booking-steps {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.step.active {
    color: var(--accent);
}

.step.done {
    color: #4ade80;
}

.step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s;
}

.step.active span {
    border-color: var(--accent);
    color: var(--accent);
}

.step.done span {
    border-color: #4ade80;
    background: #4ade80;
    color: var(--bg-primary);
}

/* Booking Panels */
.booking-panel {
    display: none;
    position: relative;
}

.booking-panel.active {
    display: block;
    animation: fadeSlideUp 0.4s var(--ease);
}

.booking-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.barber-option input {
    display: none;
}

.barber-option-card {
    text-align: center;
    padding: 16px 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.barber-option input:checked + .barber-option-card {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.barber-option-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.barber-option-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.barber-option-role {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.service-option input {
    display: none;
}

.service-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.service-option input:checked + .service-option-card {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.service-name {
    font-size: 0.9rem;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
}

.service-total {
    text-align: right;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 20px;
}

/* Date Picker */
.date-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.date-month {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.date-nav-btn {
    color: var(--text-secondary);
    padding: 4px;
    transition: color 0.3s;
}

.date-nav-btn:hover {
    color: var(--text-primary);
}

.date-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.date-day {
    text-align: center;
    padding: 10px 4px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.date-day:hover:not(.disabled) {
    border-color: var(--accent);
}

.date-day.active {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

.date-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.date-day-name {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.date-day-num {
    display: block;
    font-weight: 600;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.time-slots-info {
    grid-column: 1 / -1;
    text-align: center;
    padding: 8px 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(200, 169, 126, 0.2);
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.time-slot {
    text-align: center;
    padding: 10px 6px;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--accent);
}

.time-slot.active {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.time-slot.booked {
    opacity: 0.5;
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.2);
    color: var(--text-muted);
    font-size: 0.7rem;
    text-decoration: line-through;
}

/* Booking Form */
.booking-form {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Booking Summary */
.booking-summary {
    background: var(--bg-card);
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.booking-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.booking-summary .summary-row:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent);
}

.booking-summary .summary-label {
    color: var(--text-muted);
}

/* Booking Nav */
.booking-nav {
    display: flex;
    gap: 12px;
}

.booking-nav .btn {
    flex: 1;
    justify-content: center;
    padding: 14px 20px;
}

.btn-next:disabled,
.btn-confirm:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success svg {
    margin-bottom: 20px;
}

.booking-success h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

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

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

.lightbox-img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--text-secondary);
    padding: 12px;
    transition: color 0.3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--text-primary);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

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

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Reveal animations */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s var(--ease);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Navbar mobile */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 0 40px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1rem;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-img-wrapper {
        aspect-ratio: 4/3;
    }
    
    /* Gallery Carousel */
    .carousel-media-item {
        width: 220px;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .gallery-carousel {
        gap: 8px;
    }

    .hero-socials {
        left: 16px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        margin-top: 20px;
    }
    
    .map-wrapper {
        height: 220px;
    }
    
    /* Modal */
    .modal {
        padding: 24px;
        width: 95%;
        max-height: 90vh;
    }
    
    .barber-options {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Pricing */
    .pricing-tabs {
        gap: 0;
    }
    
    .pricing-tab {
        padding: 12px 16px;
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-blackletter {
        font-size: 3.5rem;
    }
    
    .hero-title-script {
        font-size: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .carousel-media-item {
        width: 100%;
        max-width: 280px;
    }
    
    .carousel-slide {
        padding: 0;
        gap: 8px;
    }
    
    .carousel-arrow {
        width: 32px;
        height: 32px;
    }
    
    .hero-socials {
        left: 12px;
        gap: 10px;
    }
    
    .hero-social-icon {
        width: 36px;
        height: 36px;
    }
    
    .barber-options {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .step {
        font-size: 0.65rem;
    }
}

/* ===== PHONE VERIFICATION ===== */
.step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.phone-verify-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phone-input-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.phone-prefix {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-right: none;
    padding: 12px 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
}

.phone-input-row input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.phone-input-row input:focus {
    border-color: var(--accent);
}

.btn-send-code,
.btn-verify,
.btn-resend {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
}

.btn-resend {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.verify-code-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-status {
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.verify-status.success {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.verify-status.error {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.verify-status.info {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

/* reCAPTCHA container */
#recaptcha-container,
#recaptcha-container-profile {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

/* SMS Verify Overlay */
.sms-verify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 20px;
}

.sms-verify-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 24px;
    max-width: 380px;
    width: 100%;
    text-align: center;
}

.sms-verify-box h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.sms-verify-box .step-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.sms-verify-box .form-group {
    text-align: left;
}

/* ===== SERVICE - CONTACT INFO CARD ===== */
.service-price-contact {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    font-weight: 400 !important;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.08), rgba(196, 167, 125, 0.02));
    border: 1px solid rgba(196, 167, 125, 0.25);
    padding: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
    animation: fadeSlideUp 0.3s var(--ease);
}

.contact-info-card-icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 4px;
}

.contact-info-card-phone {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 8px;
    transition: opacity 0.3s;
}

.contact-info-card-phone:hover {
    opacity: 0.8;
}

/* ===== PRICING CONTACT ===== */
.price-contact {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}

/* ===== NAVBAR PROFILE BUTTON ===== */
.nav-link-profile {
    color: var(--accent) !important;
    font-weight: 600;
    position: relative;
}

.nav-link-profile::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link-profile:hover::before {
    transform: scaleX(1);
}

/* ===== PROFILE MODAL ===== */
.modal-profile {
    max-width: 600px;
}

.profile-panel {
    display: none;
}

.profile-panel.active {
    display: block;
    animation: fadeSlideUp 0.4s var(--ease);
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.profile-tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
}

.profile-tab:hover {
    color: var(--text-primary);
}

.profile-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Appointment Cards */
.profile-appointments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 50vh;
    overflow-y: auto;
}

.appointment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 16px;
    transition: all 0.3s;
}

.appointment-card:hover {
    border-color: rgba(196, 167, 125, 0.3);
}

.appointment-card.past {
    opacity: 0.6;
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.appointment-date {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.appointment-status {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.status-confirmed {
    background: rgba(74, 222, 128, 0.1);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.status-cancelled {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.status-completed {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.appointment-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.appointment-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

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

.appointment-actions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

.btn-danger {
    background: transparent;
    border: 1px solid rgba(248, 113, 113, 0.4);
    color: #f87171;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.btn-danger:hover {
    background: rgba(248, 113, 113, 0.1);
    border-color: #f87171;
}

.appointments-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.appointments-loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== MODAL SCROLLBAR ===== */
.modal::-webkit-scrollbar {
    width: 4px;
}

.modal::-webkit-scrollbar-thumb {
    background: var(--border);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--accent);
    color: var(--bg-primary);
}
