
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

		[data-scroll] {
			cursor: pointer;
		}
		

        html {
            scroll-behavior: smooth;
            
        }
		
		
        body {
            font-family: 'Cairo', sans-serif;
            background: #0b0b0b;
            color: #fff;
            line-height: 1.8;
         
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        :root {
            --gold: #c9a96e;
            --gold-light: #e3c891;
            --dark: #0b0b0b;
            --dark-2: #111111;
            --dark-3: #171717;
            --border: rgba(255,255,255,.09);
            --text-muted: #a5a5a5;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;

            width: 100%;

            z-index: 9999;

            border-bottom: 1px solid rgba(255,255,255,.08);

            background: rgba(11, 11, 11, 0.75);

            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);

            transition:
                background 0.3s ease,
                box-shadow 0.3s ease,
                padding 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(11, 11, 11, 0.96);

            box-shadow: 0 5px 25px rgba(0,0,0,.35);

            border-bottom-color: rgba(201,169,110,.25);
        }

        .nav-container {
            max-width: 1250px;
            margin: auto;
            padding: 20px 25px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 27px;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-links a {
            color: #ddd;
            font-size: 14px;
            transition: .3s;
        }

        .nav-links a:hover {
            color: var(--gold-light);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-login {
            padding: 9px 18px;
            color: #ddd;
            font-size: 14px;
        }

        .nav-register {
            background: var(--gold);
            color: #111;
            padding: 10px 21px;
            border-radius: 3px;
            font-size: 13px;
            font-weight: 700;
            transition: .3s;
        }

        .nav-register:hover {
            background: var(--gold-light);
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 760px;

            position: relative;

            display: flex;
            align-items: center;

            background:
                linear-gradient(
                    90deg,
                    rgba(0,0,0,.93) 0%,
                    rgba(0,0,0,.70) 45%,
                    rgba(0,0,0,.30) 100%
                ),
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=90');

            background-size: cover;
            background-position: center;
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            height: 180px;

            background: linear-gradient(
                transparent,
                #0b0b0b
            );
        }

        .hero-container {
            width: 100%;
            max-width: 1250px;
            margin: auto;
            padding: 150px 25px 100px;

            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-small {
            color: var(--gold-light);
            font-size: 14px;
            letter-spacing: 3px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero h1 {
            font-size: clamp(45px, 6vw, 78px);
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .hero h1 span {
            color: var(--gold-light);
        }

        .hero-description {
            color: #c7c7c7;
            font-size: 17px;
            max-width: 570px;
            line-height: 2;
            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gold);
            color: #111;

            padding: 14px 30px;

            border-radius: 3px;

            font-size: 14px;
            font-weight: 700;

            transition: .3s;
        }

        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid rgba(255,255,255,.4);
            color: #fff;

            padding: 13px 30px;

            border-radius: 3px;

            font-size: 14px;

            transition: .3s;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold-light);
        }

        /* =========================
           GENERAL
        ========================= */

        .section {
            padding: 110px 25px;
        }

        .container {
            max-width: 1250px;
            margin: auto;
        }

        .section-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }

        .section-label {
            color: var(--gold);
            font-size: 13px;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 38px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-description {
            color: var(--text-muted);
            font-size: 15px;
        }
/* =========================================
   SERVICES - HOW IT WORKS
========================================= */

.services {
    position: relative;
    background: #0b0b0b;
    overflow: hidden;
}


/* خلفيات زخرفية */

.services::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(201, 169, 110, 0.08);

    top: -250px;
    right: -150px;

    pointer-events: none;
}


.services::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    border: 1px solid rgba(201, 169, 110, 0.06);

    bottom: -180px;
    left: -120px;

    pointer-events: none;
}


/* =========================================
   SECTION HEADER
========================================= */

.services .section-header {
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;
}


.services .section-label {
    display: inline-block;

    color: var(--gold-light);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 15px;
}


.services .section-title {
    color: #ffffff;

    font-size: clamp(30px, 4vw, 46px);

    font-weight: 800;

    line-height: 1.4;

    margin-bottom: 18px;
}


.services .section-description {
    color: var(--text-muted);

    font-size: 16px;

    line-height: 2;

    margin: 0 auto;

    max-width: 600px;
}


/* =========================================
   SERVICES GRID
   دائماً 3 بطاقات في صف واحد
========================================= */

.home-services-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;

    width: 100%;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0f0f0f
        );

    border: 1px solid var(--border);

    padding: 45px 30px 38px;

    text-align: center;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


/* الخط الذهبي العلوي */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}


/* رقم الخطوة */

.service-card::after {
    content: attr(data-step);

    position: absolute;

    top: 20px;
    left: 20px;

    color: rgba(255, 255, 255, 0.05);

    font-size: 50px;

    font-weight: 800;

    line-height: 1;

    transition: color 0.4s ease;

    pointer-events: none;
}


/* Hover */

.service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(201, 169, 110, 0.45);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}


.service-card:hover::before {
    opacity: 1;
}


.service-card:hover::after {
    color: rgba(201, 169, 110, 0.08);
}


/* =========================================
   ICON
========================================= */

.service-icon {
    position: relative;

    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border: 1px solid rgba(201, 169, 110, 0.35);

    background: rgba(201, 169, 110, 0.06);

    color: var(--gold);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;
}


.service-icon svg {
    width: 30px;
    height: 30px;
}


.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(-5deg);

    background: var(--gold);

    color: #111111;
}


/* =========================================
   TEXT
========================================= */

.service-card h3 {
    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

    margin-bottom: 13px;
}


.service-card p {
    position: relative;

    z-index: 2;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 2;

    margin: 0;
}


/* =========================================
   TABLET
   تبقى 3 بطاقات
========================================= */

@media (max-width: 1000px) {

    .home-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 15px;
    }


    .service-card {
        padding: 35px 20px;
    }

}


/* =========================================
   MOBILE
   تبقى 3 بطاقات في صف واحد
========================================= */

@media (max-width: 700px) {

    .services .section-header {
        margin-bottom: 35px;
    }


    .services .section-title {
        font-size: 26px;
    }


    .services .section-description {
        font-size: 13px;
    }


    .home-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 8px;
    }


    .service-card {
        padding: 22px 8px 20px;

        min-width: 0;
    }


    .service-card::after {
        font-size: 28px;

        top: 10px;
        left: 8px;
    }


    .service-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 14px;
    }


    .service-icon svg {
        width: 21px;
        height: 21px;
    }


    .service-card h3 {
        font-size: 13px;

        margin-bottom: 8px;
    }


    .service-card p {
        font-size: 10px;

        line-height: 1.6;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .home-services-grid {
        gap: 5px;
    }


    .service-card {
        padding: 18px 5px;
    }


    .service-icon {
        width: 40px;
        height: 40px;
    }


    .service-card h3 {
        font-size: 11px;
    }


    .service-card p {
        font-size: 9px;
    }

}
/* =========================================
   HEADER
========================================= */

.services .section-header {
    position: relative;
    z-index: 2;
}


.services .section-label {
    display: inline-block;

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.services .section-title {
    font-size: clamp(32px, 4vw, 46px);

    font-weight: 800;

    color: #fff;

    margin-bottom: 18px;

    line-height: 1.4;
}


.services .section-description {
    color: var(--text-muted);

    font-size: 15px;

    line-height: 2;

    max-width: 600px;

    margin: auto;
}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0f0f0f
        );

    border: 1px solid var(--border);

    padding: 45px 32px 38px;

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}


/* الخط العلوي */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity: 0;

    transition: opacity .4s ease;
}


/* رقم الخطوة */

.service-card::after {
    content: attr(data-step);

    position: absolute;

    top: 22px;
    left: 25px;

    color: rgba(255,255,255,.06);

    font-size: 52px;

    font-weight: 800;

    line-height: 1;

    transition: color .4s ease;
}


/* Hover */

.service-card:hover {
    transform: translateY(-10px);

    border-color: rgba(201,169,110,.45);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);
}


.service-card:hover::before {
    opacity: 1;
}


.service-card:hover::after {
    color: rgba(201,169,110,.08);
}


/* =========================================
   ICON
========================================= */

.service-icon {
    position: relative;

    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 28px;

    border: 1px solid rgba(201,169,110,.35);

    background:
        rgba(201,169,110,.06);

    color: var(--gold);

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        border-color .4s ease;
}


.service-icon svg {
    width: 30px;
    height: 30px;
}


.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(-5deg);

    background: var(--gold);

    border-color: var(--gold);

    color: #111;
}


/* =========================================
   TEXT
========================================= */

.service-card h3 {
    position: relative;

    z-index: 2;

    text-align: center;

    font-size: 21px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 13px;
}


.service-card p {
    position: relative;

    z-index: 2;

    text-align: center;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 2;

    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .services-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        padding: 40px 25px 35px;
    }


    .service-card::after {
        font-size: 45px;
    }

}

      
	  
	  
	  /* =====================================================
   FEATURED SALONS
===================================================== */

.salons-section {
    background: #111;
}

.salons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.salon-card {
    background: #0b0b0b;
    border: 1px solid var(--border);
    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.salon-card:hover {
    transform: translateY(-7px);
    border-color: rgba(201,169,110,.45);

    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}


/* =====================================================
   IMAGE
===================================================== */

.salon-image {
    width: 100%;
    height: 250px;

    position: relative;
    overflow: hidden;

    background: #1a1a1a;
}

.salon-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.salon-card:hover .salon-image img {
    transform: scale(1.05);
}


/* =====================================================
   INFO
===================================================== */

.salon-info {
    padding: 20px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.salon-info h3 {
    margin: 0 0 7px;

    color: #fff;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.salon-location {
    color: #888;

    font-size: 12px;
    line-height: 1.7;

    margin-bottom: 17px;

    min-height: 40px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.salon-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 40px;

    padding: 8px 10px;

    border: 1px solid rgba(201,169,110,.5);

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.salon-button:hover {
    background: var(--gold);
    border-color: var(--gold);

    color: #111;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .salons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .salon-image {
        height: 230px;
    }

}

/* =====================================================
   FEATURED SALONS GRID
===================================================== */

.salons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}


/* =====================================================
   SALON CARD
===================================================== */

.salon-card {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.salon-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.salon-info {
    width: 100%;
    box-sizing: border-box;
}

.salon-info h3 {
    overflow: hidden;
    text-overflow: ellipsis;
}

.salon-location {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.salon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .salons-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .salon-image {
        height: 210px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .salons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .salon-card {
        width: 100%;
        min-width: 0;
    }

    .salon-image {
        height: 165px;
    }

    .salon-info {
        padding: 14px 12px 13px;
    }

    .salon-info h3 {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .salon-location {
        font-size: 10px;
        line-height: 1.5;
        min-height: 30px;
        margin-bottom: 12px;
    }

    .salon-button {
        min-height: 36px;
        padding: 7px 6px;
        font-size: 10px;
        white-space: nowrap;
    }

    .center-button {
        margin-top: 30px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .salons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px;
    }

    .salon-image {
        height: 140px;
    }

    .salon-info {
        padding: 11px 9px 10px;
    }

    .salon-info h3 {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .salon-location {
        font-size: 9px;
        line-height: 1.5;
        min-height: 28px;
        margin-bottom: 9px;
    }

    .salon-button {
        min-height: 33px;
        padding: 6px 4px;
        font-size: 9px;
    }
}


/* =====================================================
   EXTRA SMALL SCREENS
===================================================== */

@media (max-width: 330px) {

    .salons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px;
    }

    .salon-image {
        height: 125px;
    }

    .salon-info {
        padding: 9px 7px;
    }

    .salon-info h3 {
        font-size: 11px;
    }

    .salon-location {
        font-size: 8px;
        min-height: 25px;
    }

    .salon-button {
        min-height: 30px;
        font-size: 8px;
        padding: 5px 3px;
    }
}



        /* =========================
           REQUEST SERVICE
        ========================= */

        .request-section {
            background:
                linear-gradient(
                    90deg,
                    rgba(0,0,0,.96),
                    rgba(0,0,0,.90)
                ),
                url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1800&q=85');

            background-size: cover;
            background-position: center;
        }

        .request-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;

            align-items: center;
        }

        .request-content h2 {
            font-size: 42px;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .request-content h2 span {
            color: var(--gold-light);
        }

        .request-content p {
            color: #aaa;
            font-size: 15px;
            max-width: 500px;
        }

        .request-form {
            background: rgba(20,20,20,.88);
            border: 1px solid var(--border);
            padding: 35px;

            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            color: #bbb;
            margin-bottom: 7px;
        }

        .form-control {
            width: 100%;

            background: #111;
            border: 1px solid #292929;

            color: #fff;

            padding: 13px 15px;

            outline: none;

            font-family: inherit;
            font-size: 14px;

            transition: .3s;
        }

        .form-control:focus {
            border-color: var(--gold);
        }



input[type="tel"] {

    text-align: right;
}



        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;

            border: none;

            background: var(--gold);
            color: #111;

            padding: 14px;

            font-family: inherit;
            font-size: 14px;
            font-weight: 700;

            cursor: pointer;

            transition: .3s;
        }

        .form-submit:hover {
            background: var(--gold-light);
        }

        /* =========================
           WHY US
        ========================= */

        .why-section {
            background: #0b0b0b;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .why-card {
            text-align: center;
            padding: 35px 20px;
        }

        .why-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .why-card h3 {
            font-size: 17px;
            margin-bottom: 8px;
        }

        .why-card p {
            color: #888;
            font-size: 13px;
        }

        /* =========================
           CONTACT
        ========================= */

        .contact-section {
            background: #111;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h2 {
            font-size: 38px;
            margin-bottom: 18px;
        }

        .contact-info > p {
            color: #999;
            font-size: 15px;
            max-width: 500px;
            margin-bottom: 35px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 18px;

            margin-bottom: 22px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;

            border: 1px solid rgba(201,169,110,.35);

            display: flex;
            align-items: center;
            justify-content: center;

            color: var(--gold);
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 20px;
            height: 20px;
        }

        .contact-item small {
            color: #777;
            display: block;
            font-size: 11px;
        }

        .contact-item strong {
            font-size: 14px;
            font-weight: 500;
        }

        .contact-box {
            background: #0b0b0b;
            border: 1px solid var(--border);
            padding: 35px;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #070707;
            border-top: 1px solid var(--border);

            padding: 55px 25px 25px;
        }

        .footer-grid {
            max-width: 1250px;
            margin: auto;

            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 50px;
        }

        .footer-brand p {
            color: #777;
            font-size: 13px;
            max-width: 330px;
            margin-top: 15px;
        }

        .footer-column h4 {
            font-size: 15px;
            margin-bottom: 18px;
            color: #eee;
        }

        .footer-column a {
            display: block;
            color: #777;
            font-size: 13px;
            margin-bottom: 9px;
            transition: .3s;
        }

        .footer-column a:hover {
            color: var(--gold);
        }

        .copyright {
            max-width: 1250px;
            margin: 45px auto 0;

            padding-top: 20px;

            border-top: 1px solid rgba(255,255,255,.06);

            color: #555;

            font-size: 12px;
            text-align: center;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 1000px) {

            .nav-links {
                display: none;
            }

            .salons-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (max-width: 700px) {
        
            .navbar {
                position: fixed;
            }
        
            .nav-container {
                padding: 18px 18px;
            }
        
            .logo {
                font-size: 22px;
            }
        
            .nav-register {
                padding: 8px 14px;
            }
        
            .hero {
                min-height: 700px;
                background-position: 65% center;
            }
        
            .hero-container {
                padding: 140px 20px 80px;
            }
        
            .hero h1 {
                font-size: 42px;
            }
        
            .hero-description {
                font-size: 14px;
            }
        
            .section {
                padding: 75px 20px;
            }
        
            .section-title {
                font-size: 30px;
            }
        
            .services-grid,
            .salons-grid,
            .why-grid,
            .contact-wrapper,
            .request-wrapper {
                grid-template-columns: 1fr;
            }
        
            .salons-grid {
                gap: 18px;
            }
        
            .request-wrapper {
                gap: 40px;
            }
        
            .request-content h2 {
                font-size: 32px;
            }
        
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
		
		/* =========================================
   Mobile Menu Button
========================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 5px;

    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;

    width: 20px;
    height: 2px;

    background: #fff;
    border-radius: 10px;

    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.10);
}



            
            /* =========================================
               Mobile Navigation
            ========================================= */
            
            .mobile-nav-actions {
                display: none;
            }
            
            @media (max-width: 768px) {
            
                .nav-container {
                    position: relative;
                }
            
                .mobile-menu-btn {
                    display: flex;
                }
            
                .nav-links {
                    display: none;
            
                    position: absolute;
            
                    top: calc(100% + 10px);
                    right: 0;
                    left: 0;
            
                    padding: 15px;
            
                    background: rgba(15, 15, 15, 0.97);
            
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    border-radius: 16px;
            
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
            
                    flex-direction: column;
                    gap: 5px;
            
                    z-index: 999;
                }
            
                .nav-links.active {
                    display: flex;
                }
            
                .nav-links > a {
                    width: 100%;
                    padding: 13px 15px;
                    border-radius: 10px;
                    text-align: right;
                }
            
                /* إخفاء أزرار الحساب الخاصة بالكمبيوتر */
                .nav-actions {
                    display: none;
                }
            
                /* أزرار الحساب داخل قائمة الهاتف */
                .mobile-nav-actions {
                    display: flex !important;
            
                    flex-direction: column;
            
                    width: 100%;
            
                    gap: 8px;
            
                    margin-top: 8px;
            
                    padding-top: 12px;
            
                    border-top: 1px solid rgba(255, 255, 255, 0.08);
                }
            
                .mobile-nav-actions .nav-login,
                .mobile-nav-actions .nav-register {
                    display: flex !important;
            
                    width: 100%;
            
                    align-items: center;
                    justify-content: center;
            
                    padding: 12px 15px;
            
                    border-radius: 10px;
            
                    text-align: center;
                }
            
                .mobile-nav-actions .nav-login {
                    color: #ddd;
                }
            
                .mobile-nav-actions .nav-register {
                    background: var(--gold);
                    color: #111;
                }
}


        /* =========================
           TOP AREA
        ========================= */

        .top-area {
            display: flex;

            align-items: flex-end;

            justify-content: space-between;

            gap: 30px;

            margin-bottom: 45px;
        }

        .section-label {
            color: var(--gold);

            font-size: 13px;

            letter-spacing: 2px;

            font-weight: 700;

            margin-bottom: 8px;
        }

        .section-title {
            font-size: 35px;

            font-weight: 800;

            line-height: 1.4;
        }

        .salon-count {
            color: #888;

            font-size: 14px;

            margin-top: 7px;
        }

        .salon-count span {
            color: var(--gold-light);

            font-weight: 700;
        }


        /* =========================
           SEARCH
        ========================= */

        .search-wrapper {
            width: 360px;

            position: relative;
        }

        .search-wrapper input {
            width: 100%;

            height: 52px;

            background: #111;

            border: 1px solid #292929;

            color: #fff;

            padding: 0 50px 0 18px;

            font-family: inherit;

            font-size: 13px;

            outline: none;

            transition: .3s;
        }

        .search-wrapper input:focus {
            border-color: var(--gold);
        }

        .search-icon {
            position: absolute;

            right: 17px;

            top: 50%;

            transform: translateY(-50%);

            color: var(--gold);

            pointer-events: none;
        }

        .search-icon svg {
            width: 20px;
            height: 20px;
        }


        /* =========================
           GRID
        ========================= */

        .salons-grid {
            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 22px;
        }


        /* =========================
           CARD
        ========================= */

        .salon-card {
            background: #111;

            border: 1px solid var(--border);

            overflow: hidden;

            transition: .35s;

            display: flex;

            flex-direction: column;
        }

        .salon-card:hover {
            transform: translateY(-7px);

            border-color: rgba(201,169,110,.45);
        }


        /* =========================
           IMAGE
        ========================= */

        .salon-image {
            height: 255px;

            position: relative;

            overflow: hidden;

            background: #1a1a1a;
        }

        .salon-image img {
            width: 100%;
            height: 100%;

            object-fit: cover;

            transition: .5s;
        }

        .salon-card:hover .salon-image img {
            transform: scale(1.05);
        }


        /* =========================
           CARD INFO
        ========================= */

        .salon-info {
            padding: 22px;

            display: flex;

            flex-direction: column;

            flex: 1;
        }

        .salon-info h3 {
            font-size: 19px;

            margin-bottom: 8px;

            font-weight: 700;
        }

        .salon-location {
            color: #999;

            font-size: 13px;

            margin-bottom: 20px;

            min-height: 25px;
        }

        .salon-button {
            display: block;

            text-align: center;

            border: 1px solid rgba(201,169,110,.5);

            padding: 10px;

            color: var(--gold-light);

            font-size: 13px;

            transition: .3s;

            margin-top: auto;
        }

        .salon-button:hover {
            background: var(--gold);

            color: #111;
        }


        /* =========================
           EMPTY
        ========================= */

        .empty-state {
            grid-column: 1 / -1;

            text-align: center;

            padding: 90px 20px;

            border: 1px solid var(--border);

            background: #111;
        }

        .empty-icon {
            width: 65px;
            height: 65px;

            margin: 0 auto 20px;

            border: 1px solid rgba(201,169,110,.35);

            display: flex;

            align-items: center;
            justify-content: center;

            color: var(--gold);
        }

        .empty-icon svg {
            width: 28px;
            height: 28px;
        }

        .empty-state h3 {
            font-size: 20px;

            margin-bottom: 8px;
        }

        .empty-state p {
            color: #777;

            font-size: 13px;
        }


        /* =========================
           NO SEARCH RESULTS
        ========================= */

        .no-results {
            display: none;

            grid-column: 1 / -1;

            text-align: center;

            padding: 60px;

            color: #777;
        }

/* =====================================================
   SALON PROFILE
===================================================== */

/* =========================
   SALON HERO
========================= */

.salon-hero {
    position: relative;

    min-height: 560px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.68) 45%,
            rgba(0,0,0,.35) 100%
        ),
        url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=2000&q=90');

    background-size: cover;
    background-position: center;
}

.salon-hero::after {
    content: "";

    position: absolute;

    right: 0;
    left: 0;
    bottom: 0;

    height: 220px;

    background: linear-gradient(
        transparent,
        #0b0b0b
    );
}

.salon-hero .hero-container {
    width: 100%;

    max-width: 1250px;

    margin: auto;

    padding: 120px 25px 75px;

    position: relative;

    z-index: 2;
}

.salon-hero .hero-content {
    max-width: 780px;
}

.hero-label {
    color: var(--gold-light);

    font-size: 13px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 15px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 68px);

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 18px;
}

.hero-title span {
    color: var(--gold-light);
}

.salon-hero .hero-description {
    color: #c0c0c0;

    font-size: 15px;

    line-height: 2;

    max-width: 650px;
}


/* =========================
   SALON LOGO
========================= */

.salon-logo {
    position: absolute;

    right: 25px;

    top: 110px;

    width: 120px;
    height: 120px;

    background: #111;

    border: 4px solid var(--gold);

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.55);

    z-index: 5;
}

.salon-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.salon-logo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 34px;

    font-weight: 800;
}


/* =========================
   MAIN
========================= */

.main {
    position: relative;

    z-index: 5;

    margin-top: -20px;

    padding: 0 25px 100px;
}


/* =========================
   PROFILE INFO CARD
========================= */

.info-card {
    background: #111;

    border: 1px solid var(--border);

    padding: 38px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35);
}

.info-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.info-title-area h1 {
    font-size: 28px;

    font-weight: 800;

    margin-bottom: 5px;
}

.info-subtitle {
    color: var(--gold);

    font-size: 13px;
}

.info-description {
    color: #999;

    font-size: 14px;

    line-height: 2;

    max-width: 800px;

    margin-bottom: 30px;
}


/* =========================
   CONTACT DETAILS
========================= */

.info-details {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 30px;
}

.detail-item {
    background: #171717;

    border: 1px solid rgba(255,255,255,.06);

    padding: 16px 18px;

    display: flex;

    align-items: center;

    gap: 13px;
}

.detail-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201,169,110,.35);

    color: var(--gold);

    font-size: 18px;
}

.detail-content small {
    display: block;

    color: #666;

    font-size: 11px;

    margin-bottom: 2px;
}

.detail-content span {
    color: #ddd;

    font-size: 13px;

    font-weight: 600;
}


/* =========================
   BOOKING BUTTON
========================= */

.booking-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    background: var(--gold);

    color: #111;

    padding: 15px 25px;

    font-size: 15px;

    font-weight: 800;

    transition: .3s;

    border: 1px solid var(--gold);
}

.booking-button:hover {
    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: translateY(-2px);
}


/* =========================
   SERVICES SECTION
========================= */

.services-section {
    margin-top: 65px;
}

.section-heading {
    margin-bottom: 30px;
}

.services-section .section-label {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 700;

    margin-bottom: 7px;
}

.services-section .section-title {
    font-size: 32px;

    font-weight: 800;

    line-height: 1.4;
}

.services-section .section-description {
    color: #777;

    font-size: 13px;

    margin-top: 5px;
}


/* =========================
   SERVICES MENU
========================= */

.services-menu {
    background: #111;

    border: 1px solid var(--border);

    padding: 10px;
}

.service-item {
    display: flex;

    align-items: center;

    min-height: 70px;

    padding: 14px 18px;

    border-bottom: 1px solid rgba(255,255,255,.06);

    transition: .3s;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: #171717;

    padding-right: 24px;
}

.service-name {
    color: #eee;

    font-size: 14px;

    font-weight: 600;
}

.dots {
    flex: 1;

    border-bottom: 1px dotted #3a3a3a;

    margin: 0 18px;

    transform: translateY(3px);
}

.service-price {
    color: var(--gold-light);

    font-size: 14px;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================
   EMPTY SERVICES
========================= */

.empty-services {
    background: #111;

    border: 1px solid var(--border);

    padding: 55px 20px;

    text-align: center;
}

.empty-services-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    border: 1px solid rgba(201,169,110,.35);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 22px;
}

.empty-services h3 {
    font-size: 17px;

    margin-bottom: 5px;
}

.empty-services p {
    color: #666;

    font-size: 12px;
}


/* =========================
   BOOKING CTA
========================= */

.booking-cta {
    margin-top: 65px;

    padding: 55px 35px;

    position: relative;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #171717,
            #0f0f0f
        );

    border: 1px solid rgba(201,169,110,.22);
}

.booking-cta::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 1px solid rgba(201,169,110,.08);

    top: -120px;
    right: -60px;
}

.booking-cta::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(201,169,110,.08);

    bottom: -100px;
    left: -50px;
}

.booking-cta-content {
    position: relative;

    z-index: 2;
}

.booking-cta h2 {
    font-size: 27px;

    font-weight: 800;

    margin-bottom: 10px;
}

.booking-cta h2 span {
    color: var(--gold-light);
}

.booking-cta p {
    color: #888;

    font-size: 13px;

    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 240px;

    padding: 13px 25px;

    background: var(--gold);

    color: #111;

    font-size: 13px;

    font-weight: 800;

    transition: .3s;
}

.cta-button:hover {
    background: var(--gold-light);

    transform: translateY(-3px);
}


/* =====================================================
   SALON PROFILE RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .salon-logo {
        right: 25px;
        top: 100px;
    }

    .salon-hero .hero-container {
        padding-top: 160px;
    }

}


@media (max-width: 700px) {

    .salon-hero {
        min-height: 480px;

        background-position: 60% center;
    }

    .salon-hero .hero-container {
        padding: 150px 20px 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .salon-hero .hero-description {
        font-size: 13px;
    }

    .salon-logo {
        width: 90px;
        height: 90px;

        right: 20px;
        top: 90px;
    }

    .main {
        padding: 0 20px 75px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .info-title-area h1 {
        font-size: 23px;
    }

    .info-details {
        grid-template-columns: 1fr;
    }

    .services-section .section-title {
        font-size: 27px;
    }

    .service-item {
        min-height: 65px;

        padding: 12px;
    }

    .service-name {
        font-size: 13px;
    }

    .service-price {
        font-size: 13px;
    }

    .dots {
        margin: 0 10px;
    }

    .booking-cta {
        padding: 40px 20px;
    }

    .booking-cta h2 {
        font-size: 23px;
    }

}




/* =====================================================
BOOKING PAGE
===================================================== */

.booking-page {
min-height: 100vh;
padding: 80px 20px 100px;
}

.booking-container {
max-width: 900px;
margin: 0 auto;
}

/* =====================================================
HEADER
===================================================== */

.booking-header {
text-align: center;
margin-bottom: 45px;
}

.booking-label {
display: inline-block;
color: var(--accent, #fab03c);
font-size: 13px;
font-weight: 700;
letter-spacing: 1px;
margin-bottom: 14px;
}

.booking-title {
margin: 0 0 14px;
font-size: clamp(32px, 5vw, 52px);
font-weight: 800;
line-height: 1.2;
color: #fff;
}

.booking-title span {
color: var(--accent, #fab03c);
}

.booking-description {
max-width: 650px;
margin: auto;
color: #999;
font-size: 16px;
line-height: 1.9;
}

/* =====================================================
ALERTS
===================================================== */

.booking-alert {
padding: 16px 20px;
border-radius: 14px;
margin-bottom: 20px;
font-size: 14px;
line-height: 1.8;
}

.booking-alert.success {
background: rgba(40, 167, 69, 0.10);
border: 1px solid rgba(40, 167, 69, 0.25);
color: #79d992;
}

.booking-alert.error {
background: rgba(220, 53, 69, 0.10);
border: 1px solid rgba(220, 53, 69, 0.25);
color: #ff858f;
}

/* =====================================================
CARD
===================================================== */

.booking-card {
background: #111;
border: 1px solid var(--border, #242424);
border-radius: 22px;
padding: 32px;
margin-bottom: 24px;


transition:
    opacity .35s ease,
    border-color .35s ease,
    transform .35s ease;


}

/* =====================================================
DISABLED STEPS
===================================================== */

.booking-step.step-disabled {
opacity: .42;
pointer-events: none;
}

.booking-step.step-active {
opacity: 1;
pointer-events: auto;
}

/* =====================================================
STEP HEADING
===================================================== */

.step-heading {
display: flex;
align-items: flex-start;
gap: 18px;
margin-bottom: 30px;
}

.step-number {
width: 42px;
height: 42px;

display: flex;
align-items: center;
justify-content: center;

flex-shrink: 0;

border-radius: 50%;

background: var(--accent, #fab03c);
color: #000;

font-size: 17px;
font-weight: 800;


}

.step-heading h2 {
margin: 0 0 7px;
color: #fff;
font-size: 23px;
font-weight: 700;
}

.step-heading p {
margin: 0;
color: #777;
font-size: 14px;
line-height: 1.8;
}

/* =====================================================
BARBERS
===================================================== */

.barbers-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}

.barber-option {
position: relative;


min-height: 70px;

display: flex;
align-items: center;
justify-content: center;

padding: 15px;

background: #181818;

border: 1px solid #292929;
border-radius: 14px;

color: #fff;

font-family: inherit;
font-size: 15px;
font-weight: 600;

cursor: pointer;

transition:
    all .25s ease;


}

.barber-option:hover {
border-color: rgba(250, 176, 60, .55);
transform: translateY(-2px);
}

.barber-option.active {
background: rgba(250, 176, 60, .09);
border-color: var(--accent, #fab03c);
box-shadow:
0 0 0 1px rgba(250, 176, 60, .12);
}

.barber-name {
position: relative;
z-index: 2;
}

.barber-check {
position: absolute;


top: 8px;
left: 8px;

width: 21px;
height: 21px;

display: flex;
align-items: center;
justify-content: center;

border-radius: 50%;

background: var(--accent, #fab03c);
color: #000;

font-size: 11px;
font-weight: 900;

opacity: 0;

transform: scale(.6);

transition: all .25s ease;


}

.barber-option.active .barber-check {
opacity: 1;
transform: scale(1);
}

/* =====================================================
DATES
===================================================== */

.dates-grid {
display: grid;


grid-template-columns:
    repeat(7, minmax(75px, 1fr));

gap: 10px;

overflow-x: auto;

scrollbar-width: thin;


}

.date-option {
min-width: 82px;
min-height: 100px;


display: flex;
flex-direction: column;
align-items: center;
justify-content: center;

gap: 4px;

padding: 10px;

background: #181818;

border: 1px solid #292929;
border-radius: 14px;

color: #fff;

font-family: inherit;

cursor: pointer;

transition:
    all .25s ease;


}

.date-option:hover {
border-color: rgba(250, 176, 60, .55);
transform: translateY(-2px);
}

.date-option.active {
background: var(--accent, #fab03c);
border-color: var(--accent, #fab03c);


color: #000;

box-shadow:
    0 8px 25px rgba(250, 176, 60, .12);

}

.date-day {
font-size: 12px;
font-weight: 600;
opacity: .65;
}

.date-option.active .date-day {
opacity: .75;
}

.date-number {
font-size: 25px;
font-weight: 800;
line-height: 1.1;
}

.date-month {
font-size: 11px;
opacity: .55;
}

.date-option.active .date-month {
opacity: .7;
}

/* =====================================================
SERVICES
===================================================== */

.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
}

.service-option {
position: relative;
}

.service-option input {
position: absolute;
opacity: 0;
pointer-events: none;
}

.service-box {
display: flex;
align-items: center;
justify-content: space-between;

gap: 15px;

min-height: 75px;

padding: 16px 18px;

background: #181818;

border: 1px solid #292929;
border-radius: 14px;

cursor: pointer;

transition: all .25s ease;

}

.service-box:hover {
border-color: rgba(250, 176, 60, .45);
transform: translateY(-2px);
}

.service-option input:checked + .service-box {
background: rgba(250, 176, 60, .08);


border-color: var(--accent, #fab03c);

box-shadow:
    0 0 0 1px rgba(250, 176, 60, .12);


}

.service-info {
display: flex;
flex-direction: column;
gap: 5px;
}

.service-name {
color: #fff;
font-size: 15px;
font-weight: 600;
}

.service-duration {
color: #777;
font-size: 12px;
}

.service-price {
color: var(--accent, #fab03c);


font-size: 14px;
font-weight: 700;

white-space: nowrap;


}

/* =====================================================
SERVICE HINT
===================================================== */

.selection-hint {
margin-top: 18px;


color: #777;

font-size: 13px;

text-align: center;

}

/* =====================================================
TIMES
===================================================== */

.times-grid {
display: grid;


grid-template-columns:
    repeat(auto-fill, minmax(105px, 1fr));

gap: 12px;


}

.time-option {
min-height: 54px;


border: 1px solid var(--border, #333);

background: #181818;

color: #fff;

border-radius: 12px;

cursor: pointer;

font-family: inherit;
font-size: 15px;
font-weight: 600;

transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease,
    box-shadow .25s ease;


}

.time-option:hover {
border-color: var(--accent, #fab03c);
transform: translateY(-2px);
}

.time-option.active {
background: var(--accent, #fab03c);


color: #000;

border-color: var(--accent, #fab03c);

box-shadow:
    0 8px 25px rgba(250, 176, 60, .12);


}

/* =====================================================
TIMES LOADING
===================================================== */

.times-loading {
align-items: center;
justify-content: center;


gap: 10px;

margin-bottom: 18px;

padding: 15px;

text-align: center;

border-radius: 10px;

background: rgba(255,255,255,.04);

color: var(--accent, #fab03c);

font-size: 14px;

}

.loading-spinner {
width: 17px;
height: 17px;


border: 2px solid rgba(250,176,60,.25);
border-top-color: var(--accent, #fab03c);

border-radius: 50%;

animation: bookingSpin .8s linear infinite;

}

@keyframes bookingSpin {
to {
transform: rotate(360deg);
}
}

/* =====================================================
TIME PLACEHOLDER
===================================================== */

.times-placeholder {
width: 100%;


padding: 30px;

text-align: center;

border: 1px dashed #444;

border-radius: 12px;

color: #777;

font-size: 14px;


}

/* =====================================================
NO TIMES
===================================================== */

.times-empty {
grid-column: 1 / -1;

display: flex;
flex-direction: column;
align-items: center;

gap: 8px;

padding: 35px 20px;

text-align: center;

border: 1px dashed #3a3a3a;

border-radius: 14px;

color: #777;


}

.times-empty strong {
color: #ddd;
font-size: 15px;
}

.times-empty-icon {
width: 38px;
height: 38px;


display: flex;
align-items: center;
justify-content: center;

margin-bottom: 5px;

border-radius: 50%;

background: rgba(220,53,69,.1);

color: #ff858f;

font-size: 20px;
font-weight: 700;

}

/* =====================================================
RETRY
===================================================== */

.retry-button {
margin-top: 8px;


padding: 9px 15px;

border: 1px solid #333;
border-radius: 9px;

background: #181818;
color: #ddd;

font-family: inherit;

cursor: pointer;

transition: .2s ease;


}

.retry-button:hover {
border-color: var(--accent, #fab03c);
color: var(--accent, #fab03c);
}

/* =====================================================
CUSTOMER
===================================================== */

.customer-grid {
display: grid;


grid-template-columns: 1fr 1fr;

gap: 18px;


}

.form-group {
display: flex;
flex-direction: column;

gap: 9px;

}

.form-group label {
color: #ddd;


font-size: 14px;
font-weight: 600;

}

.booking-card input:not([type="checkbox"]),
.booking-card select {
width: 100%;


height: 52px;

padding: 0 15px;

background: #181818;

color: #fff;

border: 1px solid #292929;

border-radius: 12px;

outline: none;

font-family: inherit;
font-size: 14px;

transition: .25s ease;


}

.booking-card input:focus {
border-color: var(--accent, #fab03c);


box-shadow:
    0 0 0 3px rgba(250,176,60,.08);

}

/* =====================================================
SUMMARY
===================================================== */

.booking-summary {
margin-top: 30px;
margin-bottom: 25px;


padding: 24px;

background:
    linear-gradient(
        135deg,
        rgba(250,176,60,.055),
        rgba(255,255,255,.02)
    );

border: 1px solid rgba(250,176,60,.18);

border-radius: 16px;


}

.summary-header {
margin-bottom: 12px;
}

.summary-label {
display: block;


margin-bottom: 5px;

color: var(--accent, #fab03c);

font-size: 12px;
font-weight: 700;


}

.summary-header h3 {
margin: 0;


color: #fff;

font-size: 19px;
font-weight: 700;


}

.summary-row {
display: flex;

align-items: center;
justify-content: space-between;

gap: 20px;

padding: 13px 0;

border-bottom: 1px solid rgba(255,255,255,.07);


}

.summary-row span {
color: #777;


font-size: 13px;


}

.summary-row strong {
max-width: 65%;


color: #eee;

font-size: 13px;

text-align: left;

line-height: 1.7;


}

.summary-row.total {
margin-top: 8px;


padding-top: 18px;

border-bottom: none;


}

.summary-row.total span {
color: #ddd;


font-size: 15px;
font-weight: 600;


}

.summary-row.total strong {
color: var(--accent, #fab03c);

```
font-size: 21px;
font-weight: 800;
```

}

/* =====================================================
SUBMIT
===================================================== */

.booking-submit {
width: 100%;


height: 60px;

display: flex;
align-items: center;
justify-content: center;

gap: 12px;

margin-top: 10px;

border: none;
border-radius: 14px;

background: var(--accent, #fab03c);

color: #111;

font-family: inherit;

font-size: 16px;
font-weight: 800;

cursor: pointer;

transition:
    transform .25s ease,
    box-shadow .25s ease;


}

.booking-submit:hover {
transform: translateY(-2px);


box-shadow:
    0 12px 30px rgba(250,176,60,.18);


}

.submit-arrow {
font-size: 20px;


transition: transform .25s ease;


}

.booking-submit:hover .submit-arrow {
transform: translateX(-4px);
}

/* =====================================================
BACK
===================================================== */

.back-link {
display: block;

width: fit-content;

margin: 30px auto 0;

color: #777;

text-decoration: none;

font-size: 14px;

transition: .2s ease;


}

.back-link:hover {
color: var(--accent, #fab03c);
}

/* =====================================================
MOBILE
===================================================== */

@media (max-width: 700px) {


.booking-page {
    padding: 55px 15px 70px;
}

.booking-header {
    margin-bottom: 30px;
}

.booking-title {
    font-size: 34px;
}

.booking-description {
    font-size: 14px;
}

.booking-card {
    padding: 22px 17px;

    border-radius: 18px;
}

.step-heading {
    gap: 12px;
}

.step-number {
    width: 36px;
    height: 36px;

    font-size: 16px;
}

.step-heading h2 {
    font-size: 20px;
}

.step-heading p {
    font-size: 13px;
}


/* Barbers */

.barbers-grid {
    grid-template-columns: 1fr 1fr;
}


/* Dates */

.dates-grid {
    display: flex;

    overflow-x: auto;

    padding-bottom: 8px;

    scroll-snap-type: x mandatory;
}

.date-option {
    flex: 0 0 82px;

    scroll-snap-align: start;
}


/* Services */

.services-grid {
    grid-template-columns: 1fr;
}


/* Times */

.times-grid {
    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}

.time-option {
    min-height: 50px;

    font-size: 14px;
}


/* Customer */

.customer-grid {
    grid-template-columns: 1fr;
}


/* Summary */

.summary-row {
    align-items: flex-start;
}

.summary-row strong {
    max-width: 60%;
}


}

@media (max-width: 400px) {

.barbers-grid {
    grid-template-columns: 1fr;
}

.times-grid {
    grid-template-columns:
        repeat(2, 1fr);
}


}





/* =====================================================
   CONTACT ALERT
===================================================== */

.contact-alert {

    margin-top: 20px;

    padding: 14px 18px;

    border-radius: 10px;

    font-size: 14px;

    line-height: 1.7;

    text-align: right;

    animation: contactAlertIn .3s ease;

}


/* نجاح */

.contact-alert.success {

    background: rgba(34, 197, 94, .10);

    border: 1px solid rgba(34, 197, 94, .30);

    color: #22c55e;

}


/* فشل */

.contact-alert.error {

    background: rgba(239, 68, 68, .10);

    border: 1px solid rgba(239, 68, 68, .30);

    color: #ef4444;

}


/* زر أثناء الإرسال */

.form-submit:disabled {

    opacity: .6;

    cursor: not-allowed;

}


/* Animation */

@keyframes contactAlertIn {

    from {

        opacity: 0;

        transform: translateY(-5px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}




/* =====================================================
   SALON REQUEST ALERT
===================================================== */

.request-alert {

    margin-top: 20px;

    padding: 14px 18px;

    border-radius: 10px;

    font-size: 14px;

    line-height: 1.8;

    text-align: right;

    animation: requestAlertIn .3s ease;

}


/* نجاح */

.request-alert.success {

    background: rgba(34, 197, 94, .10);

    border: 1px solid rgba(34, 197, 94, .30);

    color: #22c55e;

}


/* فشل */

.request-alert.error {

    background: rgba(239, 68, 68, .10);

    border: 1px solid rgba(239, 68, 68, .30);

    color: #ef4444;

}


/* الزر أثناء الإرسال */

#salonRequestSubmit:disabled {

    opacity: .6;

    cursor: not-allowed;

}


@keyframes requestAlertIn {

    from {

        opacity: 0;

        transform: translateY(-6px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}
