      :root {
            --primary: #064e3b; 
            --accent: #f8f1e9;  
            --text: #1a1a1a;
            --gray-light: #f4f4f4;
            --gray-med: #e5e7eb;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.5; }
        h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed; top: 0; width: 100%; height: 70px;
            background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 5%; border-bottom: 1px solid var(--gray-med); z-index: 1000;
        }
        .logo { font-size: 1.4rem; font-weight: bold; letter-spacing: 1px; color: var(--primary); }
        .nav-links a { font-weight: 600; font-size: 0.9rem; }

        /* --- HERO BANNER --- */
        .hero {
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&q=80&w=1200') center/cover;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            text-align: center; color: white; padding: 20px; margin-top: 70px;
        }
        .hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 25px; }

        .search-container {
            background: white; padding: 8px; border-radius: 50px;
            display: flex; width: 100%; max-width: 800px; box-shadow: var(--shadow);
        }
        .search-input { flex: 1; border: none; padding: 15px 20px; outline: none; font-size: 0.95rem; border-right: 1px solid var(--gray-med); }
        .location-input { flex: 0.7; border: none; padding: 15px 20px; outline: none; font-size: 0.95rem; }
        .btn-search { background: var(--primary); color: white; border: none; padding: 12px 30px; border-radius: 50px; cursor: pointer; font-weight: 600; }

        /* --- CONTENT WRAPPER --- */
        .container { max-width: 1300px; margin: 0 auto; padding: 20px; }

        /* --- CATEGORIES --- */
        .categories-scroller {
            display: flex; gap: 30px; padding: 30px 0; overflow-x: auto;
            scrollbar-width: none; justify-content: center;
        }
        .categories-scroller::-webkit-scrollbar { display: none; }
        .cat-item { min-width: 80px; text-align: center; cursor: pointer; transition: 0.3s; }
        .cat-item:hover { transform: translateY(-5px); }
        .cat-icon { 
            width: 65px; height: 65px; background: var(--accent); 
            border-radius: 50%; display: flex; align-items: center; 
            justify-content: center; margin: 0 auto 10px; font-size: 1.5rem;
        }
        .cat-item span { font-size: 0.85rem; font-weight: 600; color: var(--text); }

        /* --- MAIN LAYOUT --- */
        .main-layout { display: grid; grid-template-columns: 1fr 350px; gap: 40px; margin-bottom: 60px; }

        /* --- SALON GRID (3 COLUMNS) --- */
      /* --- SALON GRID (4 COLUMNS) --- */
.salon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

        .salon-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
        .salon-img { height: 200px; background: #eee; width: 100%; position: relative; }
        .price-badge { position: absolute; top: 15px; right: 15px; background: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: var(--primary); }
        .salon-info { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .salon-info h4 { font-size: 1.2rem; margin-bottom: 8px; }
        .salon-meta { font-size: 0.85rem; color: #666; margin-bottom: 20px; }

        .btn-card-book {
            width: 100%; background: var(--primary); color: white; border: none;
            padding: 12px; border-radius: 12px; font-weight: 600; cursor: pointer; margin-top: auto;
        }

        /* --- BOOKING SIDEBAR --- */
        .booking-sidebar {
            background: var(--accent); padding: 25px; border-radius: 24px;
            position: sticky; top: 100px; height: fit-content;
        }

        /* =========================
   REGIONS SECTION
========================= */

/* =========================
   REGIONS SECTION
========================= */

.regions-section {
    padding: 70px 0;
    background: #fff;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Large screens */
    gap: 22px;
}

/* =========================
   REGION CARD
========================= */

.region-card {
    background: #fff;
    border: 1px solid var(--gray-med);
    border-radius: 18px;
    padding: 26px 18px;
    text-align: center;
    color: var(--text);
    text-decoration: none;
    transition: 0.3s ease;
}

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

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Large laptops */
@media (max-width: 1400px) {
    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets / small laptops */
@media (max-width: 1100px) {
    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 900px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile — FORCE 2 COLUMNS */
@media (max-width: 600px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .region-card {
        padding: 22px 12px;
    }

    .region-name {
        font-size: 0.9rem;
    }

    .region-count {
        font-size: 0.75rem;
    }
}



 

/* --- SLIDER LAYOUT --- */
.salon-slider-section {
    margin-bottom: 60px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.salon-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.salon-slider::-webkit-scrollbar {
    display: none;
}

/* Card width for slider */
.salon-slider .salon-card {
    min-width: calc(25% - 20px); /* 4 cards desktop */
    flex-shrink: 0;
}

/* --- SLIDER CONTROLS --- */
.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gray-med);
    background: white;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: bold;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
    .salon-slider .salon-card {
        min-width: calc(33.33% - 20px);
    }
}

@media (max-width: 900px) {
    .salon-slider .salon-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .salon-slider .salon-card {
        min-width: 85%;
    }
}/* --- NAV BASE --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid var(--gray-med);
    z-index: 1000;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* --- MOBILE NAV --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        border-bottom: 1px solid var(--gray-med);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

/* NAV BUTTON */
.nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: #043c2d;
    transform: translateY(-1px);
}

/* MOBILE: FULL WIDTH BUTTON */
@media (max-width: 768px) {
    .nav-links .nav-btn {
        width: 90%;
        padding: 14px;
        font-size: 0.95rem;
    }
}


.section-title {
            font-size: 38px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }


        .animated-text {
    display: inline-block;
    position: relative;
    color: #fff;
    animation: fadeSlide 3s ease-in-out infinite;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    20% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}


   .how-it-works {
            padding: 80px 0;
            background: white;
        }
        
        .steps-container {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            text-align: center;
            max-width: 280px;
            position: relative;
        }
        
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            right: -80px;
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, #e94560, transparent);
        }
        
        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #e94560, #ff6b6b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            font-weight: 700;
            color: white;
            box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
        }
        
        .step-title {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }
        
        .step-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #e94560, #ff6b6b);
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 16px;
            opacity: 0.9;
        }



        /* --- FOOTER --- */
   footer {
    background: var(--gray-light);
    padding: 60px 5% 40px;
    border-top: 1px solid var(--gray-med);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #555;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}



        /* --- RESPONSIVE --- */
        @media (max-width: 1100px) { .salon-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 900px) {
            .main-layout { grid-template-columns: 1fr; }
            .booking-sidebar { display: none; }
            .categories-scroller { justify-content: flex-start; padding: 20px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .search-container { flex-direction: column; border-radius: 20px; }
            .search-input { border-right: none; border-bottom: 1px solid var(--gray-med); width: 100%; }
        }
        @media (max-width: 600px) {
            .salon-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }
        
            .btn {
    padding: 8px 14px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    text-decoration: none;
}



/* Location input + Near Me button wrapper */
.location-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
}

/* Location input */
#locationInput {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 40px;
    background: transparent;
}

/* Near Me button */
.near-me-btn {
    background: #064e3b;
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Hover */
.near-me-btn:hover {
    background: #043b2d;
    transform: translateY(-1px);
}

/* Active */
.near-me-btn:active {
    transform: scale(0.97);
}

/* Disabled (loading state) */
.near-me-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Icon animation (optional polish) */
.near-me-btn i {
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .location-wrapper {
        flex-direction: column;
        padding: 10px;
        border-radius: 20px;
    }

    #locationInput {
        width: 100%;
        text-align: center;
    }

    .near-me-btn {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Shared button style */
.nav-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Login button */
.login-btn {
    color: #064e3b;
    border: 2px solid #064e3b;
    background: transparent;
}

.login-btn:hover {
    background: #064e3b;
    color: #ffffff;
}

/* List business button (primary) */
.business-btn {
    background: #064e3b;
    color: #ffffff;
}

.business-btn:hover {
    background: #043b2d;
    transform: translateY(-1px);
}