:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #8b7355;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f8f8;
    --bg-section: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

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

.parallax-container {
    position: relative;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /*
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
                url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') center/cover;
    */
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
                url('/static/img/back3.jpg') center/cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    max-width: 700px;
    width: 90%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: fadeInScale 1s ease-out;
}

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

.hero-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-subcopy {
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.hero-subcopy a,
.hero-subcopy a[href^="tel:"] {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    background: rgba(0,0,0,0.35);
    color: var(--text-light);
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
}

.rating-badge .fa-star { color: #ffd166; }

.rating-score { font-weight: 700; }

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

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

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
}

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

/* Barbers Section */
.barbers-section {
    padding: 100px 0;
    position: relative;
    background: var(--primary-color);
    color: var(--text-light);
}

.barbers-bg {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><pattern id="p" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23d4af37" opacity="0.3"/></pattern><rect width="1920" height="1080" fill="url(%23p)"/></svg>');
}

.barbers-section .section-title {
    color: var(--text-light);
}

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.barber-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.barber-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.barber-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

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

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

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

.barber-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.barber-title {
    color: #999;
    margin-bottom: 1rem;
}

.barber-bio {
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.barber-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.barber-specialties span {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.barber-credentials {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: italic;
    text-align: center;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.map-container iframe {
    border-radius: 10px;
    flex: 1;
}

.map-container .directions-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-top: 0;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.directions-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.booking-section .section-title {
    color: var(--text-light);
}

.booking-intro {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.booking-hours {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(209, 148, 81, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.booking-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.popular-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto 1.5rem;
    max-width: 900px;
}

.service-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 0.75rem;
    align-items: center;
}

.pill-title { font-weight: 700; color: #fff; }
.pill-meta { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.pill-book {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 0;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.availability-note {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.booking-button {
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.booking-button.primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.booking-button.secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.booking-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.walk-in-note {
    opacity: 0.7;
    font-style: italic;
}

/* Booking Disabled Styles */
.booking-notice {
    background: rgba(209, 148, 81, 0.15);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.notice-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.notice-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.notice-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.notice-subtext {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* Mobile sticky CTA adjustments for booking disabled */
.mobile-sticky-cta .primary-call {
    flex: 1;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

/* Make pill-book links look like buttons when booking is disabled */
a.pill-book {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

a.pill-book:hover {
    transform: scale(1.05);
    background: var(--text-light);
    color: var(--primary-color);
}

/* Vagaro Modal */
.vagaro-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.vagaro-modal-content {
    background-color: #fefefe;
    margin: 2% auto;
    padding: 0;
    width: 95%;
    max-width: 600px; /* Optimized for Vagaro widget */
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

.vagaro-close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.vagaro-close:hover,
.vagaro-close:focus {
    color: var(--secondary-color);
}

.vagaro-widget-container {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Vagaro loading state */
.vagaro-loading {
    padding: 40px;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.vagaro-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Force Vagaro content to be responsive */
.vagaro, #vagaro-embed {
    width: 100% !important;
    max-width: 500px;
}

/* Mobile-specific Vagaro modal styles */
@media (max-width: 768px) {
    .vagaro-modal-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        max-width: 100%;
    }
    
    .vagaro-widget-container {
        padding: 10px;
        height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .vagaro-close {
        right: 15px;
        top: 15px;
        font-size: 40px;
        background: rgba(255, 255, 255, 0.9);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    /* Ensure Vagaro fills mobile width */
    .vagaro, #vagaro-embed {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
    }
}

#vagaro-frame {
    border-radius: 5px;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
    opacity: 0.9;
}

.about-summary {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead-summary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

.footer-trust {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Trust Strip */
.trust-strip {
    background: #111;
    color: #ddd;
    padding: 0.75rem 0;
}

.trust-items {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

.trust-items li { display: flex; gap: 0.5rem; align-items: center; }
.trust-payments i { font-size: 1.4rem; opacity: 0.85; }

/* Booking Success Modal */
.booking-success-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.booking-success-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-success-content {
    background-color: #fefefe;
    padding: 3rem 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.booking-success-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.booking-success-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-close-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    display: none;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 1200;
}

.mobile-sticky-cta .sticky-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

.sticky-btn.book { background: var(--secondary-color); color: var(--primary-color); border: none; }
.sticky-btn.call { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }

@media (max-width: 768px) {
    .mobile-sticky-cta { display: flex; }
    .popular-services { grid-template-columns: 1fr; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* AOS-like animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

[data-aos="flip-left"] {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: all 0.8s ease;
}

.aos-animate {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) rotateY(0) !important;
}

/* Prevent horizontal overflow */
section {
    overflow-x: hidden;
}

.parallax-container {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .barbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Ensure no horizontal overflow on mobile */
    * {
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 15px;
    }
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-logo {
        max-width: 450px;
    }
    
    /* Use vertical barber pole image on mobile */
    .parallax-bg {
        background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
                    url('/static/img/back-v-2.jpg') center/cover;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .barbers-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}