/* Reset and Base Styles */
:root {
    --accent-color: #00bfff; /* vibrant blue from neon sign */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    background: url('images/levelz-cover1.jpeg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
  /*  background: rgba(20, 24, 32, 0.45); */
    z-index: 0;
    pointer-events: none;
}

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

/* Header Styles */
.header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
}

/* Nav Logo Styles */
.logo-img {
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.btn-book {
    background: var(--accent-color);
    color: #000;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

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

/* Ensure hamburger is hidden on larger screens */
@media (min-width: 993px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        height: auto !important;
        width: auto !important;
        padding-top: 0 !important;
        left: 0 !important;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('images/levelz-cover1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Animation Classes */
.hero-logo-fade {
    max-width: 600px;
    width: 100%;
    display: block;
    margin: 0 auto 2rem auto;
    opacity: 0;
    transform: translateY(-50px);
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

.hero-text-fade {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-btn-fade {
    opacity: 0;
    transform: translateX(50px);
}

.hero-title-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--accent-color);
    color: #000;
}

.btn-small:hover {
    background: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.btn-outline-white:hover, .btn-outline-white:focus {
    background: #fff;
    color: #000;
    border-color: #fff;
    text-decoration: none;
}

/* Section Styles */
section {
    padding: 4rem 0;
    scroll-margin-top: 90px;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Services Overview */
.services-overview {
    background: #f8f8f8;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

/* Team Preview */
.team-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #eee;
    margin: 0 auto 1rem auto;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card p {
    color: #666;
    font-size: 0.9rem;
}

.team-card .team-photo {
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
}

.team-card:hover .team-photo {
    transform: translateY(-18px) scale(1.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2;
}

/* Reviews Section */
.reviews {
    background: #f8f8f8;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.reviews-widget {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Services Page */
.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-info p {
    color: #666;
    font-size: 0.9rem;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-price span {
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 80px;
}

/* Barbers Page */
.barbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.barber-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.barber-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 auto 1.5rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle fill="%23ddd" cx="100" cy="100" r="100"/><text x="100" y="105" font-family="Arial" font-size="16" fill="%23999" text-anchor="middle">Barber Photo</text></svg>');
}

.barber-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.barber-info h4 {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.barber-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.barber-years {
    font-size: 0.98rem;
    color: #888;
    margin-bottom: 0.2rem;
}

.barber-specialty {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.barber-instagram {
    display: inline-block;
    margin-top: 0.7rem;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.barber-instagram:hover {
    color: #222;
    text-decoration: underline;
}

.barber-profile-card .barber-photo {
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
}

.barber-profile-card:hover .barber-photo {
    transform: translateY(-18px) scale(1.07);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2;
}

/* Products Page */
.product-note {
    font-size: 1.1rem;
    font-weight: 500;
    color: #222;
    background: #f7f7f7;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 6px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 1.5rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
    position: relative;
}
.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.product-image-zoom {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}
.product-image-zoom:hover img {
    transform: scale(1.08);
}
.zoom-icon {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    pointer-events: none;
}
.product-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}
.product-card p {
    color: #444;
    font-size: 0.98rem;
    text-align: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    grid-auto-rows: 200px;
}


/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-section p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

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

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
    scroll-margin-top: 90px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }
    
    .btn.btn-primary {
        margin-top: 1rem;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-price {
        width: 100%;
        justify-content: space-between;
    }
    
    .barbers-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .team-preview h2,
    .reviews h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Page Hero Background */
.booking-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/levelz-cover1.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.booking-iframe-wrapper {
    max-width: 700px;
    margin: 2rem auto 0 auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.barber-profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2.5rem;
    justify-content: center;
    align-items: stretch;
    padding-left: 2.5rem;
    padding-right: 0;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.barber-profile-card {
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 18px;
    /* box-shadow: none !important; */
    padding: 2rem 2rem 1.5rem 2rem;
    max-width: 340px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* transition: box-shadow 0.3s; */
    color: #222;
    border: 1px solid #ececec;
}

.barber-profile-card .barber-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 3px solid var(--accent-color);
    background: #eee;
}

.barber-profile-card .barber-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.barber-profile-info {
    text-align: center;
}

.barber-title {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.barber-bio {
    color: #444;
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .barber-profiles {
        grid-template-columns: 1fr;
        padding-left: 0.5rem;
        padding-right: 0;
    }
    .barber-profile-card {
        max-width: 95vw;
    }
}

.booksy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.65);
    align-items: center;
    justify-content: center;
}

.booksy-modal-content {
    background: #fff;
    margin: 5vh auto;
    border-radius: 16px;
    max-width: 700px;
    width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    position: relative;
    padding: 0;
    animation: booksyModalIn 0.35s cubic-bezier(.4,0,.2,1);
}

@keyframes booksyModalIn {
    from { transform: translateY(60px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.booksy-modal-content iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 0 0 16px 16px;
    display: block;
}

.booksy-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.booksy-modal-close:hover {
    color: var(--accent-color);
}

@media (max-width: 700px) {
    .booksy-modal-content iframe {
        height: 400px;
    }
}

/* Booksy Widget Button Fade-in */
.booksy-widget__button, .booksy-widget-button, button[data-booksy-widget] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
    margin-left: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    display: inline-block;
}
.booksy-widget__button.visible, .booksy-widget-button.visible, button[data-booksy-widget].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Book Now button */
#nav-book-placeholder,
#hero-book-now,
#services-book-now,
#gallery-book-now {
    font-size: 1.18rem;
    padding: 1rem 2.2rem;
    border-radius: 6px;
}

/* Hero Book Now button */
.hero-buttons .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(20px);
}
.hero-buttons .btn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.3s;
}
.product-modal.open {
    display: flex;
}
.product-modal-img {
    max-width: 90vw;
    max-height: 70vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
    margin-bottom: 1rem;
}
.product-modal-caption {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.product-modal-close {
    position: absolute;
    top: 24px;
    right: 36px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.product-modal-close:hover {
    color: var(--accent-color);
}
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-modal-img {
        max-width: 98vw;
        max-height: 50vh;
    }
}

.gallery-masonry {
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem 0;
}

.snapwidget-widget {
    width: 100%;
    min-height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* Gallery Masonry Grid - Desktop (3 columns optimized) */
.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1rem;
}

.gallery-img {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s cubic-bezier(.4,0,.2,1), transform 1.1s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease;
}

.gallery-img img, .gallery-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Optimized masonry spans - fewer tall spans to show more detail */
.gallery-img:nth-child(1) { grid-row: span 2; }
.gallery-img:nth-child(6) { grid-row: span 2; }
.gallery-img:nth-child(10) { grid-row: span 2; }
.gallery-img:nth-child(15) { grid-row: span 2; }

/* Video Gallery Styles */
.gallery-video {
    position: relative;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.play-icon {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.gallery-video:hover .video-overlay {
    opacity: 0.8;
}

.gallery-video:hover .play-icon {
    transform: scale(1.2);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
    transform: scale(1) translateX(0);
}

.modal-video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
    transform: scale(1) translateX(0);
}

.modal-image.transitioning,
.modal-video.transitioning {
    opacity: 0;
    transform: scale(0.95) translateX(0);
}

.modal-image.slide-next,
.modal-video.slide-next {
    transform: scale(0.95) translateX(30px);
}

.modal-image.slide-prev,
.modal-video.slide-prev {
    transform: scale(0.95) translateX(-30px);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ccc;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(255,255,255,0.2);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}

/* Instagram Gallery Items */
.gallery-item {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s cubic-bezier(.4,0,.2,1), transform 1.1s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease;
    break-inside: avoid;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Instagram embed styling */
.gallery-item .instagram-media {
    border-radius: 12px !important;
    box-shadow: none !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: auto !important;
}

/* Make sure Instagram embeds load smoothly */
.gallery-item iframe {
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Instagram placeholder styling */
.instagram-placeholder {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-placeholder-content {
    width: 100%;
}

.instagram-placeholder .instagram-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instagram-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.instagram-placeholder p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.instagram-placeholder .instagram-link {
    display: inline-block;
    background: white;
    color: #833ab4;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-placeholder .instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-img.visible:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-img.visible:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-img.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 900px) {
    .gallery-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(250px, auto);
        gap: 0.8rem;
    }
    
    /* Simplified masonry spans for tablet - preserve width */
    .gallery-img:nth-child(1) { grid-row: span 2; }
    .gallery-img:nth-child(5) { grid-row: span 2; }
    .gallery-img:nth-child(9) { grid-row: span 2; }
    .gallery-img:nth-child(13) { grid-row: span 2; }
    
    .gallery-img.visible:hover {
        transform: translateY(-6px) scale(1.015);
    }
    
    .gallery-img.visible:hover img {
        transform: scale(1.08) rotate(1.5deg);
    }
}
@media (max-width: 600px) {
    .gallery-masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(300px, auto);
        gap: 0.75rem;
    }
    
    /* Single column for mobile - maximum haircut visibility */
    .gallery-img:nth-child(odd) { grid-row: span 1; }
    .gallery-img:nth-child(even) { grid-row: span 1; }
    
    .gallery-img.visible:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .gallery-img.visible:hover img {
        transform: scale(1.06) rotate(1deg);
    }
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Back Button Styles */
.back-btn {
    position: fixed;
    top: 120px; /* positioned below the header */
    left: 24px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    border: 2px solid rgba(0,191,255,0.2);
    border-radius: 8px;
    padding: 0.5rem 1.2rem 0.5rem 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 9999;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.back-btn svg {
    width: 1.2em;
    height: 1.2em;
    margin-right: 0.4em;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}
.back-btn:hover, .back-btn:focus {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,191,255,0.3);
}
@media (max-width: 768px) {
    .back-btn {
        top: 90px; /* adjusted for mobile header height */
        left: 16px;
        font-size: 1rem;
        padding: 0.4rem 1rem 0.4rem 0.6rem;
        border-radius: 6px;
    }
    .back-btn svg {
        width: 1.1em;
        height: 1.1em;
        margin-right: 0.3em;
    }
}

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

.services-list-container {
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  background: #fff;
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.services-list-container .service-card {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid #ececec;
  border-radius: 0;
  padding: 1.2rem 0;
  margin: 0;
  background: transparent;
  text-align: left;
  width: 100%;
}
.services-list-container .service-card:last-child {
  border-bottom: none;
}
@media (max-width: 600px) {
  .services-list-container {
    padding: 1rem 0.5rem;
    max-width: 98vw;
  }
}

.services-footer-note {
  border-top: 2px double #bbb;
  margin: 2.5rem auto 0 auto;
  padding-top: 1rem;
  color: #666;
  font-size: 0.98rem;
  text-align: center;
  max-width: 500px;
}
.services-footer-note a {
  color: var(--accent-color);
  text-decoration: underline;
}
.services-footer-note a:hover {
  text-decoration: none;
}

.service-card.service-note {
  border-bottom: none;
  color: #888;
  font-style: italic;
  background: none;
  text-align: left;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.service-card.service-note a {
  color: var(--accent-color);
  text-decoration: underline;
}
.service-card.service-note a:hover {
  text-decoration: none;
}

.service-card.service-note ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 0.98rem;
  color: #888;
}
.service-card.service-note li {
  margin-bottom: 0.2em;
  list-style: disc inside;
}
.service-card.service-note strong {
  color: #444;
}

.service-note-bullets {
  font-size: 0.98rem;
  color: #888;
  line-height: 1.7;
  padding-left: 0.2em;
  font-family: inherit;
}
.service-note-bullets strong {
  color: #444;
}
.service-note-bullets br + **, .service-note-bullets .double-star {
  font-weight: bold;
  color: #222;
}

.about-section {
  background: #f8f8fa;
  border-left: 6px solid var(--accent-color);
  margin: 0 auto 3rem auto;
  padding: 3rem 0 2.5rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.about-section .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem 0 3.5rem;
  position: relative;
  z-index: 2;
}
.about-section h2,
.about-section p {
  text-align: left;
}
.about-section::before {
    display: none !important;
}
.about-section::after {
  /* Optionally keep the water splatter, but make it even more subtle or remove if needed */
  opacity: 0.10;
}
.about-section p {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 2.1rem;
  line-height: 2.1;
  letter-spacing: 0.01em;
  max-width: 95%;
}
.about-section h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.7rem;
  color: #222;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .about-section .container {
    padding-left: 1.2rem;
  }
  .about-section::after {
    opacity: 0.07;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 1.2rem 0 1rem 0;
    border-left-width: 4px;
  }
  .about-section .container {
    padding: 0 0.7rem 0 1.2rem;
  }
  .about-section p {
    font-size: 1.04rem;
    margin-bottom: 1.3rem;
    line-height: 1.7;
  }
  .about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }
}

.ratings-section {
  background: #f2f3f5;
  padding: 3rem 0 2.5rem 0;
  margin: 0 auto 3rem auto;
  border-left: 6px solid var(--accent-color);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.ratings-section .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ratings-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  color: #222;
  letter-spacing: 0.01em;
  text-align: left;
}
.ratings-inline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3.5rem;
  padding: 0.5rem 0 0.5rem 0;
}
.inline-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: inherit;
  font-size: 1.18rem;
  color: #222;
  font-weight: 500;
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}
.inline-rating-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  margin-right: 0.5rem;
}
.inline-rating-score {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-right: 0.3rem;
  letter-spacing: 0.01em;
}
.inline-rating-value {
  font-size: 1.7rem;
  font-weight: 900;
  color: #222;
  letter-spacing: 0.01em;
}
.inline-rating-source {
  font-size: 1.08rem;
  color: #555;
  font-weight: 600;
  margin-right: 0.3rem;
}
.inline-rating-count {
  font-size: 1.01rem;
  color: #888;
  font-weight: 500;
  margin-right: 0.5rem;
}
.inline-rating-link {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.08rem;
  margin-left: 0.5rem;
  transition: color 0.2s;
}
.inline-rating-link:hover {
  color: #007ca6;
  text-decoration: none;
}
.ratings-inline .inline-rating + .inline-rating {
  position: relative;
}
.ratings-inline .inline-rating + .inline-rating::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 2.2em;
  background: #d1d3d6;
  margin: 0 1.7rem 0 1.2rem;
  vertical-align: middle;
  border-radius: 2px;
}
@media (max-width: 700px) {
  .ratings-section {
    padding: 2rem 0 1.5rem 0;
    border-left-width: 4px;
  }
  .ratings-section .container {
    padding: 0 0.7rem;
  }
  .ratings-inline {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .ratings-inline .inline-rating + .inline-rating::before {
    display: none;
  }
  .ratings-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }
}

/* Prominent Ratings Section */
.ratings-prominent {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin: 0 auto 2.5rem auto;
    flex-wrap: wrap;
}
.prominent-rating {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    text-align: center;
    min-width: 260px;
    max-width: 340px;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}
.prominent-rating:hover {
    box-shadow: 0 12px 40px rgba(0,191,255,0.18);
}
.prominent-rating-score {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent-color);
    margin: 0.5rem 0 0.7rem 0;
    letter-spacing: 0.01em;
    line-height: 1.1;
}
.prominent-rating-desc {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.1rem;
    font-weight: 500;
}
.prominent-rating-link {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.13rem;
    text-decoration: underline;
    transition: color 0.2s;
}
.prominent-rating-link:hover {
    color: #007ca6;
    text-decoration: none;
}
.prominent-rating .inline-rating-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 0.7rem;
    border-radius: 10px;
    background: #f8f8f8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@media (max-width: 700px) {
    .ratings-prominent {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .prominent-rating {
        min-width: 0;
        width: 100%;
        max-width: 95vw;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    .prominent-rating-score {
        font-size: 2.2rem;
    }
}

/* Reviews Section Heading */
.reviews-title {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 2.2rem;
    letter-spacing: 0.01em;
}

/* Reviews Section Subheading */
.reviews-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #a67c52;
    margin-top: -1.2rem;
    margin-bottom: 2.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Modern, Prominent Stars with Pass-and-Settle Animation and Turn-On Effect */
.combined-rating-stars {
    font-size: 4.2rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.12em;
    display: flex;
    justify-content: center;
    gap: 0.22em;
}
.star {
    color: #bbb;
    background: none;
    border-radius: 0.18em;
    box-shadow: none;
    transition: color 0.35s, text-shadow 0.3s, filter 0.3s, transform 0.25s;
    opacity: 0.92;
    filter: brightness(0.85);
    animation: none;
    font-size: 1em;
    transform: scale(1) translateX(0);
    padding: 0;
    margin: 0 0.04em;
    outline: none;
}
.star.lit {
    color: #FFD700;
    opacity: 1;
    text-shadow: 0 2px 24px #ffe066, 0 0px 16px #ffecb3;
    filter: brightness(1.12) drop-shadow(0 0 16px #ffe066);
    transition: color 0.35s, text-shadow 0.35s, filter 0.35s;
}
.star.settle {
    animation: starPassSettle 0.9s cubic-bezier(.4,1.6,.4,1) both;
}
@keyframes starPassSettle {
    0% { transform: scale(0.2) translateX(-30px); opacity: 0.2; color: #bbb; filter: brightness(0.85); }
    40% { transform: scale(1.25) translateX(18px); opacity: 1; color: #FFD700; filter: brightness(1.25); }
    60% { transform: scale(0.92) translateX(-8px); color: #FFD700; filter: brightness(1.15); }
    80% { transform: scale(1.08) translateX(3px); color: #FFD700; filter: brightness(1.15); }
    100% { transform: scale(1) translateX(0); color: #FFD700; filter: brightness(1.15); }
}
.star.lit:hover {
    filter: brightness(1.25) drop-shadow(0 0 24px #ffe066);
    transform: scale(1.18) translateX(0);
    text-shadow: 0 2px 32px #ffe066, 0 0px 24px #ffecb3;
    transition: filter 0.22s, transform 0.22s, text-shadow 0.22s;
    cursor: pointer;
}
.combined-rating-score {
    font-size: 3.3rem;
    font-weight: 900;
    color: var(--accent-color);
    margin: 0.5rem 0 0.7rem 0;
    letter-spacing: 0.01em;
    line-height: 1.1;
}
@media (max-width: 700px) {
    .reviews-title {
        font-size: 2rem;
    }
    .reviews-subtitle {
        font-size: 1.05rem;
    }
    .combined-rating-stars {
        font-size: 2.3rem;
    }
    .combined-rating-score {
        font-size: 2.1rem;
    }
}

.hero-logo-header, .hero-subheadline {
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.hero-logo-header.scrolled, .hero-subheadline.scrolled {
    opacity: 0;
    transform: translateY(-40px) scale(0.92);
    pointer-events: none;
}

.current-rating-label {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0.15rem !important;
    padding-bottom: 0 !important;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.1;
}
.combined-rating-score {
    margin-bottom: 0.1rem !important;
    padding-bottom: 0 !important;
}

.section-white {
    background: #fff;
    position: relative;
    z-index: 1;
}
.section-grey {
    background: #f2f3f5;
    position: relative;
    z-index: 1;
}
.section-transparent {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(2.5px);
    position: relative;
    z-index: 1;
}
.section-transparent-bg {
    background: transparent;
    position: relative;
    z-index: 1;
}
.section-transparent-bg > .container {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(2.5px);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
}

@media (hover: none) and (pointer: coarse) {
  .btn:active, .btn:focus {
    transform: scale(0.96);
    box-shadow: 0 2px 16px rgba(0,191,255,0.18);
    transition: transform 0.12s, box-shadow 0.12s;
  }
  .service-card:active, .team-card:active, .product-card:active {
    transform: scale(0.97);
    box-shadow: 0 4px 24px rgba(0,191,255,0.13);
    transition: transform 0.13s, box-shadow 0.13s;
  }
  .gallery-img.visible:active {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(0,191,255,0.18);
    transition: transform 0.18s, box-shadow 0.18s;
    z-index: 2;
    position: relative;
  }
  .barber-profile-card:active {
    transform: scale(1.03);
    box-shadow: 0 0 0 4px rgba(0,191,255,0.13), 0 8px 32px rgba(0,191,255,0.10);
    transition: transform 0.13s, box-shadow 0.13s;
    z-index: 2;
    position: relative;
  }
}

.team-header-white {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 0px 4px #222;
}

.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #222;
    text-shadow: none;
}

.contact-info-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.2rem 2rem 1.5rem 2rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    width: 100%;
}
.contact-header-white {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 0px 4px #222;
}

.hero-subheadline {
    margin-top: 0;
    padding-top: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-subheadline.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo-header {
    margin-bottom: 0.2rem;
    padding-bottom: 0;
}

/* Back to Top Button Styles */
#backToTopBtn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.65);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), background 0.2s;
  backdrop-filter: blur(2px);
}
#backToTopBtn.visible {
  opacity: 1;
  pointer-events: auto;
}
#backToTopBtn:hover, #backToTopBtn:focus {
  background: rgba(60, 60, 60, 0.85);
  outline: none;
}

.reviews-pros-note {
  text-align: center;
  color: #a67c52;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.current-rating-label {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.booksy-hero-btn {
  margin-top: 1.5rem;
}

.team-badge {
  text-align: center;
  font-size: 0.95em;
  color: #388e3c;
  background: #e8f5e9;
  border-radius: 6px;
  padding: 2px 8px;
  margin: 0 auto 6px;
  font-weight: 600;
  display: inline-block;
}
.mt-2 { margin-top: 2rem; }
.mt-2-2 { margin-top: 2.2rem; }
.mt-2-5 { margin-top: 2.5rem; }
.ml-1 { margin-left: 1rem; }
.mx-05 { margin: 0 0.5em; }
/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #222;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    justify-content: center;
    padding: 0;
    border: none;
}

.faq-cat-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #fff;
    color: #666;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: inherit;
}

.faq-cat-btn.active,
.faq-cat-btn:hover,
.faq-cat-btn:focus {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,191,255,0.2);
    outline: none;
}

.faq-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.faq-card h3 {
    margin: 0;
    padding: 0;
}

.faq-question {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    width: 100%;
    cursor: pointer;
    padding: 0.5rem 0;
    min-height: 44px;
    color: #333;
    font-family: inherit;
    transition: color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    color: var(--accent-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.3s ease;
}

.faq-answer[hidden] {
    display: block !important;
}

.faq-answer.open {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 0 0.5rem 0;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.faq-answer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a.booksy-trigger {
    background: var(--accent-color);
    color: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.faq-answer a.booksy-trigger:hover {
    background: #0099cc;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-categories {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-cat-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-card {
        padding: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-answer,
    .faq-cat-btn,
    .faq-card,
    .faq-question::after {
        transition: none !important;
    }
}

.footer-review-title { margin-top: 1em; margin-bottom: 0.5em; font-size: 1.05em; }

.lightwidget-widget {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    border: none;
    overflow: hidden;
    margin: 20px auto; /* Center the widget */
    display: block;
    background-color: rgba(255, 255, 255, 0.8); /* Translucent background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Enhanced CTA Buttons Styling */
.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 12px;
    margin: 3rem auto;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-buttons-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

.cta-btn {
    min-width: 220px;
    padding: 1rem 2.5rem !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    border: 2px solid transparent !important;
}

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

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

.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s;
}

/* White/Review button styling */
.btn-outline-white.cta-btn {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
    font-weight: 700 !important;
}

.btn-outline-white.cta-btn:hover {
    background: var(--accent-color) !important;
    color: #000 !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Book now button styling */
.btn-primary.cta-btn {
    background: var(--accent-color) !important;
    color: #000 !important;
    border: 2px solid var(--accent-color) !important;
    font-weight: 700 !important;
}

.btn-primary.cta-btn:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Add subtle pulsing effect to draw attention */
.cta-buttons-wrapper {
    animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
    }
}

/* Mobile responsiveness for CTA buttons */
@media (max-width: 768px) {
    .cta-buttons-wrapper {
        padding: 2rem 1.5rem;
        gap: 1rem;
        margin: 2rem auto;
        max-width: 95%;
    }
    
    .cta-btn {
        min-width: 200px;
        padding: 0.9rem 2rem !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .cta-buttons-wrapper {
        flex-direction: column;
        padding: 1.5rem 1rem;
    }
    
    .cta-btn {
        width: 100%;
        min-width: unset;
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }
}
