/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #F5F5DC;
    background: #2D1B4E;
    overflow-x: hidden;
}

/* Elegant Purple/Burgundy & Rose Gold Color Scheme */
:root {
    --primary-color: #C9A961; /* Rose gold accent */
    --secondary-color: #B8945F; /* Darker rose gold */
    --accent-color: #E8D4B0; /* Light rose gold/cream */
    --text-dark: #F5F5DC; /* Cream text */
    --text-light: #D7CCC8; /* Light beige text */
    --bg-light: #5D2E46; /* Burgundy */
    --bg-white: #2D1B4E; /* Deep purple */
    --bg-dark: #1A0F2E; /* Dark purple */
    --bg-card: #3D2A4E; /* Purple card background */
    --shadow: 0 4px 20px rgba(26, 15, 46, 0.4);
    --shadow-hover: 0 8px 30px rgba(26, 15, 46, 0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 27, 78, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #5D2E46 0%, #2D1B4E 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23C9A961" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 300px;
    position: relative;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
}

.card-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hours p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 50px 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.service-card {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

/* Removed shine animation for performance */

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card:not(.twists-bg):not(.braids-bg):not(.locs-bg) h3 {
    color: var(--primary-color);
}

.service-card:not(.twists-bg):not(.braids-bg):not(.locs-bg) p {
    color: var(--text-light);
}

.service-card.twists-bg h3,
.service-card.braids-bg h3,
.service-card.locs-bg h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-card.twists-bg p,
.service-card.braids-bg p,
.service-card.locs-bg p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.price {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery {
    padding: 50px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.8;
}

.gallery-placeholder p {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    font-family: inherit;
    background: rgba(201, 169, 97, 0.05);
    color: var(--text-dark);
    transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(201, 169, 97, 0.1);
}

.contact-form select {
    color: var(--text-dark);
    background: rgba(201, 169, 97, 0.05);
}

.contact-form textarea {
    height: 100px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    opacity: 0.8;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1.2rem;
}
.footer-social a {
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.contact-map {
    margin-top: 0.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed heavy animations for performance */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        background-color: rgba(45, 27, 78, 0.98);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 0.3rem 0;
        box-shadow: 0 10px 27px rgba(26, 15, 46, 0.5);
        height: auto;
        max-height: calc(100vh - 70px);
    }
    
    .nav-menu.active li {
        margin: 0.2rem 0;
    }
    
    .nav-menu.active a {
        padding: 4px 0;
        min-height: 32px;
        font-size: 0.9rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
    
    .floating-card {
        margin-top: 2rem;
        max-width: 280px;
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0 5px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .floating-card {
        max-width: 260px;
        padding: 1.2rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 1.2rem;
        margin: 0 5px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn {
        min-height: 44px; /* Apple's recommended minimum touch target size */
    }
    
    .nav-menu a {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .services {
        padding: 60px 0;
    }
    
    .gallery {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    /* Improve form usability on mobile */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        border-radius: 8px;
        border: 2px solid rgba(201, 169, 97, 0.2);
        background: rgba(201, 169, 97, 0.05);
        color: var(--text-dark);
    }
    
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.3);
        background: rgba(201, 169, 97, 0.1);
    }
    
    /* Better button spacing */
    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    /* Improve service card touch */
    .service-card {
        cursor: pointer;
        user-select: none;
    }
    
    /* Better gallery touch */
    .gallery-item {
        cursor: pointer;
    }
    
    /* Improve scroll-to-top button */
    .scroll-to-top-btn {
        width: 56px;
        height: 56px;
        bottom: 30px;
        right: 30px;
    }
}

/* Removed heavy animations for performance */

/* Desktop Hamburger Menu Styles */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    background-color: rgba(45, 27, 78, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 0.5rem 0;
    box-shadow: 0 10px 27px rgba(26, 15, 46, 0.5);
    text-align: center;
    height: auto;
    max-height: calc(100vh - 70px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-menu.active li {
    margin: 0.3rem 0;
}

.nav-menu.active a {
    padding: 6px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

/* Hamburger Animation for All Screens */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Nav Appointment Button */
.nav-appointment-btn {
    background: linear-gradient(135deg, #C9A961, #B8945F);
    color: #1A0F2E !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
    margin-left: 10px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    border: none;
    display: inline-block;
}

.nav-appointment-btn:hover, .nav-appointment-btn:focus {
    background: linear-gradient(135deg, #B8945F, #C9A961);
    color: #1A0F2E !important;
    box-shadow: 0 4px 18px rgba(201, 169, 97, 0.4);
    text-decoration: none;
}

/* Mobile-specific appointment button - completely separate */
@media (max-width: 768px) {
    .nav-menu.active .nav-appointment-btn {
        width: 80%;
        margin: 0.1rem auto 0 auto;
        display: block !important;
        text-align: center;
        font-size: 0.8rem;
        padding: 2px 0 !important;
        min-height: 28px;
        background: linear-gradient(135deg, #C9A961, #B8945F) !important;
        color: #1A0F2E !important;
        border-radius: 20px;
        font-weight: 600;
        box-shadow: 0 1px 5px rgba(201, 169, 97, 0.3);
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
    }
}

@media (max-width: 768px) {
    /* Debug: Make sure the list item containing the button is visible */
    .nav-menu.active li:last-child {
        display: block !important;
        margin: 0.2rem 0 !important;
    }
}

/* Working Hours Section */
.hours-section {
    background: var(--bg-light);
    padding: 50px 0;
}
.hours-content {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
}
.hours-content p {
    margin-bottom: 0.7rem;
}

/* About Section */
.about-section {
    background: var(--bg-dark);
    padding: 50px 0;
}
.about-content {
    max-width: 700px;
    margin: 1.5rem auto 0 auto;
    text-align: center;
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Google Reviews Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 50px 0;
}
.testimonials-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.google-review {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.google-review:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
}
.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.8;
}
.google-review blockquote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
}
.google-reviews-cta {
    text-align: center;
    margin-top: 3rem;
}
.google-reviews-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hours-section, .about-section, .testimonials-section {
        padding: 40px 0;
    }
    .testimonials-content blockquote {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
    .about-content {
        font-size: 1rem;
        padding: 0 10px;
    }
    .hours-content {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
        gap: 1.5rem;
    }
    .contact-map iframe {
        height: 160px;
    }
}

/* --- Testimonials Carousel --- */
.google-review { display: none; }
.google-review.active { display: block; }
.testimonials-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--primary-color); }

/* --- Booking Modal --- */
.booking-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 15, 46, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.booking-modal {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(26, 15, 46, 0.6);
  padding: 2rem 1.5rem;
  max-width: 400px;
  width: 95%;
  position: relative;
  border: 1px solid rgba(201, 169, 97, 0.2);
  color: var(--text-dark);
}
.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.booking-modal-close:hover {
  color: var(--text-dark);
}

/* --- Scroll to Top Button --- */
.scroll-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1500;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1);
}

/* --- Open/Closed Indicator --- */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 1rem;
  padding: 0.3em 0.9em;
  border-radius: 20px;
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 2px solid #4CAF50;
  transition: all 0.3s ease;
}
.open-status.closed {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 2px solid #F44336;
}

@media (max-width: 768px) {
  .booking-modal { padding: 1.2rem 0.5rem; }
  .scroll-to-top-btn { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1.2rem; }
}

/* Service Details Page Styles */
.services-detail-section {
    padding: 60px 0;
    background: var(--bg-white);
}
.services-detail-section:nth-child(even) {
    background: var(--bg-light);
}
.services-detail-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-item {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.service-item-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}
.service-price {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.service-item-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.service-book-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    .services-detail-section {
        padding: 40px 0;
    }
    .service-item {
        padding: 1.2rem;
    }
    .service-item-content h3 {
        font-size: 1.2rem;
    }
    .service-price {
        font-size: 1.3rem;
    }
}

.service-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #eee;
    display: block;
}
@media (max-width: 768px) {
    .service-photo {
        height: 120px;
    }
}

.service-card.twists-bg {
    background: url('Twists.png') center center/cover no-repeat;
    color: #fff;
    position: relative;
}
.service-card.braids-bg {
    background: url('https://via.placeholder.com/300x180?text=Braid+Styles') center center/cover no-repeat;
    color: #fff;
    position: relative;
}
.service-card.locs-bg {
    background: url('https://via.placeholder.com/300x180?text=Loc+Styles') center center/cover no-repeat;
    color: #fff;
    position: relative;
}
.service-card.twists-bg::before,
.service-card.braids-bg::before,
.service-card.locs-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    border-radius: 20px;
    z-index: 0;
}
.service-card h3,
.service-card p,
.service-card a {
    position: relative;
    z-index: 1;
}
.service-card a.btn {
    background: rgba(255,255,255,0.85);
    color: var(--primary-color) !important;
    font-weight: 700;
    margin-top: 1rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.service-card a.btn:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.service-card.twists-bg, .service-card.braids-bg, .service-card.locs-bg {
    min-height: 320px;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    box-sizing: border-box;
    overflow: hidden;
}
@media (max-width: 768px) {
    .service-card.twists-bg, .service-card.braids-bg, .service-card.locs-bg {
        min-height: 180px;
        height: 220px;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}
.service-card h3, .service-card p, .service-card a {
    margin-bottom: 0.3rem;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Back to Home Button */
.back-to-home-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-to-home-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .back-to-home-btn {
        bottom: 16px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
