/* =========================
   RESET + GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Montserrat", sans-serif;
    background: #f5f6f8;
    color: #10233f;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


section {
    scroll-margin-top: 90px;
}



/* =========================
   NAVIGATION
========================= */

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(8, 25, 48, 0.96);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    transition: 0.3s ease;
}


header.scrolled {
    background: rgba(5, 16, 32, 0.99);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}


.navbar {
    width: min(1200px, 90%);

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.logo {
    display: flex;

    flex-direction: column;

    font-family: "Bebas Neue", sans-serif;

    font-size: 32px;

    letter-spacing: 2px;

    color: white;

    line-height: 0.8;
}


.logo span {
    color: #d51c29;

    font-size: 13px;

    letter-spacing: 5px;

    margin-top: 9px;
}


.nav-links {
    display: flex;

    align-items: center;

    gap: 32px;
}


.nav-links a {
    color: white;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.25s;
}


.nav-links a:hover {
    color: #e11d2e;
}


.nav-button {
    background: #d51c29;

    color: white;

    padding: 13px 25px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    border-radius: 4px;

    transition: 0.25s;
}


.nav-button:hover {
    background: #ef3340;

    transform: translateY(-2px);
}



/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 760px;

    padding: 150px 8% 90px;

    display: flex;

    align-items: center;

    background:
        radial-gradient(circle at 70% 40%, rgba(31, 74, 120, 0.3), transparent 35%),
        linear-gradient(135deg, #07111f, #0b203d 55%, #07111f);

    overflow: hidden;
}


/* Background lines */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.025) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255,255,255,0.025) 50%,
            rgba(255,255,255,0.025) 75%,
            transparent 75%
        );

    background-size: 60px 60px;

    pointer-events: none;
}


.hero-content {
    position: relative;

    z-index: 2;

    width: 48%;
}


.eyebrow {
    color: #ef3340;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 22px;

    text-transform: uppercase;
}


.hero h1 {
    font-family: "Bebas Neue", sans-serif;

    color: white;

    font-size: clamp(70px, 9vw, 130px);

    line-height: 0.82;

    letter-spacing: 2px;

    max-width: 700px;
}


.hero h1 span {
    display: block;

    color: #ef3340;

    margin-top: 12px;
}


.hero-text {
    color: #c7d0dc;

    font-size: 16px;

    line-height: 1.8;

    max-width: 510px;

    margin-top: 30px;
}


.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;
}


.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 27px;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.25s;

    cursor: pointer;
}


.primary-btn {
    background: #d51c29;

    color: white;

    border: 2px solid #d51c29;
}


.primary-btn:hover {
    background: #ef3340;

    border-color: #ef3340;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(213, 28, 41, 0.3);
}


.secondary-btn {
    color: white;

    border: 2px solid rgba(255, 255, 255, 0.5);

    background: transparent;
}


.secondary-btn:hover {
    border-color: white;

    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-3px);
}



/* =========================
   HERO STATS
========================= */

.hero-stats {
    display: flex;

    gap: 45px;

    margin-top: 60px;
}


.hero-stats div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}


.hero-stats strong {
    color: white;

    font-family: "Bebas Neue", sans-serif;

    font-size: 30px;

    letter-spacing: 1px;
}


.hero-stats div:first-child strong {
    color: #ef3340;
}


.hero-stats span {
    color: #8f9cad;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}



/* =========================
   BARBER POLE
========================= */

.barber-pole {
    position: absolute;

    top: 50%;

    left: 56%;

    transform: translateY(-50%);

    width: 150px;

    height: 500px;

    z-index: 1;

    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.6));
}


.pole-top,
.pole-bottom {
    position: absolute;

    left: -15px;

    width: 180px;

    height: 38px;

    background:
        linear-gradient(
            to bottom,
            #f5f5f5,
            #777,
            #ffffff,
            #444
        );

    border-radius: 8px;

    z-index: 3;
}


.pole-top {
    top: 0;
}


.pole-bottom {
    bottom: 0;
}


.pole-body {
    position: absolute;

    top: 30px;

    left: 0;

    width: 150px;

    height: 440px;

    border-radius: 20px;

    border: 8px solid #222;

    overflow: hidden;

    background:
        repeating-linear-gradient(
            135deg,
            #d71920 0px,
            #d71920 35px,
            #ffffff 35px,
            #ffffff 70px,
            #1d4f91 70px,
            #1d4f91 105px,
            #ffffff 105px,
            #ffffff 140px
        );

    background-size: 200px 200px;

    animation: poleMove 4s linear infinite;
}


.pole-body::after {
    content: "";

    position: absolute;

    top: 0;

    left: 15px;

    width: 25px;

    height: 100%;

    background: rgba(255, 255, 255, 0.35);

    filter: blur(4px);
}


@keyframes poleMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 200px;
    }

}



/* =========================
   HERO REVIEWS
========================= */

.hero-reviews {
    position: absolute;

    right: 7%;

    top: 50%;

    transform: translateY(-50%);

    width: min(30%, 400px);

    z-index: 3;

    background: #f8f8f7;

    padding: 38px;

    border-radius: 8px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}


.reviews-label {
    color: #10233f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 25px;
}


.hero-review-container {
    position: relative;

    min-height: 180px;
}


.hero-review {
    position: absolute;

    inset: 0;

    opacity: 0;

    transform: translateX(20px);

    transition: 0.6s ease;

    pointer-events: none;
}


.hero-review.active {
    opacity: 1;

    transform: translateX(0);

    pointer-events: auto;
}


.stars {
    color: #d51c29;

    font-size: 21px;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.hero-review p {
    color: #26384f;

    font-family: "Playfair Display", serif;

    font-size: 20px;

    line-height: 1.55;
}


.review-name {
    display: block;

    margin-top: 25px;

    color: #6d7887;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.review-dots {
    display: flex;

    gap: 9px;

    margin-top: 15px;
}


.dot {
    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #c7cbd0;

    cursor: pointer;

    transition: 0.25s;
}


.dot.active {
    background: #d51c29;

    transform: scale(1.25);
}



/* =========================
   RED WHITE BLUE DIVIDER
========================= */

.stripe-divider {
    height: 13px;

    display: flex;
}


.blue-stripe {
    width: 33.33%;

    background: #123c72;
}


.white-stripe {
    width: 33.33%;

    background: white;
}


.red-stripe {
    width: 33.33%;

    background: #d51c29;
}



/* =========================
   SECTIONS
========================= */

.services,
.about,
.reviews-section,
.contact {
    padding: 110px 8%;
}


.section-header {
    text-align: center;

    max-width: 750px;

    margin: auto;
}


.section-label {
    color: #d51c29;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 18px;
}


.section-header h2,
.about-content h2,
.contact h2 {
    font-family: "Bebas Neue", sans-serif;

    color: #10233f;

    font-size: clamp(50px, 6vw, 80px);

    line-height: 0.95;

    letter-spacing: 1px;
}


.section-header h2 span,
.about-content h2 span,
.contact h2 span {
    display: block;

    color: #d51c29;
}



/* =========================
   SERVICES
========================= */

.services {
    background: #f5f6f8;
}


.service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    max-width: 1200px;

    margin: 70px auto 0;
}


.service-card {
    background: white;

    padding: 45px 28px;

    text-align: center;

    border-top: 5px solid #123c72;

    box-shadow: 0 10px 30px rgba(10, 30, 55, 0.08);

    transition: 0.3s;
}


.service-card:nth-child(even) {
    border-top-color: #d51c29;
}


.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(10, 30, 55, 0.15);
}


.service-icon {
    font-size: 45px;

    margin-bottom: 25px;
}


.service-card h3 {
    color: #10233f;

    font-family: "Playfair Display", serif;

    font-size: 22px;

    margin-bottom: 14px;
}


.service-card p {
    color: #687383;

    font-size: 13px;

    line-height: 1.7;
}



/* =========================
   ABOUT
========================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

    background: #10233f;

    color: white;
}


.about-content {
    max-width: 580px;
}


.about-content h2 {
    color: white;
}


.about-content h2 span {
    color: #ef3340;
}


.about-content > p:not(.section-label) {
    color: #c3ceda;

    line-height: 1.9;

    margin-top: 25px;

    font-size: 15px;
}


.about-content .btn {
    margin-top: 35px;
}


.about-decoration {
    min-height: 420px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.01)
        );

    border: 1px solid rgba(255,255,255,0.08);
}


.mini-pole {
    width: 130px;

    height: 330px;

    border-radius: 18px;

    border: 8px solid #1a1a1a;

    background:
        repeating-linear-gradient(
            135deg,
            #d71920 0px,
            #d71920 30px,
            #ffffff 30px,
            #ffffff 60px,
            #1d4f91 60px,
            #1d4f91 90px,
            #ffffff 90px,
            #ffffff 120px
        );

    background-size: 160px 160px;

    animation: poleMove 4s linear infinite;

    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}



/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
    background: white;
}


.big-review {
    max-width: 850px;

    margin: 65px auto 0;

    text-align: center;

    padding: 60px;

    background: #f4f6f8;

    border-left: 6px solid #d51c29;

    border-right: 6px solid #123c72;
}


.big-stars {
    color: #d51c29;

    font-size: 28px;

    letter-spacing: 6px;

    margin-bottom: 30px;
}


.big-review p {
    font-family: "Playfair Display", serif;

    color: #10233f;

    font-size: clamp(24px, 3vw, 38px);

    line-height: 1.4;

    font-style: italic;
}


.big-review strong {
    display: block;

    margin-top: 30px;

    color: #667283;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;
}



/* =========================
   CONTACT
========================= */

.contact {
    background:
        linear-gradient(
            135deg,
            #07111f,
            #102e56
        );

    text-align: center;
}


.contact h2 {
    color: white;
}


.contact h2 span {
    color: #ef3340;
}


.contact-content > p:not(.section-label) {
    color: #bdc8d5;

    margin-top: 25px;

    font-size: 15px;
}


.contact-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;
}


.address {
    margin-top: 55px;

    padding-top: 35px;

    border-top: 1px solid rgba(255,255,255,0.15);

    color: white;
}


.address strong {
    font-family: "Bebas Neue", sans-serif;

    font-size: 28px;

    letter-spacing: 2px;
}


.address p {
    color: #bdc8d5;

    line-height: 1.8;

    margin-top: 12px;
}



/* =========================
   FOOTER
========================= */

footer {
    position: relative;

    background: #07111f;

    padding: 65px 8% 80px;

    text-align: center;

    color: white;

    overflow: hidden;
}


.footer-stripes {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 10px;

    background:
        linear-gradient(
            to right,
            #123c72 0%,
            #123c72 33.33%,
            white 33.33%,
            white 66.66%,
            #d51c29 66.66%
        );
}


.footer-logo {
    font-family: "Bebas Neue", sans-serif;

    font-size: 50px;

    letter-spacing: 3px;
}


.footer-logo span {
    color: #d51c29;

    display: block;

    font-size: 19px;

    letter-spacing: 7px;

    margin-top: 5px;
}


footer > p {
    color: #9eabba;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-top: 22px;
}


.copyright {
    margin-top: 30px;

    font-size: 10px;

    color: #657384;
}



/* =========================
   DEMO NOTICE
========================= */

.demo-notice {
    position: fixed;

    bottom: 18px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 2000;

    background: rgba(7, 17, 31, 0.9);

    color: #cbd5df;

    padding: 9px 16px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 20px;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    pointer-events: none;
}



/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}



/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 18px;
    }


    .hero {
        min-height: auto;

        padding-bottom: 100px;
    }


    .hero-content {
        width: 55%;
    }


    .barber-pole {
        left: 55%;

        opacity: 0.65;

        transform: translateY(-50%) scale(0.8);
    }


    .hero-reviews {
        position: relative;

        right: auto;

        top: auto;

        transform: none;

        width: min(700px, 100%);

        margin: 70px auto 0;
    }


    .hero {
        display: block;
    }


    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}



/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    header {
        position: relative;
    }


    .navbar {
        min-height: 75px;
    }


    .nav-links {
        display: none;
    }


    .logo {
        font-size: 28px;
    }


    .nav-button {
        padding: 11px 16px;

        font-size: 10px;
    }


    .hero {
        padding:
            90px 7%
            70px;
    }


    .hero-content {
        width: 100%;
    }


    .hero h1 {
        font-size: 75px;
    }


    .hero-text {
        font-size: 14px;
    }


    .barber-pole {
        position: absolute;

        left: auto;

        right: -45px;

        top: 200px;

        transform: scale(0.45);

        opacity: 0.35;
    }


    .hero-stats {
        gap: 22px;

        margin-top: 45px;

        flex-wrap: wrap;
    }


    .hero-stats strong {
        font-size: 25px;
    }


    .hero-reviews {
        padding: 28px;

        margin-top: 50px;
    }


    .hero-review-container {
        min-height: 210px;
    }


    .hero-review p {
        font-size: 18px;
    }


    .services,
    .about,
    .reviews-section,
    .contact {
        padding: 80px 7%;
    }


    .service-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }


    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-decoration {
        min-height: 280px;

        order: 2;
    }


    .about-content {
        order: 1;
    }


    .mini-pole {
        transform: scale(0.75);
    }


    .big-review {
        padding: 35px 25px;
    }


    .contact-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .footer-logo {
        font-size: 42px;
    }

}