/* ========================================
   TRUST Salon Hair Professional - Stylesheet
   Color Theme: Red (#C0392B) + Black + White
   ======================================== */

/* === CSS Variables === */
:root {
    --primary: #C0392B;
    --primary-dark: #96281B;
    --primary-light: #E74C3C;
    --accent: #F39C12;
    --dark: #1A1A1A;
    --dark-2: #2C2C2C;
    --dark-3: #3A3A3A;
    --light: #FFFFFF;
    --light-2: #F8F8F8;
    --light-3: #E0E0E0;
    --text: #333333;
    --text-light: #777777;
    --text-dark: #EEEEEE;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --gradient-accent: linear-gradient(135deg, var(--primary), #E74C3C);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 10px 40px rgba(192, 57, 43, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--dark);
    color: var(--text-dark);
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-circle svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: loaderRotate 1.5s linear infinite;
}

.loader-ring {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    stroke-linecap: round;
    animation: loaderDash 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

@keyframes loaderRotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderDash {
    0% {
        stroke-dashoffset: 280;
    }

    50% {
        stroke-dashoffset: 70;
    }

    100% {
        stroke-dashoffset: 280;
    }
}

/* === Particles Canvas === */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* === Navigation === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.logo-circle:hover {
    transform: scale(1.1);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-red);
}

.logo-circle-sm {
    width: 40px;
    height: 40px;
}

.logo-trust {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-circle-sm .logo-trust {
    font-size: 9px;
}

.logo-salon {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-circle-sm .logo-salon {
    font-size: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.book-btn {
    background: var(--primary) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
}

.book-btn:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: heroFloat 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: heroFloat 12s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 26, 0.6) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 57, 43, 0.2);
    border: 1px solid rgba(192, 57, 43, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    color: white;
    line-height: 1.2;
}

.title-line:first-child {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
}

.title-accent {
    font-size: clamp(28px, 4vw, 50px);
    color: var(--primary-light);
    font-weight: 500;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 30px;
    background: var(--gradient);
    color: white;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(192, 57, 43, 0.7);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.stat-plus {
    font-size: 24px;
    color: var(--primary-light);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: mouseScroll 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-dark .section-tag {
    color: var(--primary-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-dark .section-title {
    color: white;
}

.text-accent {
    color: var(--primary);
}

.section-dark .text-accent {
    color: var(--primary-light);
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 3px;
}

.section-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 500px;
    margin: 16px auto 0;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* === About Section === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-container {
    width: 100%;
    height: 450px;
    background: var(--dark-2);
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover .about-main-img {
    transform: scale(1.05);
}

.about-img-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 12px;
}

.about-img-placeholder i {
    font-size: 60px;
    color: var(--primary);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-img-placeholder span {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
}

.about-img-placeholder small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.about-img-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-red);
    animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content h3.about-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(192, 57, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--dark);
}

.about-feature p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* === Services Section === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 57, 43, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrap {
    margin-bottom: 20px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-light);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.service-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    display: block;
    font-weight: 600;
    color: var(--primary-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-book {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-book:hover {
    color: var(--primary-light);
}

.service-book i {
    transition: transform 0.3s ease;
}

.service-book:hover i {
    transform: translateX(4px);
}

/* === Products Section === */
.products-carousel {
    position: relative;
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.products-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 280px;
    max-width: 280px;
    background: white;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    scroll-snap-align: start;
    position: relative;
    border: 1px solid var(--light-3);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: rgba(192, 57, 43, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: var(--transition);
}

.product-card:hover .product-image {
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-brand {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--light-3);
    background: white;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* === Gallery Section === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 1;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(192, 57, 43, 0.7);
}

.gallery-placeholder i {
    font-size: 40px;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder i {
    transform: scale(1.2) rotate(10deg);
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.gallery-item:hover .gallery-placeholder::after {
    left: 100%;
}

/* === Booking Section === */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.booking-info {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 40px 32px;
    color: white;
}

.booking-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 30px;
}

.booking-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.booking-benefit i {
    font-size: 20px;
    color: var(--primary-light);
    margin-top: 2px;
    min-width: 24px;
}

.booking-benefit h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.booking-benefit p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.booking-hours {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
}

.booking-hours h4 {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-hours h4 i {
    color: var(--primary-light);
}

.booking-hours ul {
    list-style: none;
}

.booking-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-hours li:last-child {
    border-bottom: none;
}

/* Booking Form */
.booking-form-container {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-3);
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-3);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.step.active .step-circle,
.step.completed .step-circle {
    background: var(--primary);
    color: white;
}

.step span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.step.active span {
    color: var(--primary);
    font-weight: 600;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--light-3);
    margin: 0 8px;
    margin-bottom: 24px;
    transition: var(--transition);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--dark);
}

/* Service Selection Grid */
.service-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.service-option input {
    display: none;
}

.service-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    border: 2px solid var(--light-3);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.service-option-content i {
    font-size: 22px;
    color: var(--text-light);
    transition: var(--transition);
}

.service-option-content span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.service-option-content small {
    font-size: 11px;
    color: var(--text-light);
}

.service-option input:checked+.service-option-content {
    border-color: var(--primary);
    background: rgba(192, 57, 43, 0.05);
}

.service-option input:checked+.service-option-content i {
    color: var(--primary);
}

.service-option-content:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-3);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    background: var(--light-2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }

    .service-option-content {
        padding: 14px 8px;
    }

.time-slot span {
    display: block;
    padding: 10px 8px;
    text-align: center;
    border: 2px solid var(--light-3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot input:checked+span {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.time-slot span:hover {
    border-color: var(--primary-light);
}

.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.form-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* Booking Summary */
.booking-summary {
    background: var(--light-2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
}

.booking-summary h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-summary h4 i {
    color: var(--primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid var(--light-3);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: var(--text-light);
}

.summary-item span:last-child {
    font-weight: 600;
    color: var(--dark);
}

/* Booking Success */
.booking-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease;
}

.booking-success.show {
    display: block;
}

.success-animation {
    margin-bottom: 24px;
}

.success-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #27ae60;
    color: white;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: successPop 0.6s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.booking-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.success-details {
    background: var(--light-2);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-bottom: 24px;
    font-size: 14px;
}

.success-details p {
    margin-bottom: 8px;
    color: var(--text);
}

/* === Reviews Section === */
.reviews-rating {
    text-align: center;
    margin-bottom: 40px;
}

.rating-big {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.rating-stars {
    margin: 10px 0;
    font-size: 24px;
    color: var(--accent);
}

.rating-stars i {
    margin: 0 2px;
}

.reviews-rating p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(192, 57, 43, 0.3);
    transform: translateY(-4px);
}

.review-stars {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
}

.review-stars i {
    margin-right: 2px;
}

.review-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-author strong {
    display: block;
    font-size: 14px;
    color: white;
}

.review-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* === Contact Section === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-card {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(192, 57, 43, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.contact-card h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary);
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--light-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* === Footer === */
#footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    margin-bottom: 4px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: white;
}

.footer-links-group h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-group li i {
    color: var(--primary-light);
    font-size: 12px;
}

.footer-links-group a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* === AI Chat Agent Widget === */
.ai-agent-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: block !important;
    visibility: visible !important;
}

.ai-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.5);
    transition: var(--transition);
    position: relative;
}

.ai-toggle-btn:hover {
    transform: scale(1.1);
}

.ai-toggle-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-icon-open,
.ai-icon-close {
    color: white;
    font-size: 24px;
    transition: var(--transition);
    position: absolute;
}

.ai-icon-close {
    opacity: 0;
    transform: rotate(-90deg);
}

.ai-agent-widget.open .ai-icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.ai-agent-widget.open .ai-icon-close {
    opacity: 1;
    transform: rotate(0);
}

.ai-pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: aiPulse 2s ease-out infinite;
}

.ai-pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes aiPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ai-agent-widget.open .ai-pulse-ring {
    display: none;
}

.ai-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ai-agent-widget.open .ai-badge {
    opacity: 0;
    transform: scale(0);
}

/* Chat Window */
.ai-chat-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    z-index: 10000;
}

.ai-agent-widget.open .ai-chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Mobile AI Widget - Always visible, properly positioned */
@media (max-width: 768px) {
    .ai-agent-widget {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 99999 !important;
        display: flex !important;
        visibility: visible !important;
    }

    .ai-toggle-btn {
        width: 56px !important;
        height: 56px !important;
        display: flex !important;
        visibility: visible !important;
        position: relative;
        z-index: 10001;
    }

    .ai-pulse-ring {
        width: 56px !important;
        height: 56px !important;
    }

    .ai-chat-window {
        position: fixed !important;
        bottom: 85px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-width: none !important;
        height: 65vh !important;
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        z-index: 10000;
    }

    .ai-agent-widget.open .ai-chat-window {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .ai-chat-header {
        padding: 12px 16px;
        flex-shrink: 0;
    }

    .ai-chat-body {
        flex: 1;
        overflow-y: auto;
        padding: 16px;
        min-height: 0;
    }

    .ai-chat-input {
        padding: 12px 16px;
        flex-shrink: 0;
    }

    .ai-msg-bubble {
        max-width: 75%;
    }

    .ai-close-btn {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
}

.ai-chat-header {
    background: var(--dark);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    position: relative;
}

.ai-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27ae60;
    border: 2px solid var(--dark);
}

.ai-header-info strong {
    display: block;
    color: white;
    font-size: 14px;
}

.ai-header-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.ai-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ai-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Chat Body */
.ai-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-message {
    display: flex;
    gap: 10px;
    animation: msgSlide 0.3s ease;
}

@keyframes msgSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-message.user {
    flex-direction: row-reverse;
}

.ai-msg-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.ai-message.user .ai-msg-avatar {
    background: var(--dark-2);
}

.ai-msg-bubble {
    max-width: 260px;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.6;
}

.ai-message.bot .ai-msg-bubble {
    background: var(--light-2);
    color: var(--text);
    border-bottom-left-radius: 4px;
}

.ai-message.user .ai-msg-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

/* Quick Replies */
.ai-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.ai-quick-btn {
    background: white;
    border: 1px solid var(--light-3);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.ai-quick-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Chat Input */
.ai-chat-input {
    padding: 16px 20px;
    border-top: 1px solid var(--light-3);
    display: flex;
    gap: 10px;
    background: white;
}

.ai-chat-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--light-3);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: var(--transition);
}

.ai-chat-input input:focus {
    border-color: var(--primary);
}

#aiSendBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 14px;
}

#aiSendBtn:hover {
    transform: scale(1.1);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typingDot 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

/* === Scroll Animations === */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Stylists Section === */
.stylists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stylist-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-3);
    position: relative;
    display: flex;
    flex-direction: column;
}

.stylist-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stylist-img-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.stylist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.stylist-card:hover .stylist-img {
    transform: scale(1.08);
}

.stylist-socials {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(192, 57, 43, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stylist-card:hover .stylist-socials {
    bottom: 0;
}

.stylist-social {
    color: white;
    font-size: 18px;
    transition: var(--transition);
}

.stylist-social:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.stylist-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stylist-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.stylist-role {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.stylist-divider {
    width: 40px;
    height: 2px;
    background: var(--primary-light);
    margin: 0 auto 15px;
    opacity: 0.3;
}

.stylist-bio {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .stylists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stylists-grid {
        grid-template-columns: 1fr;
    }

    .stylist-img-wrap {
        height: 450px;
    }
}


/* ============ ENHANCED RESPONSIVE DESIGN ============ */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .service-select-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-info {
        order: 2;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transform: translateX(0);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link {
        display: block;
        padding: 16px 12px;
        font-size: 16px;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }

    .nav-link.active::after {
        display: none;
    }

    .book-btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-select-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Contact cards - keep inline on tablet */
    .contact-card {
        flex-direction: row;
        text-align: left;
        gap: 14px;
        align-items: flex-start;
    }

    .contact-icon {
        margin: 0;
    }

    .contact-card > div {
        flex: 1;
    }

    .contact-socials {
        justify-content: flex-start;
    }

    .service-option-content {
        padding: 14px 8px;
    }

    .service-option-content i {
        font-size: 20px;
    }

    .service-option-content span {
        font-size: 12px;
    }

    .service-option-content small {
        font-size: 10px;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .time-slot span {
        padding: 10px 6px;
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        order: -1;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links-group ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .booking-form-container {
        padding: 28px 20px;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .step-line {
        display: none;
    }

    .step {
        min-width: 70px;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .step span {
        font-size: 10px;
    }

    .form-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .form-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-placeholder {
        height: 200px;
    }

    .gallery-placeholder i {
        font-size: 36px;
    }

    .gallery-placeholder span {
        font-size: 14px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-img-placeholder {
        height: 320px;
    }

    .experience-badge {
        right: 10px;
        bottom: -15px;
        padding: 14px 18px;
    }

    .exp-number {
        font-size: 28px;
    }

    .contact-card {
        flex-direction: row;
        text-align: left;
        gap: 14px;
        align-items: flex-start;
    }

    .contact-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .contact-card > div {
        flex: 1;
    }

    .contact-card h4,
    .contact-card p {
        text-align: left;
    }

    .contact-socials {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .contact-map {
        min-height: 300px;
    }

    .rating-big {
        font-size: 56px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-shape {
        opacity: 0.1;
    }

    .shape-1 {
        width: 400px;
        height: 400px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3 {
        width: 180px;
        height: 180px;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 55px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-desc {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat {
        display: flex;
        align-items: baseline;
        gap: 4px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .title-line:first-child {
        font-size: 30px;
    }

    .title-accent {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .logo-circle {
        width: 44px;
        height: 44px;
    }

    .logo-trust {
        font-size: 10px;
    }

    .logo-salon {
        font-size: 5px;
    }

    #navbar.scrolled {
        padding: 8px 0;
    }

    .about-img-placeholder {
        height: 260px;
    }

    .about-img-placeholder i {
        font-size: 36px;
    }

    .about-img-placeholder span {
        font-size: 20px;
    }

    .about-img-border {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }

    .about-heading {
        font-size: 22px !important;
    }

    .about-content p {
        font-size: 14px;
    }

    .about-features {
        gap: 16px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .service-select-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-option-content {
        padding: 12px 6px;
    }

    .service-option-content span {
        font-size: 11px;
    }

    .next-step {
        font-size: 14px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .time-slot span {
        padding: 10px 8px;
        font-size: 12px;
    }

    .booking-form-container {
        padding: 20px 16px;
    }

    .booking-info {
        padding: 20px 16px;
    }

    .booking-info h3 {
        font-size: 20px;
    }

    .booking-benefit {
        gap: 12px;
    }

    .booking-hours {
        padding: 16px;
    }

    .booking-hours ul li {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }

    .booking-hours li span:last-child {
        color: var(--primary-light);
        font-weight: 600;
    }

    .form-step h3 {
        font-size: 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .booking-summary {
        padding: 16px;
    }

    .review-card {
        padding: 20px 16px;
    }

    .review-stars {
        font-size: 12px;
    }

    .review-text {
        font-size: 13px;
    }

    .product-card {
        min-width: 220px;
        max-width: 220px;
        padding: 20px 16px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-placeholder {
        height: 160px;
    }

    .gallery-placeholder i {
        font-size: 28px;
    }

    .contact-map {
        min-height: 250px;
        border-radius: 12px;
    }

    .ai-toggle-btn {
        display: flex !important;
        visibility: visible !important;
        width: 54px;
        height: 54px;
    }

    .ai-agent-widget {
        display: block !important;
        visibility: visible !important;
    }

    .ai-pulse-ring {
        width: 54px;
        height: 54px;
    }

    .ai-chat-header {
        padding: 14px 16px;
    }

    .ai-chat-body {
        padding: 16px;
    }

    .ai-chat-input {
        padding: 12px 16px;
    }

    .ai-msg-bubble {
        max-width: 200px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .ai-quick-btn {
        padding: 5px 12px;
        font-size: 10px;
    }

    /* Disable animations on mobile for better performance */
    .animate-slide-up,
    .animate-fade-in {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-shape {
        animation: none;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .title-line:first-child {
        font-size: 26px;
    }

    .title-accent {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .service-select-grid {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps {
        gap: 8px;
    }

    .step {
        min-width: 60px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .product-card {
        min-width: 200px;
        max-width: 200px;
    }

    .gallery-placeholder {
        height: 140px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }

    .service-card::before {
        transform: scaleX(1);
    }

    .service-card:hover .service-icon {
        transform: none;
    }

    .product-card:hover {
        transform: none;
    }

    .review-card:hover {
        transform: none;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-item:hover .gallery-placeholder i {
        transform: none;
    }

    .gallery-item:hover .gallery-placeholder::after {
        left: 100%;
    }

    .btn:hover {
        transform: none;
    }

    .social-link:hover {
        transform: none;
    }

    .book-btn:hover {
        transform: none;
    }

    .ai-toggle-btn:hover {
        transform: none;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .hero-shape {
        opacity: 0.08;
    }
}