:root {
    --bg-dark: #0b1320;
    --bg-soft: #121d2b;
    --bg-card: #182536;

    --accent: #c97b4f;
    --accent-light: #e3a27b;

    --text-light: #f5f1ea;
    --text-muted: #aab3bf;

    --border: rgba(255, 255, 255, 0.08);

    --font-heading: "Playfair Display", serif;
    --font-body: "Montserrat", sans-serif;

    --container-width: 1200px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
}

.container {
    width: min(90%, var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-label,
.hero-eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading h2,
.experience-content h2,
.booking-cta h2 {
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
}

.section-heading h2 span,
.experience-content h2 span,
.booking-cta h2 span {
    color: var(--accent);
}

.section-heading > p:last-child {
    margin-top: 18px;
    color: var(--text-muted);
    max-width: 620px;
}


/* =========================
   HEADER / NAVIGATION
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(11, 19, 32, 0.78);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid var(--border);
}
.header.scrolled {
    background: rgba(7, 16, 27, 0.96);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22);
}

.navbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.logo {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.logo span {
    color: var(--accent);
}

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

.nav-links a {
    position: relative;

    color: #d8dee7;

    font-size: 0.87rem;
    font-weight: 500;

    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-book-btn {
    padding: 12px 20px;

    border: 1px solid var(--accent);

    color: var(--accent);

    font-size: 0.82rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    transition: var(--transition);
}

.nav-book-btn:hover {
    background: var(--accent);

    color: var(--bg-dark);
}

.menu-toggle {
    display: none;

    border: none;

    background: transparent;

    color: var(--text-light);

    font-size: 1.8rem;

    cursor: pointer;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 28px;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);

    color: var(--bg-dark);

    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);

    border-color: var(--accent-light);

    transform: translateY(-2px);
}

.btn-secondary,
.btn-outline {
    background: transparent;

    color: var(--text-light);

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--accent);

    color: var(--accent);

    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.98) 0%,
            rgba(11, 19, 32, 0.80) 45%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/hero/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            var(--bg-dark) 0%,
            transparent 28%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 100px;
}

.hero-content h1 {
    max-width: 750px;

    margin-top: 15px;

    font-family: var(--font-heading);

    font-size: clamp(3.5rem, 8vw, 7rem);

    line-height: 0.98;
}

.hero-content h1 span {
    display: block;

    color: var(--accent);
}

.hero-description {
    max-width: 560px;

    margin-top: 28px;

    color: #c0c8d3;

    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}


/* =========================
   SERVICES
========================= */
.services-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.95) 0%,
            rgba(11, 19, 32, 0.72) 55%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/services/services-hero.jpg")
        center/cover no-repeat;
}

.services-preview {
    background: var(--bg-dark);
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    position: relative;

    min-height: 330px;

    padding: 38px 30px;

    background: var(--bg-card);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 123, 79, 0.65);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25);
}

.service-number {
    color: rgba(201, 123, 79, 0.52);

    font-family: var(--font-heading);

    font-size: 2.7rem;

    font-weight: 700;
}

.service-card h3 {
    margin-top: 28px;

    font-family: var(--font-heading);

    font-size: 1.7rem;
}

.service-card p {
    margin-top: 14px;

    color: var(--text-muted);
}

.service-price {
    display: inline-block;

    margin-top: 30px;

    color: var(--accent);

    font-weight: 700;
}

.section-button {
    margin-top: 42px;
}


/* =========================
   BARBERS
========================= */

.barbers-preview {
    background: var(--bg-soft);
}

.barber-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.barber-card {
    overflow: hidden;

    background: var(--bg-card);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.barber-card:hover {
    border-color: rgba(201, 123, 79, 0.5);

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25);
}

.barber-image {
    aspect-ratio: 4 / 5;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.35)
        ),
        url("../assets/images/barbers/barber-1.jpg")
        center/cover no-repeat;

    transition: transform 0.5s ease;
}

.barber-card:nth-child(2) .barber-image {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.35)
        ),
        url("../assets/images/barbers/barber-2.jpg");
}

.barber-card:nth-child(3) .barber-image {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.35)
        ),
        url("../assets/images/barbers/barber-3.jpg");
}

.barber-card:hover .barber-image {
    transform: scale(1.04);
}

.barber-info {
    padding: 25px;
}

.barber-info h3 {
    font-family: var(--font-heading);

    font-size: 1.55rem;
}

.barber-info p {
    margin-top: 4px;

    color: var(--text-muted);
}

.barber-info a {
    display: inline-block;

    margin-top: 17px;

    color: var(--accent);

    font-size: 0.84rem;

    font-weight: 700;
}

.barber-info a:hover {
    color: var(--accent-light);
}


/* =========================
   EXPERIENCE
========================= */

.experience {
    background: var(--bg-dark);
}

.experience-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 70px;
}

.experience-content p:not(.section-label) {
    margin-top: 18px;

    color: var(--text-muted);
}

.experience-content .btn {
    margin-top: 30px;
}

.experience-image {
    min-height: 570px;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.08),
            rgba(11, 19, 32, 0.28)
        ),
        url("../assets/images/gallery/experience.jpg")
        center/cover no-repeat;

    border: 1px solid var(--border);
}


/* =========================
   BOOKING CTA
========================= */

.booking-cta {
    position: relative;

    padding: 125px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.86),
            rgba(11, 19, 32, 0.95)
        ),
        url("../assets/images/gallery/cta.jpg")
        center/cover no-repeat;
}

.booking-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 123, 79, 0.12),
            transparent 60%
        );
}

.booking-cta .container {
    position: relative;

    z-index: 2;
}

.booking-cta h2 {
    max-width: 700px;

    margin-inline: auto;
}

.booking-cta > .container > p:not(.section-label) {
    max-width: 550px;

    margin: 20px auto 0;

    color: #c0c8d3;
}

.booking-cta .btn {
    margin-top: 30px;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding-top: 75px;

    background: #07101b;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-brand p {
    max-width: 260px;

    margin-top: 18px;

    color: var(--text-muted);
}

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-links h4 {
    margin-bottom: 8px;

    color: var(--accent);

    font-size: 0.8rem;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.footer-links a,
.footer-links p {
    color: var(--text-muted);

    font-size: 0.9rem;
}

.footer-links a {
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 24px 5%;

    text-align: center;

    color: #788394;

    font-size: 0.78rem;

    border-top: 1px solid var(--border);
}
/* =========================
   INNER PAGE HERO
========================= */

.page-hero {
    min-height: 60vh;

    display: flex;
    align-items: center;

    padding-top: 140px;
    padding-bottom: 80px;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.86),
            rgba(11, 19, 32, 0.96)
        ),
        url("../assets/images/services/services-hero.jpg")
        center/cover no-repeat;
}

.page-hero .container {
    max-width: 850px;
}

.page-hero h1 {
    margin-top: 14px;

    font-family: var(--font-heading);

    font-size: clamp(3.2rem, 7vw, 6rem);

    line-height: 1;
}

.page-hero h1 span {
    display: block;

    color: var(--accent);
}

.page-hero p:not(.section-label) {
    max-width: 620px;

    margin-top: 24px;

    color: var(--text-muted);

    font-size: 1rem;
}

.services-page {
    background: var(--bg-dark);
}
/* =========================
   BARBERS PAGE
========================= */

.barbers-page-hero {
    min-height: 68vh;

    position: relative;

    display: flex;
    align-items: center;

    padding-top: 82px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.97) 0%,
            rgba(11, 19, 32, 0.72) 55%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/barbers/barber-hero.jpg")
        center/cover no-repeat;
}

.barbers-page-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            var(--bg-dark),
            transparent 35%
        );
}

.barbers-page-hero-content {
    position: relative;

    z-index: 2;

    max-width: 800px;
}

.barbers-page-hero h1 {
    margin-top: 15px;

    font-family: var(--font-heading);

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    line-height: 1;
}

.barbers-page-hero h1 span {
    display: block;

    color: var(--accent);
}

.barbers-page-hero-content > p:last-child {
    max-width: 560px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 1.05rem;
}


/* =========================
   BARBER PROFILE LIST
========================= */

.barber-profiles {
    background: var(--bg-dark);
}

.barber-profile-list {
    display: flex;

    flex-direction: column;

    gap: 80px;
}

.barber-profile {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 600px;

    background: var(--bg-card);

    border: 1px solid var(--border);

    overflow: hidden;
}

.barber-profile-reverse .barber-profile-image {
    order: 2;
}

.barber-profile-reverse .barber-profile-content {
    order: 1;
}

.barber-profile-image {
    min-height: 600px;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    transition: transform 0.5s ease;
}

.barber-profile:hover .barber-profile-image {
    transform: scale(1.015);
}

.barber-profile-content {
    padding: 65px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.barber-role {
    color: var(--accent);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 0.18em;
}

.barber-profile-content h2 {
    margin-top: 10px;

    font-family: var(--font-heading);

    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.barber-description {
    margin-top: 22px;

    color: var(--text-muted);

    line-height: 1.8;
}

.barber-specialties {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.barber-specialties span {
    padding: 8px 13px;

    border: 1px solid rgba(201, 123, 79, 0.35);

    color: var(--accent);

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 0.04em;
}

.barber-meta {
    display: flex;

    gap: 45px;

    margin-top: 35px;
}

.barber-meta div {
    display: flex;

    flex-direction: column;
}

.barber-meta strong {
    color: var(--text-light);

    font-family: var(--font-heading);

    font-size: 1.8rem;
}

.barber-meta span {
    color: var(--text-muted);

    font-size: 0.76rem;
}

.barber-profile-content .btn {
    align-self: flex-start;

    margin-top: 35px;
}
/* =========================
   GALLERY PAGE
========================= */

.gallery-page-hero {
    min-height: 68vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 82px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.97) 0%,
            rgba(11, 19, 32, 0.72) 55%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/gallery/gallery-hero.jpg")
        center/cover no-repeat;
}

.gallery-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            var(--bg-dark),
            transparent 35%
        );
}

.gallery-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.gallery-page-hero h1 {
    margin-top: 15px;

    font-family: var(--font-heading);

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    line-height: 1;
}

.gallery-page-hero h1 span {
    display: block;
    color: var(--accent);
}

.gallery-page-hero-content > p:last-child {
    max-width: 560px;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
}


/* =========================
   GALLERY GRID
========================= */

.gallery-section {
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 280px;

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    background: var(--bg-card);

    border: 1px solid var(--border);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);

    filter: brightness(0.72);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 25px;

    background:
        linear-gradient(
            to top,
            rgba(11, 19, 32, 0.9),
            transparent 55%
        );

    opacity: 0;

    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-light);

    font-family: var(--font-heading);

    font-size: 1.4rem;
}


/* =========================
   GALLERY CTA
========================= */

.gallery-cta {
    position: relative;

    padding: 120px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.9),
            rgba(11, 19, 32, 0.96)
        ),
        url("../assets/images/gallery/gallery-cta.jpg")
        center/cover no-repeat;
}

.gallery-cta-content {
    position: relative;
    z-index: 2;
}

.gallery-cta h2 {
    margin-top: 12px;

    font-family: var(--font-heading);

    font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.gallery-cta h2 span {
    color: var(--accent);
}

.gallery-cta p:not(.section-label) {
    max-width: 560px;

    margin: 20px auto 0;

    color: var(--text-muted);
}

.gallery-cta .btn {
    margin-top: 30px;
}
/* =========================
   ABOUT PAGE
========================= */

.about-page-hero {
    min-height: 68vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 82px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.97) 0%,
            rgba(11, 19, 32, 0.72) 55%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/about/about-hero.jpg")
        center/cover no-repeat;
}

.about-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            var(--bg-dark),
            transparent 35%
        );
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-page-hero h1 {
    margin-top: 15px;

    font-family: var(--font-heading);

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    line-height: 1;
}

.about-page-hero h1 span {
    display: block;
    color: var(--accent);
}

.about-page-hero-content > p:last-child {
    max-width: 560px;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
}


/* =========================
   ABOUT STORY
========================= */

.about-story {
    background: var(--bg-dark);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.about-story-image {
    min-height: 620px;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.08),
            rgba(11, 19, 32, 0.22)
        ),
        url("../assets/images/about/about-story.jpg")
        center/cover no-repeat;

    border: 1px solid var(--border);
}

.about-story-content h2,
.about-experience-content h2 {
    margin-top: 12px;

    font-family: var(--font-heading);

    font-size: clamp(2.6rem, 5vw, 4.2rem);

    line-height: 1.1;
}

.about-story-content h2 span,
.about-experience-content h2 span {
    color: var(--accent);
}

.about-story-content p:not(.section-label),
.about-experience-content > p:not(.section-label) {
    margin-top: 20px;
    color: var(--text-muted);
}

.about-story-content .btn {
    margin-top: 30px;
}


/* =========================
   VALUES
========================= */

.about-values {
    background: var(--bg-soft);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    min-height: 310px;

    padding: 38px 30px;

    background: var(--bg-card);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 123, 79, 0.5);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);
}

.value-number {
    color: var(--accent);

    font-family: var(--font-heading);

    font-size: 2.5rem;
}

.value-card h3 {
    margin-top: 28px;

    font-family: var(--font-heading);

    font-size: 1.7rem;
}

.value-card p {
    margin-top: 14px;

    color: var(--text-muted);
}


/* =========================
   ABOUT EXPERIENCE
========================= */

.about-experience {
    background: var(--bg-dark);
}

.about-experience-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-experience-image {
    min-height: 580px;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.08),
            rgba(11, 19, 32, 0.22)
        ),
        url("../assets/images/about/about-experience.jpg")
        center/cover no-repeat;

    border: 1px solid var(--border);
}

.about-list {
    margin-top: 28px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    position: relative;

    padding-left: 25px;

    color: var(--text-muted);
}

.about-list li::before {
    content: "—";

    position: absolute;

    left: 0;

    color: var(--accent);
}

.about-experience-content .btn {
    margin-top: 30px;
}


/* =========================
   ABOUT STATS
========================= */

.about-stats {
    padding: 70px 0;

    background: var(--bg-soft);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

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

.stat-item strong {
    display: block;

    color: var(--accent);

    font-family: var(--font-heading);

    font-size: clamp(2.5rem, 5vw, 4rem);
}

.stat-item span {
    display: block;

    margin-top: 7px;

    color: var(--text-muted);

    font-size: 0.82rem;
}
/* =========================
   CONTACT PAGE
========================= */

.contact-page-hero {
    min-height: 65vh;
    position: relative;

    display: flex;
    align-items: center;

    padding-top: 82px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.97) 0%,
            rgba(11, 19, 32, 0.72) 55%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/contact/contact-hero.jpg")
        center/cover no-repeat;
}

.contact-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            var(--bg-dark),
            transparent 35%
        );
}

.contact-page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.contact-page-hero h1 {
    margin-top: 15px;

    font-family: var(--font-heading);

    font-size: clamp(3.5rem, 7vw, 6.5rem);

    line-height: 1;
}

.contact-page-hero h1 span {
    display: block;

    color: var(--accent);
}

.contact-page-hero-content > p:last-child {
    max-width: 570px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 1.05rem;
}


/* CONTACT CARDS */

.contact-info {
    background: var(--bg-dark);
}

.contact-info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.contact-info-card {
    padding: 35px 30px;

    background: var(--bg-card);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);

    border-color: rgba(201, 123, 79, 0.5);
}

.contact-number {
    color: var(--accent);

    font-family: var(--font-heading);

    font-size: 2rem;
}

.contact-info-card h3 {
    margin-top: 20px;

    font-family: var(--font-heading);

    font-size: 1.7rem;
}

.contact-info-card p {
    margin-top: 8px;

    color: var(--text-muted);
}


/* CONTACT MAIN */

.contact-main {
    background: var(--bg-soft);
}

.contact-main-grid {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 60px;
}

.contact-form-wrapper,
.contact-hours {
    padding: 45px;

    background: var(--bg-card);

    border: 1px solid var(--border);
}

.contact-form-wrapper h2,
.contact-hours h2,
.contact-location-card h2 {
    margin-top: 10px;

    font-family: var(--font-heading);

    font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.contact-form-wrapper h2 span,
.contact-hours h2 span,
.contact-location-card h2 span {
    color: var(--accent);
}

.contact-form {
    margin-top: 35px;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.8rem;

    font-weight: 600;

    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    border: 1px solid var(--border);

    outline: none;

    background: var(--bg-dark);

    color: var(--text-light);

    font-family: var(--font-body);

    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #748092;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}


/* HOURS */

.hours-list {
    margin-top: 35px;
}

.hours-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.hours-row span {
    color: var(--text-muted);
}

.hours-row strong {
    color: var(--text-light);

    font-size: 0.88rem;
}

.contact-book-box {
    margin-top: 35px;

    padding: 25px;

    background: var(--bg-dark);

    border-left: 3px solid var(--accent);
}

.contact-book-box p {
    margin-bottom: 18px;

    color: var(--text-muted);
}


/* LOCATION */

.contact-location {
    padding: 120px 0;

    background:
        linear-gradient(
            rgba(11, 19, 32, 0.88),
            rgba(11, 19, 32, 0.95)
        ),
        url("../assets/images/contact/contact-location.jpg")
        center/cover no-repeat;
}

.contact-location-card {
    max-width: 650px;

    padding: 50px;

    background: rgba(11, 19, 32, 0.88);

    border: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.contact-location-card > p:not(.section-label) {
    margin-top: 18px;

    color: var(--text-muted);
}

.contact-location-card .btn {
    margin-top: 28px;
}
/* =========================
   BOOKING PAGE
========================= */

.booking-page-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 82px;

    background:
        linear-gradient(
            90deg,
            rgba(11, 19, 32, 0.97) 0%,
            rgba(11, 19, 32, 0.72) 55%,
            rgba(11, 19, 32, 0.45) 100%
        ),
        url("../assets/images/booking/booking-hero.jpg")
        center/cover no-repeat;
}

.booking-page-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            var(--bg-dark),
            transparent 38%
        );
}

.booking-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.booking-page-hero h1 {
    margin-top: 15px;

    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 1;
}

.booking-page-hero h1 span {
    display: block;
    color: var(--accent);
}

.booking-page-hero-content > p:last-child {
    max-width: 570px;
    margin-top: 25px;

    color: var(--text-muted);
    font-size: 1.05rem;
}


/* =========================
   BOOKING LAYOUT
========================= */

.booking-section {
    background: var(--bg-dark);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}

.booking-main {
    min-width: 0;
}

.booking-step {
    margin-bottom: 32px;
    padding: 38px;

    background: var(--bg-card);

    border: 1px solid var(--border);
}

.booking-step-heading {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 30px;
}

.booking-step-heading > span {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    border: 1px solid var(--accent);

    color: var(--accent);

    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.booking-step-heading p {
    color: var(--accent);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.16em;
}

.booking-step-heading h2 {
    margin-top: 3px;

    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}


/* =========================
   SERVICE SELECTION
========================= */

.booking-service-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.booking-service-card {
    width: 100%;

    padding: 24px;

    text-align: left;

    background: var(--bg-dark);

    border: 1px solid var(--border);

    color: var(--text-light);

    cursor: pointer;

    transition: var(--transition);
}

.booking-service-card:hover {
    transform: translateY(-4px);

    border-color: rgba(201, 123, 79, 0.55);
}

.booking-service-card.selected {
    border-color: var(--accent);

    box-shadow:
        inset 0 0 0 1px var(--accent),
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.booking-service-card strong {
    display: block;

    font-family: var(--font-heading);

    font-size: 1.35rem;
}

.booking-service-card > p {
    margin-top: 10px;

    color: var(--text-muted);

    font-size: 0.86rem;
}

.booking-service-card > div {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 22px;
}

.booking-service-card > div span {
    color: var(--accent);

    font-weight: 700;
}

.booking-service-card > div small {
    color: var(--text-muted);
}


/* =========================
   BARBER SELECTION
========================= */

.booking-barber-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.booking-barber-card {
    overflow: hidden;

    padding: 0 0 20px;

    background: var(--bg-dark);

    border: 1px solid var(--border);

    color: var(--text-light);

    cursor: pointer;

    text-align: left;

    transition: var(--transition);
}

.booking-barber-card:hover {
    transform: translateY(-4px);

    border-color: rgba(201, 123, 79, 0.55);
}

.booking-barber-card.selected {
    border-color: var(--accent);

    box-shadow:
        inset 0 0 0 1px var(--accent),
        0 12px 30px rgba(0, 0, 0, 0.18);
}

.booking-barber-image {
    width: 100%;

    aspect-ratio: 4 / 4.8;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.booking-barber-card strong,
.booking-barber-card > span {
    display: block;

    margin-left: 18px;
    margin-right: 18px;
}

.booking-barber-card strong {
    margin-top: 18px;

    font-family: var(--font-heading);

    font-size: 1.2rem;
}

.booking-barber-card > span {
    margin-top: 3px;

    color: var(--text-muted);

    font-size: 0.76rem;
}


/* =========================
   DATE
========================= */

.booking-date-box {
    max-width: 420px;
}

.booking-date-box label {
    display: block;

    margin-bottom: 10px;

    font-size: 0.8rem;
    font-weight: 600;
}

.booking-date-box input {
    width: 100%;

    padding: 15px 16px;

    color: var(--text-light);

    background: var(--bg-dark);

    border: 1px solid var(--border);

    outline: none;

    font-family: var(--font-body);

    color-scheme: dark;

    transition: var(--transition);
}

.booking-date-box input:focus {
    border-color: var(--accent);
}


/* =========================
   TIME SLOTS
========================= */

.booking-time-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 12px;
}

.time-slot {
    min-height: 48px;

    padding: 10px 8px;

    background: var(--bg-dark);

    border: 1px solid var(--border);

    color: var(--text-light);

    cursor: pointer;

    font-size: 0.78rem;
    font-weight: 600;

    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--accent);

    color: var(--accent);
}

.time-slot.selected {
    background: var(--accent);

    border-color: var(--accent);

    color: var(--bg-dark);
}


/* =========================
   BOOKING FORM
========================= */

.booking-form .form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.booking-form .form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;

    margin-bottom: 18px;
}

.booking-form .form-group label {
    font-size: 0.8rem;

    font-weight: 600;
}

.booking-form input,
.booking-form textarea {
    width: 100%;

    padding: 15px 16px;

    background: var(--bg-dark);

    border: 1px solid var(--border);

    outline: none;

    color: var(--text-light);

    font-family: var(--font-body);

    transition: var(--transition);
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--accent);
}

.booking-form textarea {
    resize: vertical;
}

.booking-submit {
    margin-top: 8px;
}


/* =========================
   BOOKING SUMMARY
========================= */

.booking-summary {
    position: sticky;
    top: 110px;

    padding: 32px;

    background: var(--bg-card);

    border: 1px solid var(--border);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18);
}

.booking-summary h2 {
    margin-top: 10px;

    font-family: var(--font-heading);

    font-size: 2.2rem;

    line-height: 1.1;
}

.booking-summary h2 span {
    color: var(--accent);
}

.summary-list {
    margin-top: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid var(--border);
}

.summary-row span {
    color: var(--text-muted);

    font-size: 0.82rem;
}

.summary-row strong {
    max-width: 180px;

    color: var(--text-light);

    font-size: 0.82rem;

    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 24px;
}

.summary-total span {
    color: var(--text-muted);
}

.summary-total strong {
    color: var(--accent);

    font-family: var(--font-heading);

    font-size: 2rem;
}

.booking-summary-note {
    margin-top: 22px;

    color: var(--text-muted);

    font-size: 0.74rem;

    line-height: 1.6;
}
/* =========================
   BOOKING CONFIRMATION MODAL
========================= */

.booking-modal {
    position: fixed;
    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(4, 9, 15, 0.82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.booking-modal-card {
    position: relative;

    z-index: 2;

    width: min(100%, 520px);

    padding: 48px 42px 40px;

    background: var(--bg-card);

    border: 1px solid rgba(201, 123, 79, 0.35);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);

    transform: translateY(25px) scale(0.97);

    transition: transform 0.35s ease;
}

.booking-modal.active .booking-modal-card {
    transform: translateY(0) scale(1);
}

.booking-modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: 1px solid var(--border);

    color: var(--text-muted);

    cursor: pointer;

    transition: var(--transition);
}

.booking-modal-close:hover {
    border-color: var(--accent);

    color: var(--accent);
}

.booking-modal-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border: 1px solid var(--accent);
    border-radius: 50%;

    color: var(--accent);

    font-size: 1.8rem;
    font-weight: 700;

    box-shadow:
        0 0 30px rgba(201, 123, 79, 0.12);
}

.booking-modal-card h2 {
    margin-top: 8px;

    font-family: var(--font-heading);

    font-size: clamp(2.4rem, 6vw, 3.4rem);

    line-height: 1;
}

.booking-modal-card h2 span {
    color: var(--accent);
}

.booking-modal-message {
    margin-top: 16px;

    color: var(--text-muted);

    line-height: 1.7;
}

.booking-modal-details {
    margin-top: 30px;

    border-top: 1px solid var(--border);
}

.booking-modal-row {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 14px 0;

    border-bottom: 1px solid var(--border);
}

.booking-modal-row span {
    color: var(--text-muted);

    font-size: 0.82rem;
}

.booking-modal-row strong {
    color: var(--text-light);

    font-size: 0.84rem;

    text-align: right;
}

.booking-modal-total strong {
    color: var(--accent);

    font-family: var(--font-heading);

    font-size: 1.4rem;
}

.booking-modal-done {
    width: 100%;

    margin-top: 28px;
}

body.modal-open {
    overflow: hidden;
}