* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

@font-face {
    font-family: "RoobertPRO";
    src: url("fonts/RoobertPRO-Regular.ttf") format("truetype");
}

.cs-header {
    background: linear-gradient(90deg, #7b2ff7, #9b51e0);
    padding: 12px 0;
    position: fixed; /* ⭐ ADD */
    top: 0; /* ⭐ ADD */
    left: 0; /* ⭐ ADD */
    width: 100%; /* ⭐ ADD */
    z-index: 1000; /* ⭐ ADD */
}

.cs-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO ****************/
.cs-logo {
    display: flex;
    align-items: center;
    color: #fff;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 10px;
}

.logo-text h3 {
    font-size: 18px;
}

.logo-text span {
    font-size: 11px;
    letter-spacing: 2px;
}

/* NAV MENU */
.cs-nav {
    display: flex;
    gap: 30px;
}

    .cs-nav a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
    }

        .cs-nav a:hover {
            text-decoration: underline;
        }

/* RIGHT ACTIONS */
.cs-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
}

    .cs-actions i {
        font-size: 18px;
        cursor: pointer;
    }

.book-btn {
    padding: 10px 18px;
    border-radius: 25px;
    border: none;
    background: #fff;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}

    .book-btn:hover {
        background: #f1f1f1;
    }

/****************Update wala cs Header ********************/

/************************************hero seaction *****************************/
.hero {
    height: 120vh;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("../images/woman-washing-head-hairsalon.jpg") center/cover no-repeat;
}

/* TAGLINE */
.tagline {
    background: rgba(73, 185, 255, 0.5);
    padding: 6px 14px;
    border-radius: 999px;
    margin-top: 80px;
    font-size: 14px;
}

/* TITLE */
.hero-title {
    margin-top: 16px;
    font-size: 32px;
    font-weight: 800;
    max-width: 560px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

/* DESCRIPTION */
.hero-desc {
    margin-top: 8px;
    max-width: 520px;
}

.search-form {
    margin-top: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    max-width: 900px;
}

.form-group {
    min-width: 160px;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        color: #111827;
        font-size: 13px;
        margin-bottom: 6px;
    }

.search-btn {
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    height: 40px;
    margin-top: 22px;
}

@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }

    .search-btn {
        margin-top: 10px;
        width: 100%;
    }
}

/**************************pop-up-for-destination ********************************/
/* OVERLAY */
/* ================= MODAL OVERLAY ================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    .modal-overlay.active {
        display: flex;
    }

/* ================= POPUP BOX ================= */
.destination-box {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    width: 90%;
    max-width: 520px; /* little wider for 3 columns */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: scaleIn 0.25s ease;
}

/* POP ANIMATION */
@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================= STEPS ================= */
.step {
    display: none;
}

    .step.active {
        display: block;
    }

/* TITLE */
.destination-box h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* ================= LIST (3 COLUMNS) ================= */
.destination-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
}

/* ITEM */
.destination-item {
    padding: 8px 6px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    text-align: center;
    font-size: 13px;
    background: #fff;
    transition: all 0.2s ease;
}

    .destination-item:hover,
    .destination-item.active {
        background: #111;
        color: #fff;
        border-color: #111;
    }

/* ================= BUTTONS ================= */
.modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

    .modal-actions button {
        flex: 1;
        padding: 10px 16px;
        border-radius: 8px;
        border: none;
        background: #111;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

        .modal-actions button:hover {
            background: #000;
        }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .destination-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .destination-list {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
}

/**************************************Service pop-up Seaction ********************************/
/************************** SERVICE POPUP **************************/
.destination-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    .destination-modal.active {
        display: flex;
    }

    /* POPUP BOX */
    .destination-modal .destination-box {
        background: #fff;
        padding: 24px;
        border-radius: 14px;
        width: 90%;
        max-width: 420px;
    }

    /* TITLE */
    .destination-modal h3 {
        margin-bottom: 16px;
        font-size: 18px;
        font-weight: 600;
    }

    /* SERVICE LIST */
    .destination-modal .destination-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* SERVICE ITEM */
    .destination-modal .destination-item {
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
        cursor: pointer;
        text-align: center;
        font-size: 14px;
        transition: all 0.2s ease;
    }

        .destination-modal .destination-item:hover,
        .destination-modal .destination-item.active {
            background: #111;
            color: #fff;
        }

    /* CLOSE BUTTON */
    .destination-modal .close-btn {
        margin-top: 20px;
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: none;
        background: #e5e7eb;
        cursor: pointer;
        font-size: 14px;
    }

        .destination-modal .close-btn:hover {
            background: #d1d5db;
        }

/* MOBILE */
@media (max-width: 480px) {
    .destination-modal .destination-list {
        grid-template-columns: 1fr;
    }
}
/********************Date ke Sath pop-up**********************/
.form-group select {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    cursor: pointer;
}

    .form-group select:disabled {
        background: #f3f4f6;
        color: #9ca3af;
        cursor: not-allowed;
    }

/******************************how its works *****************************/
/* ================= HOW IT WORKS ================= */

.how-it-works {
    padding: 80px 20px;
    background: #fafafa;
}

.hiw-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

    .hiw-container h2 {
        font-size: 36px;
        font-weight: 500;
        margin-bottom: 10px;
        color: #222;
    }

.hiw-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 50px;
}

/* STEPS GRID */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* CARD */
.hiw-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .hiw-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    }

/* ICON */
.hiw-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

/* TEXT */
.hiw-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.hiw-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hiw-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hiw-steps {
        grid-template-columns: 1fr;
    }

    .hiw-container h2 {
        font-size: 28px;
    }
}

/******************************all products services**************************/
.ss-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.ss-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.ss-scroll {
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

    .ss-scroll::-webkit-scrollbar {
        display: none;
    }

.ss-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ss-grid {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.ss-card {
    min-width: 140px;
    text-align: center;
    cursor: pointer;
}

    .ss-card img {
        width: 140px;
        height: 120px;
        object-fit: cover;
        border-radius: 16px;
        background: #f2f2f2;
    }

    .ss-card p {
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
    }

.ss-badge,
.ss-tag {
    position: absolute;
    margin: 8px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.ss-badge {
    background: #e6f4ea;
    color: #137333;
}

.ss-tag {
    background: #2e7d32;
    color: #fff;
}
/************************************benifites of salon **********************/
/* ===== NEW BENEFITS DESIGN ===== */
.cbp-v2 {
    padding: 90px 20px;
    background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.cbp-v2-header {
    text-align: center;
    margin-bottom: 60px;
}

    .cbp-v2-header h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .cbp-v2-header p {
        color: #6b7280;
    }

/* GRID */
.cbp-v2-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.cbp-v2-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .cbp-v2-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

/* LEFT COLOR STRIP */
.cbp-v2-strip {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
}

    .cbp-v2-strip.client {
        background: #7c3aed;
    }

    .cbp-v2-strip.beautician {
        background: #ec4899;
    }

    .cbp-v2-strip.salon {
        background: #f59e0b;
    }

/* CONTENT */
.cbp-v2-content {
    padding: 40px 30px;
}

.cbp-v2-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.cbp-v2-content h3 {
    margin-bottom: 12px;
}

.cbp-v2-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

    .cbp-v2-content ul li {
        margin-bottom: 8px;
        color: #374151;
    }

/* BUTTON */
.cbp-v2-content button {
    border: none;
    background: #111827;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .cbp-v2-content button:hover {
        background: #000;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .cbp-v2-grid {
        grid-template-columns: 1fr;
    }
}

/*********************************Saloon listing*****************************/
.rd-section {
    padding: 6px 40px;
    background: #fff;
}

.rd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.rd-title {
    font-size: 28px;
    font-weight: 700;
}

.rd-arrows {
    display: flex;
    gap: 10px;
}

.rd-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 18px;
}

.rd-card-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

    .rd-card-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

.rd-card {
    min-width: 300px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.rd-image {
    position: relative;
    height: 180px;
}

    .rd-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rd-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #1f9d55;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 13px;
}

.rd-content {
    padding: 14px;
}

    .rd-content h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

.rd-type {
    font-size: 14px;
    color: #777;
}

.rd-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin: 8px 0;
}

.rd-book {
    font-size: 13px;
    color: #444;
}

.rd-offer {
    margin-top: 10px;
    background: linear-gradient(135deg, #7b2ff7, #d66efd);
    color: linear-gradient(135deg, #7b2ff7, #d66efd);
    padding: 8px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

    .rd-offer.light {
        background: linear-gradient(135deg, #7b2ff7, #d66efd);
        color: linear-gradient(135deg, #7b2ff7, #d66efd);
    }
/***********************************************best sallon list ********************/
.sd-hero {
    padding: 30px 40px;
    background: #fff;
}

/* TOP */
.sd-name {
    font-size: 34px;
    font-weight: 700;
}

.sd-tabs {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    border-bottom: 1px solid #eee;
}

.sd-tab {
    padding: 12px 0;
    font-weight: 600;
    color: #777;
    cursor: pointer;
}

    .sd-tab.active {
        color: linear-gradient(135deg, #7b2ff7, #d66efd);
        border-bottom: 3px solid linear-gradient(135deg, #7b2ff7, #d66efd);
    }

.sd-banner {
    position: relative;
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
}

    .sd-banner img {
        width: 100%;
        height: 320px;
        object-fit: cover;
    }

/* FLOATING CARD */
.sd-info-card {
    position: absolute;
    left: 30px;
    top: 50px;
    background: #fff;
    padding: 22px;
    width: 420px;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.sd-rating {
    font-weight: 600;
}

.sd-price {
    margin: 6px 0;
    font-weight: 600;
}

.sd-category {
    color: #555;
}

.sd-location {
    margin: 10px 0;
    color: #666;
}

.sd-status {
    margin-bottom: 15px;
}

.open {
    color: green;
    font-weight: 600;
}

/* ACTION BUTTONS */
.sd-actions {
    display: flex;
    gap: 10px;
}

.sd-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #7b2ff7, #d66efd);
    color: #fff;
    font-weight: 600;
}

/* SHOW IMAGES BTN */
.sd-images-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}
/***************************************review-Section *******************************/
.ts-section {
    background: #eef9fd;
    padding: 80px 40px;
}

.ts-container {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.ts-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7b2ff7, #d66efd);
    color: linear-gradient(135deg, #7b2ff7, #d66efd);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ts-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

    .ts-title span {
        color: linear-gradient(135deg, #7b2ff7, #d66efd);
    }

.ts-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.ts-btn {
    background: linear-gradient(135deg, #7b2ff7, #d66efd);
    color: #fff;
    border: none;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* RIGHT */
.ts-right {
    display: flex;
    gap: 30px;
}

.ts-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    position: relative;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ts-quote {
    position: absolute;
    top: -14px;
    right: -14px;
    background: linear-gradient(135deg, #7b2ff7, #d66efd);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ts-user h4 {
    margin: 0;
}

.ts-user span {
    color: linear-gradient(135deg, #7b2ff7, #d66efd);
    font-size: 14px;
}

.ts-stars {
    color: #ffb703;
    margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ts-container {
        grid-template-columns: 1fr;
    }

    .ts-right {
        flex-direction: column;
    }
}

/****************************************footer****************************************/
.footer {
    background: #f9fafb;
    padding: 60px 0 30px;
    color: #6b7280;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
}

/* BRAND */
.footer-brand p {
    margin: 18px 0;
    line-height: 1.6;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111827;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

    .social-icons i {
        font-size: 18px;
        cursor: pointer;
    }

/* LINKS */
.footer-links h4,
.footer-newsletter h4 {
    font-size: 14px;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #6b7280;
}

    .footer-links a:hover {
        color: #111;
    }

/* NEWSLETTER */
.footer-newsletter p {
    margin-bottom: 16px;
}

.newsletter-box {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}

    .newsletter-box input {
        flex: 1;
        padding: 12px;
        border: none;
        outline: none;
    }

    .newsletter-box button {
        background: #111;
        color: #fff;
        padding: 0 18px;
        border: none;
        cursor: pointer;
    }

/* BOTTOM */
.footer-bottom {
    width: 90%;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

    .bottom-links a {
        text-decoration: none;
        color: #6b7280;
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/*********************************************************2nd pages ***************************/
.breadcrumb-hero {
    position: relative;
    height: 300px;
    background: url("../images/Beardcrump-images/img1.png") center / cover no-repeat;
    display: flex;
    align-items: center;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35) );
}

.breadcrumb-content {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: auto;
    color: #fff;
}

    .breadcrumb-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.breadcrumb {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .breadcrumb a {
        color: #fff;
        text-decoration: none;
        opacity: 0.9;
    }

    .breadcrumb span {
        opacity: 0.8;
    }
/*****************All Slaon products pages selaction ********/
.home-salon {
    padding: 80px 20px;
    background: #fff;
}

.salon-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.salon-col h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.unit {
    text-align: center;
    cursor: pointer;
}

    .unit img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
    }

    .unit p {
        margin-top: 12px;
        font-size: 15px;
        font-weight: 500;
    }

    .unit:hover img {
        transform: translateY(-6px) scale(1.05);
    }

/* RESPONSIVE */
@media (max-width: 900px) {
    .salon-container {
        grid-template-columns: 1fr;
    }

    .unit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*******************************Pick your salon ***********************/
.pick-salon {
    padding: 80px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

    .pick-salon h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.pick-sub {
    font-size: 15px;
    color: #555;
    margin-bottom: 60px;
}

.pick-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.pick-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: left;
}

.pick-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.pick-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.pick-center img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    background: #fdeaea;
    padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .pick-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pick-col {
        text-align: center;
    }
}
/**************************************why choose us. *****/
.why-choose {
    padding: 80px 20px;
    background: #fafafa;
    font-family: "Poppins", sans-serif;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.why-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.why-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        text-align: center;
    }
}
/****************************************************Next pages per form le liye css *********/
/* ================= GRID SECTIONS ================= */

.form-wrapper {
    background: #fff;
    max-width: 900px;
    margin: auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group span {
    color: red;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.form-group.full {
    grid-column: span 2;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .checkbox-grid label {
        font-weight: 400;
    }

button {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

    button:hover {
        background: #000;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/********************yha per Saloon List ho gye h ***************/
.hotel-section {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 40px;
    padding: 40px 80px;
    font-family: Arial, sans-serif;
}

/* LEFT */
.hotel-list h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.subtitle {
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 600px;
}

.hotel-card {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.hotel-img img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.city {
    color: #6b7280;
    font-size: 14px;
}

.hotel-info h2 {
    margin: 6px 0;
}

.rating {
    color: #f97316;
    font-size: 14px;
}

    .rating span {
        color: #374151;
        margin-left: 8px;
    }

.location {
    color: #6b7280;
    margin: 8px 0;
}

.features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px 0;
}

    .features span {
        background: #f3f4f6;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
    }

.price {
    font-size: 20px;
    margin-top: 10px;
}

/* RIGHT FILTER */
.filter-box {
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    height: fit-content;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter-box h4 {
    margin: 20px 0 10px;
}

.filter-box label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
}

.filter-box button {
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
}

.card-link:hover .hotel-card {
    border: 3px solid #7b2ff7;
    padding: 22px; /* border ke baad size same rahe */
    border-radius: 16px;
    background: #faf7ff;
}

    /* Hover badge */
    .card-link:hover .hotel-card::after {
        content: "View Salon";
        position: absolute;
        top: 16px;
        right: 16px;
        background: #7b2ff7;
        color: #fff;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

/*************************************************Salon+buitician Select option ****************/

/* ========== SALON PROFILE TOP ========== */
.salon-profile-section {
    padding: 40px 80px;
}

/* Breadcrumb */
.salon-breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

/* Header */
.salon-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.salon-name {
    font-size: 40px;
    margin-bottom: 8px;
}

.salon-meta-info {
    font-size: 15px;
    color: #374151;
}

    .salon-meta-info span {
        margin-right: 6px;
    }

.salon-direction-link {
    color: #2563eb;
    text-decoration: none;
    margin-left: 6px;
}

/* Action Icons */
.salon-action-icons {
    display: flex;
    gap: 12px;
}

.salon-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
}

/* ========== GALLERY ========== */
.salon-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

    .salon-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
    }

.salon-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.salon-gallery-overlay {
    position: relative;
}

.salon-see-all-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    background: black;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

/* ========== SERVICES + RIGHT CARD LAYOUT ========== */
.services-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    align-items: flex-start;
}

/* LEFT : SERVICES */
.services-wrapper {
    width: 65%;
    height: calc(100vh - 160px); /* header + spacing adjust */
    overflow-y: auto; /* 🔥 LEFT SCROLL */
    padding-right: 10px;
}

/* Heading */
.heading {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.tab {
    padding: 10px 18px;
    border-radius: 22px;
    border: none;
    font-size: 15px;
    cursor: pointer;
}

    .tab.active {
        background: #000;
        color: #fff;
    }

/* Service Card */
.service-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .service-card h4 {
        font-size: 20px;
        margin-bottom: 6px;
    }

.muted {
    color: #777;
    font-size: 15px;
}

.price {
    margin-top: 6px;
    font-weight: bold;
}

.offer {
    color: green;
    margin-left: 6px;
}

/* ========== RIGHT : SALON CARD ========== */
.salon-section {
    width: 35%;
}

.salon-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
/* ================= TEAM SECTION ================= */
.team-section {
    margin-top: 60px;
}

.team-heading {
    font-size: 32px;
    margin-bottom: 24px;
}

/* Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
}

/* Card */
.team-card {
    text-align: center;
    position: relative;
}

    /* Image */
    .team-card img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

/* Avatar fallback */
.avatar-only {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-letter {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eef0ff;
    color: #6b5cff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* Name */
.team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

/* Role */
.team-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Rating badge */
.rating-badge {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 14px;
    border: 1px solid #eee;
}

/* See all button */
.see-all-btn {
    margin-top: 30px;
    padding: 10px 22px;
    border-radius: 24px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}
/*******review*****************/
.reviews-section {
    padding: 40px 60px;
    font-family: Arial, sans-serif;
}

    .reviews-section h2 {
        margin-bottom: 10px;
    }

.overall-rating {
    margin-bottom: 30px;
}

    .overall-rating .stars {
        color: #f5b942;
        font-size: 22px;
    }

    .overall-rating p {
        font-size: 16px;
    }

    .overall-rating span {
        color: #6b6bff;
        cursor: pointer;
    }

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

/* CARD */
.review-card {
    max-width: 500px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .review-header img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
    }

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eaeaff;
    color: #5a5aff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

    .avatar.dark {
        background: #1f4d3a;
        color: #fff;
    }

.review-header h4 {
    margin: 0;
    font-size: 15px;
}

.review-header span {
    font-size: 13px;
    color: #777;
}

.stars.small {
    color: #f5b942;
    font-size: 16px;
    margin-bottom: 6px;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
}

.review-card a {
    color: #6b6bff;
    text-decoration: none;
    font-size: 14px;
}
/******map******/
.about-section {
    padding: 40px 60px;
    font-family: Arial, sans-serif;
    max-width: 1100px;
}

    .about-section h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

.about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 900px;
    margin-bottom: 25px;
}

/* MAP */
.map-box {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

    .map-box iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ADDRESS */
.address {
    font-size: 15px;
    color: #333;
}

    .address a {
        margin-left: 6px;
        color: #6b6bff;
        text-decoration: none;
    }
/* ================= OPENING TIMES ================= */
.opening-section {
    margin-top: 70px;
}

.opening-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Headings */
.opening-heading {
    font-size: 32px;
    margin-bottom: 24px;
}

/* Opening list */
.opening-list {
    list-style: none;
}

    .opening-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        font-size: 20px;
    }

        .opening-list li.active {
            font-weight: 600;
        }

/* Day + dot */
.day {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dot {
    width: 18px;
    height: 18px;
    background: #8bd14b;
    border-radius: 50%;
}

/* Time */
.time {
    color: #111;
}

/* Additional info */
.info-list {
    list-style: none;
}

    .info-list li {
        font-size: 22px;
        margin-bottom: 22px;
    }
/************************vanue ****/
.venues-section {
    padding: 40px 60px;
    font-family: Arial, sans-serif;
}

    .venues-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

/* HORIZONTAL SCROLL */
.venues-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
}

    .venues-row::-webkit-scrollbar {
        height: 6px;
    }

    .venues-row::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

/* CARD */
.venue-card {
    min-width: 260px;
    max-width: 260px;
}

    .venue-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 14px;
        margin-bottom: 10px;
    }

    .venue-card h4 {
        font-size: 16px;
        margin: 4px 0;
    }

.rating {
    font-size: 14px;
    margin-bottom: 4px;
}

    .rating span {
        color: #777;
    }

.address {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.category {
    font-size: 13px;
    color: #888;
}
/*********************pop-up -css ***********/
/* OVERLAY */
.profile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* MODAL */
.profile-modal {
    background: #fff;
    width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    position: relative;
}

/* CLOSE */
.close-btn {
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 22px;
    cursor: pointer;
}

/* IMAGE */
.profile-img img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.subtitle {
    color: #777;
    margin-bottom: 18px;
}

/* TABS */
.tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

    .tabs button {
        border: none;
        padding: 8px 14px;
        border-radius: 20px;
        cursor: pointer;
    }

    .tabs .active {
        background: #000;
        color: #fff;
    }

/* STATS */
.stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    text-align: left;
}

    .stats div {
        font-size: 14px;
    }

    .stats strong {
        float: right;
    }

/* LANGUAGES */
.languages {
    text-align: left;
}

    .languages h4 {
        margin-bottom: 10px;
    }

.lang-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .lang-list span {
        padding: 6px 12px;
        border-radius: 20px;
        background: #f3f3f3;
        font-size: 13px;
    }
/* SERVICES INSIDE MODAL */
.services-content {
    margin-top: 20px;
}

.services-section h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5e5;
}

    .service-item.active {
        background: #f6f6f6;
        border-radius: 12px;
        margin: 10px 0;
        border-bottom: none;
    }

.service-info h4 {
    margin: 0;
    font-size: 16px;
}

.time {
    display: block;
    font-size: 13px;
    color: #777;
    margin: 4px 0;
}

.price {
    font-size: 14px;
    font-weight: 600;
}

.book-btn {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}
/***********************Flow pages *************/
