/* Modern Beauty Salon CSS - Light Theme */
:root {
    /* Luxury Color Palette - Light Theme */
    --primary-color: #d4a574;
    --primary-dark: #b8956a;
    --secondary-color: #f5f1eb;
    --accent-color: #8b7355;
    --dark-color: #2c2c2c;
    --light-color: #ffffff;
    --gray-color: #6c757d;
    --black-color: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #d4a574 0%, #b8956a 100%);
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(44, 44, 44, 0.75) 100%
    );

    /* Typography */
    --font-primary: "Playfair Display", serif;
    --font-secondary: "Poppins", sans-serif;
    --font-script: "Dancing Script", cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --border-radius: 15px;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Remove the general ::after rule and replace with specific positioning */
.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

/* Remove the old ::after rule completely and replace with this */
.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Better solution - Position line under script text specifically */
.script-text {
    font-family: var(--font-script);
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.script-text::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Remove the line from section-title when it contains script-text */
.section-title:has(.script-text)::after {
    display: none;
}

/* Alternative approach if :has() doesn't work in older browsers */
.section-title.has-script::after {
    display: none;
}

/* Specific positioning for different heading patterns */
.about-section .section-title::after {
    left: calc(50% + 20px); /* Adjust based on your "Jessica" positioning */
}

.services-section .section-title::after {
    left: calc(50% + 30px); /* Adjust based on your "Premium" positioning */
}

.gallery-section .section-title::after {
    left: calc(50% + 15px); /* Adjust based on your "Work" positioning */
}

.reviews-section .section-title::after {
    left: calc(50% + 25px); /* Adjust based on your "Clients" positioning */
}

.contact-section .section-title::after {
    left: calc(50% + 20px); /* Adjust based on your "Studio" positioning */
}

.contact-us-section .section-title::after {
    left: calc(50% + 35px); /* Adjust based on your "Booking?" positioning */
}
.hero-section .script-text::after {
    display: none;
}
.service-hero-section .script-text::after {
    display: none;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Sticky Top Bar Styles */
.sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #20b2aa 0%, #91D1CE 100%);
    color: white;
    padding: 0.75rem 0;
    z-index: 9999; /* Above your navbar which is likely z-index 1000 */
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 15px rgba(32, 178, 170, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sticky-top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar-message {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-top-bar {
    background: white;
    color: #20b2aa;
    border: 2px solid white;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-top-bar:hover::before {
    left: 100%;
}

.btn-top-bar:hover {
    background: #f8f9fa;
    color: #17a2a2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.btn-top-bar i {
    color: #20b2aa;
    transition: var(--transition);
}

.btn-top-bar:hover i {
    color: #17a2a2;
}

/* Adjust main navbar to account for top bar */
.navbar-light {
    top: 60px; /* Adjust based on your top bar height */
    transition: top 0.3s ease;
}

.sticky-top-bar.hidden + nav.navbar-light {
    top: 0;
}

/* Adjust page content to account for both bars */
body {
    padding-top: 120px; /* Adjust based on both bars' heights */
    transition: padding-top 0.3s ease;
}

body.top-bar-hidden {
    padding-top: 80px; /* Just navbar height when top bar is hidden */
}

/* Responsive Design */
@media (max-width: 768px) {
    .sticky-top-bar {
        padding: 0.6rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .top-bar-message {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .btn-top-bar {
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
        width: auto;
    }
    
    /* Adjust for mobile stacked layout */
    body {
        padding-top: 140px; /* More space for mobile */
    }
    
    body.top-bar-hidden {
        padding-top: 100px;
    }
    
    .navbar-light {
        top: 80px; /* More space for mobile top bar */
    }
}

@media (max-width: 576px) {
    .top-bar-content {
        padding: 0 1rem;
    }
    
    .top-bar-message {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .btn-top-bar {
        padding: 0.5rem 1.75rem;
        font-size: 0.85rem;
    }
}

/* Animation for smooth appearance */
@keyframes slideDownFade {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-top-bar.appearing {
    animation: slideDownFade 0.3s ease;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .sticky-top-bar {
        border-bottom: 3px solid white;
    }
    
    .btn-top-bar {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .sticky-top-bar,
    .navbar-light,
    body {
        transition: none;
    }
    
    .sticky-top-bar.appearing {
        animation: none;
    }
}
/* Navigation Base Styles */
.navbar-light {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px; /* Set in CSS instead of HTML */
    transform: scale(2); /* Makes logo 30% larger */
    transition: var(--transition);
    margin-left: 1rem;
}
@media (max-width: 768px) {
    .navbar-brand img {
       transform: scale(1.8);
    }
}
.footer-brand img {
    height: 60px; /* Set in CSS instead of HTML */
    transform: scale(2); /* Makes logo 30% larger */
    transition: var(--transition);
    margin-left: 1rem;
}
@media (max-width: 768px) {
    .footer-brand img {
       transform: scale(1.4);
    }
}
/* Desktop Navigation Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 1.5rem;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.75rem 0 !important;
}

.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}

/* Dropdown toggles are excluded from underline animation above */

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Desktop Dropdown - Positioned to the Right */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    background: white;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
    border-top: 3px solid var(--primary-color);
    z-index: 1000;
}

.navbar-nav .dropdown-item {
    padding: 0.875rem 1.5rem;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav .dropdown-item i {
    color: var(--primary-color);
    width: 20px;
}

.navbar-nav .dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover::before {
    width: 4px;
}

.navbar-nav .dropdown-divider {
    margin: 0.5rem 1rem;
    border-color: #eee;
}

/* Override Bootstrap active styling for dropdown items */
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.navbar-nav .dropdown-item.active:hover,
.navbar-nav .dropdown-item:active:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

.navbar-nav .dropdown-toggle::after {
    content: "" !important;
    display: inline-block !important;
    margin-left: 0.5rem;
    vertical-align: 0.255em;
    border-top: 0.3rem solid var(--dark-color);
    border-right: 0.3rem solid transparent;
    border-bottom: 0;
    border-left: 0.3rem solid transparent;
    transition: var(--transition);
}

.navbar-nav .dropdown-toggle:hover::after {
    border-top-color: var(--primary-color);
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
    border-top-color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.menu-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: var(--transition);
    overflow-y: auto;

    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(212, 165, 116, 0.1);
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 100px);
}

/* Mobile Navigation Links */
.mobile-nav {
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-nav-link i {
    width: 24px;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Mobile Services Section */
.mobile-nav-section {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    background: none;
    border: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-toggle:hover {
    color: var(--primary-color);
}

.mobile-nav-toggle i:first-child {
    width: 24px;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.toggle-icon {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1rem !important;
    width: auto !important;
    margin: 0 !important;
}

.mobile-nav-section.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(212, 165, 116, 0.05);
    margin: 0 -2rem;
    padding: 0 2rem;
}

.mobile-nav-section.active .mobile-nav-submenu {
    max-height: 300px;
    padding: 1rem 2rem;
}

.mobile-nav-sublink {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    margin-left: 1rem;
}

.mobile-nav-sublink:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-nav-sublink i {
    width: 20px;
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Mobile Menu CTA */
.mobile-menu-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.mobile-contact-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.mobile-contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

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

.mobile-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Navbar CTA Buttons */
.navbar-cta .btn {
    margin-left: 0.5rem;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.navbar-cta .btn:hover {
    border-color:#00000069;
}
/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        max-width: 100%;
    }

    .mobile-menu-content {
        padding: 1.5rem;
    }

    .mobile-menu-header {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .mobile-menu-content {
        padding: 1rem;
    }

    .mobile-menu-header {
        padding: 1rem;
    }
}

/* Active States */
.mobile-nav-link.active,
.mobile-nav-sublink.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Focus States for Accessibility */
.mobile-nav-toggle:focus,
.mobile-nav-link:focus,
.mobile-nav-sublink:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Footer Enhancements */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom .btn-sm {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
}

/* Mobile Navigation Adjustments */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem;
        color: var(--dark-color);
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }
}
/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.menu-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.menu-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Off-Canvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);

    /* Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) */
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for WebKit browsers */
.offcanvas-menu::-webkit-scrollbar {
    display: none;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-content {
    padding: 2rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.close-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.close-btn:hover {
    background: rgba(212, 165, 116, 0.1);
}

.offcanvas-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Menu Links */
.menu-links {
    margin-bottom: 3rem;
}

.menu-link {
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.menu-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

/* Mobile Menu Services Section */
.menu-section {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.menu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 12px;
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
}

.menu-parent::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: var(--transition);
}

.menu-parent:hover::before {
    left: 100%;
}

.menu-parent:hover {
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-parent:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-parent span {
    color: var(--dark-color);
}

.menu-parent i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(212, 165, 116, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.menu-section.active .menu-parent i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: white;
}

.menu-section.active .menu-parent {
    background: rgba(212, 165, 116, 0.15);
    border-color: var(--primary-color);
}

/* Mobile Submenu */
.menu-submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(212, 165, 116, 0.05) 100%
    );
    margin: 0.5rem 0 1rem 0;
    border-radius: 12px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-section.active .menu-submenu {
    max-height: 400px;
    padding: 1rem 0;
}

.menu-sublink {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
    margin: 0.25rem 1rem;
    position: relative;
}

.menu-sublink::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 8px;
    opacity: 0.2;
}

.menu-sublink:hover {
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.1);
    transform: translateX(0.5rem);
}

.menu-sublink:hover::before {
    width: 4px;
}

.menu-sublink i {
    color: var(--primary-color);
    width: 24px;
    font-size: 1rem;
    margin-right: 0.75rem;
}

/* Menu CTA Buttons */
.menu-cta {
    margin-bottom: 3rem;
}

.menu-cta .btn {
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

/* Menu Contact Section */
.menu-contact {
    margin-top: auto;
}

.menu-contact h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-contact p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.menu-social {
    display: flex;
    gap: 1rem;
}

.menu-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.menu-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Ensure dropdown shows on hover and click */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu {
    display: none;
}

.navbar-nav .dropdown-menu.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offcanvas-menu {
        max-width: 100%;
    }

    .offcanvas-content {
        padding: 1.5rem;
    }

    .menu-parent {
        padding: 0.875rem 1.25rem;
        font-size: 1.1rem;
    }

    .menu-sublink {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    .menu-link {
        font-size: 1.1rem;
        padding: 0.875rem 0;
    }
}

@media (max-width: 576px) {
    .offcanvas-content {
        padding: 1rem;
    }

    .menu-parent {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .menu-sublink {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .menu-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
}

/* Additional States */
.menu-parent:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.25);
}

.menu-sublink:focus {
    outline: none;
    background: rgba(212, 165, 116, 0.1);
}

/* Animation Classes */
@keyframes slideDown {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 400px;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        max-height: 400px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .menu-parent,
    .menu-sublink,
    .menu-submenu,
    .offcanvas-menu {
        transition: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .menu-parent {
        border: 2px solid var(--dark-color);
    }

    .menu-sublink {
        border-bottom: 1px solid var(--gray-color);
    }
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: var(--transition);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
    color: white;
}

/* Secondary Button Styles for Brownish Backgrounds */
.btn-secondary {
    background: var(--dark-color);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: var(--transition);
}

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

.btn-secondary:hover {
    background: var(--black-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 44, 44, 0.4);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: #20b2aa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Hero Section - SAME (Already good contrast) */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
    padding-top: 9rem;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: white;
}

.hero-title .script-text {
    color: var(--primary-color);
    font-size: 4.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: white;
}

.hero-cta {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.9;
    animation: bounce 2s infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-line::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--primary-color);
    animation: scrollLine 2s infinite;
}

/* Services Preview */
.services-preview {
    background: var(--secondary-color);
    padding: var(--section-padding);
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-card.clickable-service {
    cursor: pointer;
}

.service-card.clickable-service:hover {
    border: 2px solid var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.service-price-range {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: -6px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.8rem;
    line-height: 1.2;
}

.certifications {
    margin: 2rem 0;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.cert-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Services Section */
.services-section {
    background: var(--secondary-color);
    padding: var(--section-padding);
}

.service-category {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-category.clickable-service {
    cursor: pointer;
}

.service-category.clickable-service:hover {
    border: 2px solid var(--primary-color);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(26, 26, 26, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-category:hover .service-overlay {
    opacity: 1;
}

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

.service-overlay h3 {
    color: white;
    font-size: 1.8rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.service-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-size: 1rem;
}

.service-details {
    padding: 2rem;
}

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

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

.service-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.service-info p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Gallery Showcase Section */
.gallery-showcase-section {
    padding: var(--section-padding);
    background: white;
}

.gallery-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
    cursor: grab;
}

.gallery-slider:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slideGallery 40s linear infinite;
    will-change: transform;
    gap: 1.5rem;
    padding: 1.5rem;
}

.gallery-track.paused {
    animation-play-state: paused;
}

.gallery-card {
    flex: 0 0 calc(25% - 1.125rem); /* 4 images visible */
    height: calc(100% - 3rem);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid white;
}

.gallery-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.gallery-card:hover .showcase-image {
    filter: brightness(1.1) saturate(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(26, 26, 26, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 13px;
}

.gallery-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.overlay-content span {
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Gallery Controls */
.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -20px;
    pointer-events: none;
    z-index: 10;
}

.gallery-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
}

.gallery-slider:hover .gallery-control {
    opacity: 1;
    transform: scale(1);
}

.gallery-control:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.gallery-control.prev {
    left: -25px;
}

.gallery-control.next {
    right: -25px;
}

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

.gallery-pause-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.gallery-slider:hover + .gallery-controls + .gallery-indicator .gallery-pause-hint {
    color: var(--primary-color);
    opacity: 1;
}

.gallery-pause-hint i {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

/* Gallery Animation */
@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-card {
        flex: 0 0 calc(33.333% - 1rem); /* 3 images on medium screens */
    }
    
    .gallery-track {
        animation-duration: 35s;
    }
}

@media (max-width: 768px) {
    .gallery-slider {
        height: 400px;
        border-radius: 15px;
    }
    
    .gallery-card {
        flex: 0 0 calc(50% - 0.75rem); /* 2 images on tablets */
        border-radius: 12px;
    }
    
    .gallery-track {
        gap: 1rem;
        padding: 1rem;
        animation-duration: 30s;
    }
    
    .showcase-image {
        border-radius: 9px;
    }
    
    .gallery-controls {
        display: none; /* Hide controls on mobile */
    }
}

@media (max-width: 576px) {
    .gallery-slider {
        height: 350px;
        border-radius: 12px;
    }
    
    .gallery-card {
        flex: 0 0 calc(85% - 0.5rem); /* 1 image with peek on mobile */
        border-radius: 10px;
    }
    
    .gallery-track {
        gap: 0.5rem;
        padding: 0.75rem;
        animation-duration: 25s;
    }
    
    .gallery-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .showcase-image {
        border-radius: 7px;
    }
}

/* Performance optimizations */
.gallery-showcase-section {
    contain: layout style paint;
}

.showcase-image {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .gallery-track {
        animation-duration: 120s;
    }
    
    .gallery-card:hover {
        transform: none;
    }
    
    .gallery-pause-hint i {
        animation: none;
    }
}
/* Image Lightbox Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.image-lightbox .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.image-lightbox .lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.image-lightbox .lightbox-close:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

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

@media (max-width: 768px) {
    .lightbox-nav {
        display: none;
    }
    
    .image-lightbox .lightbox-close {
        top: -40px;
        right: 10px;
    }
}
/* Contact Us Section (formerly consultation) - LIGHT THEME */
.contact-us-section {
    background: #ffffff;
    padding: var(--section-padding);
    position: relative;
}

.contact-us-content .section-title {
    color: var(--dark-color);
}

.contact-us-content .script-text {
    color: var(--primary-color);
}

.contact-us-content .lead {
    color: var(--gray-color);
}

.contact-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.quick-contact {
    padding: 1.5rem;
    background: #ece8e2;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-us-form {
    background: #ece8e2;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Modern Form Styles */
.modern-form .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
    font-family: var(--font-secondary);
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    background: white;
}

.modern-form label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    color: var(--gray-color);
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
    font-weight: 500;
}

.modern-form input:focus + label,
.modern-form textarea:focus + label,
.modern-form input:valid + label,
.modern-form textarea:valid + label {
    top: -0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    background: var(--secondary-color);
    padding: var(--section-padding);
}

.reviews-container {
    margin-top: 3rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-info {
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 3rem;
}

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

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.4);
}

.contact-form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

/* Footer - LIGHT THEME */
.footer-section {
    background: white;
    color: var(--dark-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-brand img {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.footer-section h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 20px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
}

.footer-social a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.footer-social a i {
    color: white;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.footer-social a:hover i {
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-color);
    margin: 0;
}

/* 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 scrollLine {
    0% {
        height: 0;
    }
    100% {
        height: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .script-text {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .contact-us-form,
    .contact-form {
        padding: 2rem;
    }

    .hero-cta .btn {
        display: block;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 90vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title .script-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .contact-us-form,
    .contact-form {
        padding: 1.5rem;
    }
    .btn-outline-primary {
        margin-bottom: 1rem;
    }
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.hero-image,
.gallery-item img,
.service-image img {
    will-change: transform;
}

/* Accessibility improvements */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.25);
}

/* Print styles */
@media print {
    .navbar,
    .hero-section,
    .footer-section {
        display: none;
    }
}

/* Service Detail Page Styles */
.service-hero-section {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-detail-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-service {
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.3rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-duration {
    background: var(--secondary-color);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
    color: var(--dark-color);
}

.service-duration i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Style Cards */
.style-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.style-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.style-content {
    padding: 1.5rem;
}

.style-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.style-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    color: var(--gray-color);
}

.style-features li {
    margin-bottom: 0.25rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Care Cards */
.care-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.care-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.care-card i {
    color: var(--primary-color);
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.care-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.care-list li:last-child {
    border-bottom: none;
}

/* FAQ Styling */
.accordion-button {
    background: var(--secondary-color);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.25);
}

/* CTA Section Fixes */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0; /* Increased padding for better spacing */
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section .script-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Make the decorative line white in CTA section */
.cta-section .script-text::after {
    background: white;
    width: 50px;
    height: 3px;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Button spacing fixes */
.cta-section .btn {
    margin: 0.5rem;
    min-width: 150px;
}

.cta-section .btn-outline-primary {
    border-color: white;
    color: white;
}

.cta-section .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Better button layout for desktop */
@media (min-width: 992px) {
    .cta-section .btn {
        margin: 0;
        margin-left: 1rem;
    }

    .cta-section .btn:first-of-type {
        margin-left: 0;
    }
}

/* Alternative layout for CTA section - better button arrangement */
.cta-section .row {
    align-items: center;
}

.cta-section .col-lg-8 {
    margin-bottom: 1.5rem;
}

.cta-section .col-lg-4 {
    margin-bottom: 1.5rem;
}

/* Hero Section Mobile Fixes */
.service-hero-section {
    height: 100vh; /* Full viewport height on mobile */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 600px; /* Ensure minimum height */
}

.service-hero-section .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px; /* Account for fixed navbar + extra space */
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.service-hero-section .hero-content {
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .service-hero-section {
        height: 100vh;
        min-height: 550px;
    }

    .service-hero-section .container {
        padding-top: 140px; /* More space for mobile nav */
        padding-bottom: 60px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-hero-section .hero-content {
        padding: 1.5rem 0.5rem;
    }

    .service-hero-section .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .service-hero-section .hero-title .script-text {
        font-size: 2.6rem;
        display: block; /* Stack on separate line if needed */
    }

    .service-hero-section .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .service-hero-section .hero-cta {
        margin-top: 1.5rem;
    }

    .service-hero-section .hero-cta .btn {
        display: block;
        width: 90%;
        max-width: 100%;
        margin: 0.75rem auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .service-hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .service-hero-section .container {
        padding-top: 120px;
        padding-bottom: 40px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .service-hero-section .hero-content {
        padding: 1rem 0.25rem;
    }

    .service-hero-section .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.25rem;
    }

    .service-hero-section .hero-title .script-text {
        font-size: 2.2rem;
    }

    .service-hero-section .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        line-height: 1.4;
    }

    .service-hero-section .hero-cta .btn {
        width: 95%;
        margin: 0.5rem auto;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Ensure proper background positioning */
.service-hero-section .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.service-hero-section .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
    z-index: -1;
}

/* Fix for very small screens */
@media (max-width: 375px) {
    .service-hero-section .container {
        padding-top: 110px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .service-hero-section .hero-title {
        font-size: 1.6rem;
    }

    .service-hero-section .hero-title .script-text {
        font-size: 2rem;
    }

    .service-hero-section .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .service-hero-section {
        height: 100vh;
        min-height: 400px;
    }

    .service-hero-section .container {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .service-hero-section .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .service-hero-section .hero-title .script-text {
        font-size: 2.2rem;
    }

    .service-hero-section .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .service-hero-section .hero-cta .btn {
        margin: 0.5rem auto;
        padding: 0.625rem 1.25rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        margin-top: 0.5rem;
    }

    .cta-section .col-lg-4 {
        text-align: center !important;
        margin-top: 2rem;
    }

    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Price Savings Label */
.price-savings {
    display: block;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
}

.category-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    color: var(--gray-color);
}

.category-features li {
    margin-bottom: 0.25rem;
}

/* Hair Regeneration Section Styling */
.hair-regeneration-section .service-detail-card {
    border-left: 4px solid var(--primary-color);
}

.hair-regeneration-section .featured-service {
    border-left: 4px solid var(--accent-color);
}

/* PMU Specific Styles */
.required-badge {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.service-note {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.service-note-text {
    background: var(--secondary-color);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.service-note-text i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-color);
}

/* Technique Cards */
.technique-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.technique-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.technique-content {
    padding: 1.5rem;
}

.technique-content h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.technique-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    color: var(--gray-color);
}

.technique-features li {
    margin-bottom: 0.25rem;
}

/* Healing Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 4px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: white;
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-marker {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }
}

/* Process Step Adjustments for 6 steps */
@media (min-width: 992px) {
    .process-section .process-step {
        padding: 1.5rem 0.5rem;
    }

    .process-section .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-section h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .process-section p {
        font-size: 0.9rem;
    }
}

/* Contact Page Specific Styles */
.contact-hero-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 500px;
}

/* Contact Method Cards */
.contact-method-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-method-card .contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-method-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

/* Hours Card */
.hours-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.hours-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.hours-card h3 i {
    color: var(--primary-color);
}

.hours-list {
    margin-bottom: 1.5rem;
}

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

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

.hours-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--gray-color);
}

.hours-note {
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.hours-note i {
    color: var(--primary-color);
}

/* Booking Info Card */
.booking-info-card {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    height: 100%;
}

.booking-info-card h3 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.booking-info-card .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.booking-options {
    margin-bottom: 1.5rem;
}

.booking-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.booking-note i {
    color: white;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Enhanced Form Styles */
.modern-form select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
    font-family: var(--font-secondary);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.modern-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    background-color: white;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    margin: 1rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.2rem;
    width: 1.2rem;
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 0.35rem;
    top: 0.1rem;
    width: 0.3rem;
    height: 0.6rem;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-color);
}

/* Map Section */
.map-container {
    margin-bottom: 2rem;
}

.location-info,
.directions-info {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.location-info h5,
.directions-info h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.location-info i,
.directions-info i {
    color: var(--primary-color);
}

/* Social Links Large */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    color: var(--dark-color);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: var(--dark-color);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: white;
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.social-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Emergency Contact */
.emergency-contact-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-top: 3px solid #ffc107;
}

.emergency-info h5 {
    color: #856404;
    margin-bottom: 1rem;
}

.emergency-info p {
    color: #856404;
    margin-bottom: 0.5rem;
}

.emergency-phone {
    color: #856404;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #ffc107;
}

.emergency-phone:hover {
    color: #533603;
}

.emergency-info small {
    color: #6c757d;
}

/* Contact FAQ Styling */
.contact-faq-section .accordion-button {
    background: white;
    border: none;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-faq-section .accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .contact-method-card {
        padding: 2rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .social-links-large {
        margin-top: 2rem;
    }

    .social-link {
        justify-content: center;
    }

    .booking-options .btn {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        height: 61vh;
        min-height: 350px;
    }

    .contact-method-card {
        padding: 1.5rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Reviews Page Specific Styles */

/* Stats Cards */
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 500;
}

/* Reviews Container Enhancement */
.reviews-container {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Why Reviews Content */
.why-reviews-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.review-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-item i {
    font-size: 1.2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

/* Testimonial Highlight */
.testimonial-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #ffc107;
    margin-right: 0.25rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.6;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

/* Leave Review Card */
.leave-review-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.leave-review-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.review-platforms {
    margin: 2rem 0;
}

.review-platforms h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.platform-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.platform-buttons .btn {
    min-width: 120px;
}

.review-cta {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.review-cta p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

/* Service Review Cards */
.service-review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.service-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-review-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.service-review-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-rating {
    margin-bottom: 1rem;
}

.service-rating .stars {
    margin-bottom: 0.5rem;
}

.service-rating .stars i {
    color: #ffc107;
    margin-right: 0.25rem;
}

.service-rating span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.service-review-card p {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-highlight {
        margin-top: 3rem;
    }

    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }

    .platform-buttons .btn {
        width: 200px;
    }

    .leave-review-card {
        padding: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .reviews-container {
        padding: 1rem;
    }

    .leave-review-card {
        padding: 1.5rem;
    }

    .service-review-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Additional Enhancements */
.reviews-stats-section {
    background: var(--secondary-color);
}

.main-reviews-section {
    position: relative;
}

.main-reviews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.5"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

/* Animation for stats */
.stat-number.animated {
    animation: countUp 2s ease-out;
}

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

/* Legal Pages Styling */
.legal-page-section {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 120px;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 5rem;
}

.legal-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-last-updated {
    text-align: center;
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--gray-color);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin: 0;
    color: var(--dark-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-page-section {
        padding-top: 100px;
    }

    .legal-content {
        padding: 2rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 1.5rem;
    }

    .legal-section ul {
        margin-left: 1rem;
    }
}

/* Footer Legal Links */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: var(--gray-color);
}

.footer-legal {
    text-align: right;
    margin: 0;
}

.footer-legal a {
    color: var(--gray-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-legal .separator {
    color: var(--gray-color);
    margin: 0 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
    }

    .footer-legal {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-bottom .col-md-6:first-child {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-legal a {
        font-size: 0.85rem;
    }

    .footer-legal .separator {
        margin: 0 0.5rem;
    }
}

/* Services Page Specific Styles */

/* Category Overview Cards */
.category-overview-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4a574, #b8935f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-overview-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.category-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.category-highlights li {
    padding: 0.25rem 0;
    color: #666;
}

/* Service Category Sections */
.service-category-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.category-header {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.category-title {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.category-description {
    color: #666;
    margin: 0;
}

.subsection-header {
    border-left: 4px solid #d4a574;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.subsection-header h4 {
    color: #2c3e50;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

/* Service Items */
.service-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-item:hover {
    border-color: #d4a574;
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.1);
}

.service-item.featured {
    border-color: #d4a574;
    background: linear-gradient(135deg, rgb(212 165 116 / 35%), rgba(212, 165, 116, 0.05));
}

.service-item.required {
    border-color: #007bff;
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.02),
        rgba(0, 123, 255, 0.05)
    );
}

.service-info {
    flex: 1;
}

.service-info h5 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.service-brief {
    color: #666;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
}

.service-duration {
    color: #999;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
}

.service-duration:before {
    content: "\f017";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5rem;
}

.service-booking {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d4a574;
    min-width: 80px;
    text-align: right;
}

/* Service Badges */
.popular-badge,
.advanced-badge,
.value-badge,
.effective-badge,
.required-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    white-space: nowrap;
}

.popular-badge {
    background: #28a745;
    color: white;
}

.advanced-badge {
    background: #6f42c1;
    color: white;
}

.value-badge {
    background: #fd7e14;
    color: white;
}

.effective-badge {
    background: #20c997;
    color: white;
}

.required-badge {
    background: #007bff;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-overview-card {
        margin-bottom: 2rem;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-booking {
        width: 100%;
        justify-content: space-between;
    }

    .service-price {
        text-align: left;
        min-width: auto;
    }

    .category-header .row {
        text-align: center;
    }

    .category-header .btn {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .service-info h5 {
        flex-direction: column;
        align-items: flex-start;
    }

    .popular-badge,
    .advanced-badge,
    .value-badge,
    .effective-badge,
    .required-badge {
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* Hero Section Adjustments for Services Page */
.service-hero-section .hero-title {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .service-hero-section .hero-title {
        font-size: 2.5rem;
    }
}

/* Video Showcase Section - Updated for 4 videos */
.video-showcase-section {
    background: var(--secondary-color);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.video-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

.video-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
    cursor: grab;
}

.video-slider:active {
    cursor: grabbing;
}

.video-track {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slideVideos 32s linear infinite; /* Adjusted for 4 videos */
    will-change: transform;
    gap: 1.5rem;
    padding: 1.5rem;
}

.video-track.paused {
    animation-play-state: paused;
}

.video-card {
    flex: 0 0 calc(25% - 1.125rem); /* 4 videos visible, account for gap */
    height: calc(100% - 3rem);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid white;
}

.video-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 13px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.video-card:hover .showcase-video {
    filter: brightness(1.1) saturate(1.1);
}

/* Loading state */
.video-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--secondary-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-card.loading::before {
    opacity: 1;
}

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

.pause-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.video-slider:hover + .slider-indicator .pause-hint {
    color: var(--primary-color);
    opacity: 1;
}

.pause-hint i {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

/* Keyframe animations */
@keyframes slideVideos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .video-card {
        flex: 0 0 calc(33.333% - 1rem); /* 3 videos on medium screens */
    }
    
    .video-track {
        animation-duration: 28s; /* Adjusted for 4 videos */
    }
}

@media (max-width: 768px) {
    .video-slider {
        height: 400px;
        border-radius: 15px;
    }
    
    .video-card {
        flex: 0 0 calc(50% - 0.75rem); /* 2 videos on tablets */
        border-radius: 12px;
    }
    
    .video-track {
        gap: 1rem;
        padding: 1rem;
        animation-duration: 24s; /* Adjusted for 4 videos */
    }
    
    .showcase-video {
        border-radius: 9px;
    }
}

@media (max-width: 576px) {
    .video-slider {
        height: 350px;
        border-radius: 12px;
    }
    
    .video-card {
        flex: 0 0 calc(85% - 0.5rem); /* 1 video (with peek) on mobile */
        border-radius: 10px;
    }
    
    .video-track {
        gap: 0.5rem;
        padding: 0.75rem;
        animation-duration: 20s; /* Adjusted for 4 videos */
    }
    
    .video-card:hover {
        transform: scale(1.02) translateY(-5px);
    }
    
    .showcase-video {
        border-radius: 7px;
    }
}

/* Performance optimizations */
.video-showcase-section {
    contain: layout style paint;
}

.showcase-video {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .video-track {
        animation-duration: 80s;
    }
    
    .video-card:hover {
        transform: none;
    }
    
    .pause-hint i {
        animation: none;
    }
}
.services-overview {
    background-image: url(../images/worn-dots.png);
}


.pmu-techniques-section {
    background-image: url(../images/worn-dots.png);
}
.healing-timeline-section {
    background-image: url(../images/worn-dots.png);
}
.service-categories {
    background-image: url(../images/worn-dots.png);
}
.services-preview {
    background-image: url(../images/worn-dots.png);
}
.services-section {
    background-image: url(../images/worn-dots.png);
}
.reviews-section {
    background-image: url(../images/worn-dots.png);
}
.video-showcase-section {
    background-image: url(../images/worn-dots.png);
}
.treatment-categories-section {
    background-image: url(../images/worn-dots.png);
}
.all-services {
    background-image: url(../images/worn-dots.png);
}
.care-section {
    background-image: url(../images/worn-dots.png);
}
.reviews-stats-section {
    background-image: url(../images/worn-dots.png);
}
.why-reviews-section {
    background-image: url(../images/worn-dots.png);
}
.service-categories-reviews {
    background-image: url(../images/worn-dots.png);
}
.contact-info-section {
    background-image: url(../images/worn-dots.png);
}
.contact-form-section {
    background-image: url(../images/worn-dots.png);
}
.contact-faq-section {
    background-image: url(../images/worn-dots.png);
}

.service-badge {
    background: linear-gradient(135deg, #d4a574, #c4955f);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: auto;
}