/* =========================================================
   SUKHAR MEDIA™
   GLOBAL STYLE
========================================================= */

:root {
    --red: #e31e24;
    --red-dark: #b91419;

    --black: #090909;
    --dark: #101010;
    --dark-2: #151515;

    --white: #ffffff;
    --off-white: #f7f7f5;

    --gray: #777777;
    --light-gray: #e7e7e4;

    --container: 1240px;
    --radius: 22px;

    --transition: 0.35s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;

    /* Fixed header space */
    padding-top: 88px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================================================
   CONTAINERS
========================================================= */

.header-container,
.section-container,
.hero-container,
.cta-container,
.footer-container {
    width: min(
        calc(100% - 50px),
        var(--container)
    );

    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 88px;

    z-index: 1000;

    background: #ffffff;

    padding: 18px 0;

    box-shadow:
        0 4px 25px rgba(0,0,0,0.04);

    transition:
        height var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    height: 76px;

    background: #ffffff;

    box-shadow:
        0 8px 35px rgba(0,0,0,0.08);

    padding: 12px 0;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    display: flex;

    align-items: center;

    width: 205px;

    flex-shrink: 0;
}

.brand-logo {
    width: 100%;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 30px;

    flex: 1;
}

.nav-link {
    position: relative;

    font-size: 15px;

    font-weight: 600;

    color: #202020;

    padding: 8px 0;

    white-space: nowrap;

    transition:
        color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--red);

    transition:
        width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-button {
    background: var(--red);
    color: #ffffff !important;

    border: 1px solid var(--red);
    border-radius: 999px;

    transition: all 0.35s ease;
}

/* Default Arrow → BLACK */
.header-button span {
    color: #111111 !important;
    transition: all 0.35s ease;
}

/* Hover → BLACK BUTTON */
.header-button:hover {
    background: #111111;
    border-color: #111111;

    color: #ffffff !important;

    transform: translateY(-2px);
}

/* Hover Arrow → RED */
.header-button:hover span {
    color: var(--red) !important;
}

.header-button {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: #fff !important;
}

.header-button:hover {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}

.header-button:hover span {
    color: var(--red) !important;
}

.header-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: var(--black);

    color: var(--white);

    padding: 14px 22px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        transform var(--transition),
        background var(--transition);
}

.header-button span {
    color: var(--red);

    font-size: 18px;
}

.header-button:hover {
    background: var(--red);

    transform: translateY(-2px);
}

.header-button:hover span {
    color: white;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-menu-button {
    display: none;

    border: 0;

    background: var(--black);

    width: 46px;

    height: 46px;

    border-radius: 50%;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 18px;

    height: 2px;

    background: white;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;

    top: 78px;

    left: 16px;

    right: 16px;

    background: white;

    border-radius: 18px;

    padding: 20px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.15);

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-15px);

    transition:
        all var(--transition);
}

.mobile-menu.open {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}

.mobile-menu > a {
    display: block;

    padding: 13px 8px;

    font-size: 15px;

    font-weight: 600;

    border-bottom:
        1px solid #eeeeee;
}

.mobile-menu-button-link {
    margin-top: 12px;

    background: var(--red);

    color: white !important;

    border-radius: 10px;

    text-align: center;
}


/* =========================================================
   HOME HERO
========================================================= */
/* =====================================================
   SUKHAR MEDIA
   PREMIUM HERO SECTION
===================================================== */

.sm-hero,
.sm-hero * {
    box-sizing: border-box;
}

.sm-hero {
    --sm-orange: #f4511e;
    --sm-orange-light: #ff6a35;
    --sm-black: #080808;
    --sm-white: #ffffff;
    --sm-grey: #a6a6a6;

    position: relative;

    width: 100%;
    min-height: 900px;

    overflow: hidden;

    background: #080808;

    color: #ffffff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =====================================================
   BACKGROUND
===================================================== */

.sm-hero-bg {
    position: absolute;

    inset: 0;

    background-image:
        url("assets/home/hero-bg.jpg");

    background-size: cover;

    background-position: center;

    transform: scale(1.04);

    filter:
        saturate(.75)
        contrast(1.05);

    animation:
        sm-bg-zoom 18s ease-in-out infinite alternate;

    z-index: 0;
}


.sm-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 72% 48%,
            rgba(244,81,30,.20),
            transparent 28%
        ),

        linear-gradient(
            90deg,
            rgba(5,5,5,.98) 0%,
            rgba(5,5,5,.91) 38%,
            rgba(5,5,5,.67) 68%,
            rgba(5,5,5,.88) 100%
        );

    z-index: 1;
}


@keyframes sm-bg-zoom {

    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }

}


/* =====================================================
   CONTAINER
===================================================== */

.sm-hero-container {
    position: relative;

    z-index: 5;

    width:
        min(
            1400px,
            calc(100% - 80px)
        );

    min-height: 780px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, .90fr)
        minmax(500px, 1.10fr);

    align-items: center;

    gap: 30px;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.sm-hero-content {
    position: relative;

    z-index: 10;

    padding-top: 20px;
}


.sm-hero-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    padding:
        9px
        14px;

    border:
        1px solid rgba(255,255,255,.16);

    border-radius: 50px;

    background:
        rgba(255,255,255,.04);

    color: #d5d5d5;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.sm-live-dot {
    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--sm-orange);

    box-shadow:
        0 0 0 5px
        rgba(244,81,30,.12);

    animation:
        sm-pulse 1.8s infinite;
}


@keyframes sm-pulse {

    0%,
    100% {
        opacity: 1;

        transform: scale(1);
    }

    50% {
        opacity: .55;

        transform: scale(.75);
    }

}


.sm-hero-content h1 {
    max-width: 760px;

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            55px,
            6vw,
            92px
        );

    line-height: .94;

    letter-spacing: -4px;

    font-weight: 800;
}


.sm-hero-content h1 span {
    position: relative;

    color: var(--sm-orange);

    font-style: italic;
}


.sm-hero-content h1 span::after {
    content: "";

    position: absolute;

    left: 3px;

    right: 0;

    bottom: -7px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--sm-orange),
            transparent
        );
}


.sm-hero-description {
    max-width: 650px;

    margin:
        32px 0 0;

    color: #bdbdbd;

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   BUTTONS
===================================================== */

.sm-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 13px;

    margin-top: 34px;
}


.sm-primary-btn,
.sm-secondary-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 56px;

    padding:
        0 25px;

    border-radius: 50px;

    text-decoration: none !important;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        border .3s ease;
}


.sm-primary-btn {
    color: #ffffff !important;

    background:
        var(--sm-orange);

    box-shadow:
        0 12px 35px
        rgba(244,81,30,.25);
}


.sm-primary-btn:hover {
    color: #ffffff !important;

    background:
        var(--sm-orange-light);

    transform:
        translateY(-3px);
}


.sm-secondary-btn {
    color: #ffffff !important;

    border:
        1px solid
        rgba(255,255,255,.25);

    background:
        rgba(255,255,255,.04);
}


.sm-secondary-btn:hover {
    color: #ffffff !important;

    border-color:
        rgba(255,255,255,.6);

    background:
        rgba(255,255,255,.08);

    transform:
        translateY(-3px);
}


/* =====================================================
   TRUST
===================================================== */

.sm-hero-trust {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 48px;
}


.sm-trust-circles {
    display: flex;

    padding-left: 5px;
}


.sm-trust-circles span {
    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-left: -7px;

    border:
        2px solid
        #111111;

    border-radius: 50%;

    color: #ffffff;

    background:
        #292929;

    font-size: 9px;

    font-weight: 800;
}


.sm-trust-circles span:nth-child(2) {
    background: #3c3c3c;
}

.sm-trust-circles span:nth-child(3) {
    background: var(--sm-orange);
}

.sm-trust-circles span:nth-child(4) {
    background: #ffffff;

    color: #111111;
}


.sm-trust-text {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.sm-trust-text strong {
    font-size: 13px;

    color: #ffffff;
}


.sm-trust-text small {
    color: #858585;

    font-size: 11px;
}


/* =====================================================
   MEDIA STAGE
===================================================== */

.sm-media-stage {
    position: relative;

    width: 100%;

    height: 720px;

    perspective: 1200px;
}


/* =====================================================
   BADGE
===================================================== */

.sm-media-badge {
    position: absolute;

    top: 70px;

    right: 70px;

    z-index: 15;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        10px 15px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 50px;

    color: #ffffff;

    background:
        rgba(10,10,10,.65);

    backdrop-filter:
        blur(10px);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.sm-badge-dot {
    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--sm-orange);

    box-shadow:
        0 0 10px
        var(--sm-orange);
}


/* =====================================================
   MAIN CARD
===================================================== */

.sm-main-media-card {
    position: absolute;

    top: 95px;

    left: 50%;

    z-index: 8;

    width: 390px;

    height: 500px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 20px;

    background: #171717;

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.65);

    transform:
        translateX(-50%)
        rotate(-3deg);

    transition:
        transform .7s ease;
}


.sm-main-media-card:hover {
    transform:
        translateX(-50%)
        rotate(0deg)
        translateY(-8px);
}


.sm-main-media-card img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;
}


.sm-main-media-card:hover img {
    transform:
        scale(1.06);
}


.sm-media-card-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0,0,0,.92)
        );
}


.sm-media-card-overlay span {
    display: inline-block;

    width: max-content;

    margin-bottom: 12px;

    padding:
        6px 10px;

    color: #ffffff;

    background:
        var(--sm-orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.sm-media-card-overlay strong {
    color: #ffffff;

    font-size: 28px;

    line-height: 1.1;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.sm-floating-card {
    position: absolute;

    z-index: 10;

    width: 155px;

    height: 205px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.2);

    border-radius: 13px;

    background: #1a1a1a;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.55);

    transition:
        transform .4s ease;
}


.sm-floating-card img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


.sm-floating-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 55%,
            rgba(0,0,0,.8)
        );
}


.sm-floating-card span {
    position: absolute;

    left: 12px;

    bottom: 12px;

    z-index: 3;

    color: #ffffff;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* CARD POSITIONS */

.sm-card-one {
    top: 75px;

    left: 8%;

    transform:
        rotate(-9deg);
}


.sm-card-two {
    bottom: 100px;

    left: 3%;

    transform:
        rotate(7deg);
}


.sm-card-three {
    top: 115px;

    right: 1%;

    transform:
        rotate(8deg);
}


.sm-card-four {
    bottom: 55px;

    right: 9%;

    transform:
        rotate(-7deg);
}


.sm-floating-card:hover {
    z-index: 20;

    transform:
        rotate(0deg)
        translateY(-10px)
        scale(1.05);
}


/* =====================================================
   ORBITS
===================================================== */

.sm-orbit {
    position: absolute;

    left: 50%;

    top: 48%;

    border:
        1px solid
        rgba(244,81,30,.18);

    border-radius: 50%;

    transform:
        translate(-50%,-50%)
        rotate(-12deg);

    pointer-events: none;
}


.sm-orbit-one {
    width: 650px;

    height: 430px;
}


.sm-orbit-two {
    width: 500px;

    height: 320px;

    border-color:
        rgba(255,255,255,.07);

    transform:
        translate(-50%,-50%)
        rotate(18deg);
}


/* =====================================================
   TICKER
===================================================== */

.sm-media-ticker {
    position: absolute;

    left: 50%;

    bottom: 8px;

    z-index: 20;

    width: 500px;

    overflow: hidden;

    transform:
        translateX(-50%)
        rotate(-2deg);

    border-top:
        1px solid
        rgba(255,255,255,.12);

    border-bottom:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(8,8,8,.65);

    backdrop-filter:
        blur(8px);
}


.sm-ticker-track {
    display: flex;

    align-items: center;

    width: max-content;

    gap: 25px;

    padding:
        13px 0;

    animation:
        sm-ticker 18s linear infinite;
}


.sm-ticker-track span {
    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    white-space: nowrap;
}


.sm-ticker-track b {
    color: var(--sm-orange);

    font-size: 12px;
}


@keyframes sm-ticker {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-35%);
    }

}


/* =====================================================
   BOTTOM PROOF
===================================================== */

.sm-hero-proof {
    position: absolute;

    left: 50%;

    bottom: 0;

    z-index: 10;

    width:
        min(
            1200px,
            calc(100% - 80px)
        );

    min-height: 95px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    transform:
        translateX(-50%);

    border-top:
        1px solid
        rgba(255,255,255,.12);
}


.sm-proof-item {
    display: flex;

    align-items: center;

    gap: 10px;
}


.sm-proof-item strong {
    color: var(--sm-orange);

    font-size: 22px;
}


.sm-proof-item span {
    color: #8f8f8f;

    font-size: 11px;

    letter-spacing: .5px;
}


.sm-proof-line {
    width: 1px;

    height: 25px;

    background:
        rgba(255,255,255,.15);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1100px) {

    .sm-hero {
        min-height: auto;
    }

    .sm-hero-container {

        width:
            min(
                100% - 40px,
                850px
            );

        min-height: auto;

        grid-template-columns: 1fr;

        padding:
            100px 0 170px;
    }


    .sm-hero-content {
        text-align: center;
    }


    .sm-hero-label {
        margin-left: auto;

        margin-right: auto;
    }


    .sm-hero-content h1 {
        margin-left: auto;

        margin-right: auto;
    }


    .sm-hero-description {
        margin-left: auto;

        margin-right: auto;
    }


    .sm-hero-buttons {
        justify-content: center;
    }


    .sm-hero-trust {
        justify-content: center;
    }


    .sm-media-stage {
        height: 650px;
    }

}


@media (max-width: 650px) {

    .sm-hero-container {

        width:
            calc(100% - 28px);

        padding:
            80px 0 140px;
    }


    .sm-hero-content h1 {

        font-size: 52px;

        letter-spacing: -2px;
    }


    .sm-hero-description {
        font-size: 15px;

        line-height: 1.7;
    }


    .sm-hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .sm-primary-btn,
    .sm-secondary-btn {
        width: 100%;
    }


    .sm-hero-trust {
        margin-top: 35px;
    }


    .sm-media-stage {
        height: 500px;
    }


    .sm-main-media-card {

        top: 55px;

        width: 230px;

        height: 330px;
    }


    .sm-floating-card {

        width: 95px;

        height: 130px;
    }


    .sm-card-one {
        left: 0;

        top: 55px;
    }


    .sm-card-two {
        left: 2%;

        bottom: 60px;
    }


    .sm-card-three {
        right: 0;

        top: 65px;
    }


    .sm-card-four {
        right: 3%;

        bottom: 40px;
    }


    .sm-media-badge {
        top: 15px;

        right: 20px;

        font-size: 7px;
    }


    .sm-orbit-one {
        width: 340px;

        height: 250px;
    }


    .sm-orbit-two {
        width: 270px;

        height: 200px;
    }


    .sm-media-ticker {
        width: 90%;

        bottom: 0;
    }


    .sm-hero-proof {

        width:
            calc(100% - 28px);

        gap: 15px;

        min-height: 80px;

        overflow-x: auto;

        justify-content: flex-start;

        padding:
            0 5px;

        scrollbar-width: none;
    }


    .sm-hero-proof::-webkit-scrollbar {
        display: none;
    }


    .sm-proof-line {
        flex-shrink: 0;
    }


    .sm-proof-item {
        flex-shrink: 0;
    }

}

/* =========================================================
   HOME HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 540px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,0.20),
            transparent 68%
        );
}

.main-card {
    position: relative;

    width: 430px;

    height: 500px;

    border-radius: 30px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #171717,
            #080808
        );

    box-shadow:
        0 35px 80px
        rgba(0,0,0,0.20);

    padding: 28px;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transform:
        rotate(2deg);
}

.main-card::before {
    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -130px;

    top: -120px;

    border-radius: 50%;

    border:
        70px solid
        rgba(227,30,36,0.9);
}

.card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;
}

.card-small {
    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}

.card-status {
    font-size: 9px;

    color: #ff4d52;

    letter-spacing: 1px;
}

.card-center {
    position: relative;

    z-index: 2;

    text-align: center;
}

.flame-logo {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 9px;

    margin-bottom: 35px;
}

.flame-logo span {
    width: 22px;

    height: 90px;

    background: var(--red);

    border-radius:
        60% 10% 60% 10%;

    transform:
        skew(-12deg)
        rotate(18deg);
}

.flame-logo span:nth-child(2) {
    height: 115px;
}

.card-center h3 {
    font-size: 42px;

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;
}

.card-center h3 em {
    color: var(--red);

    font-style: normal;
}

.card-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,0.15);

    padding-top: 18px;

    font-size: 8px;

    letter-spacing: 1.5px;

    color: #aaa;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    background: white;

    border:
        1px solid #eeeeee;

    border-radius: 15px;

    box-shadow:
        0 20px 45px
        rgba(0,0,0,0.12);

    z-index: 5;
}

.floating-one {
    left: -5px;

    bottom: 55px;

    padding: 14px 18px;

    display: flex;

    align-items: center;

    gap: 12px;
}

.floating-icon {
    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(227,30,36,0.1);

    color: var(--red);

    font-weight: 800;
}

.floating-card strong {
    display: block;

    font-size: 12px;
}

.floating-card small {
    display: block;

    font-size: 9px;

    color: #888;
}

.floating-two {
    right: -15px;

    top: 80px;

    width: 100px;

    height: 100px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;
}

.floating-two strong {
    font-size: 26px;

    color: var(--red);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 110px 0;

    background: var(--black);

    color: white;
}

.stats-intro {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 60px;
}

.eyebrow {
    display: block;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: var(--red);

    margin-bottom: 15px;
}

.stats-intro h2 {
    max-width: 550px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            34px,
            4vw,
            55px
        );

    line-height: 1.05;

    letter-spacing: -2px;
}

.stats-intro h2 span {
    color: var(--red);
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        rgba(255,255,255,0.15);
}

.stat-box {
    padding: 35px 25px;

    border-right:
        1px solid
        rgba(255,255,255,0.15);
}

.stat-box:last-child {
    border-right: 0;
}

.stat-box strong {
    display: block;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 46px;

    line-height: 1;

    color: white;

    margin-bottom: 15px;
}

.stat-box span {
    display: block;

    max-width: 130px;

    color: #999;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   HOME SERVICES
========================================================= */

.services-section {
    padding: 120px 0;

    background: var(--off-white);
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            38px,
            5vw,
            62px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.section-heading h2 span {
    color: var(--red);
}

.section-heading > p {
    max-width: 400px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 350px;

    padding: 30px;

    background: white;

    border:
        1px solid #e8e8e8;

    border-radius: 20px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,0.09);
}

.service-card.featured {
    background: var(--black);

    color: white;

    border-color:
        var(--black);
}

.service-number {
    position: absolute;

    top: 25px;

    right: 25px;

    font-size: 11px;

    font-weight: 700;

    color: #aaa;
}

.featured .service-number {
    color: #666;
}

.service-icon {
    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(227,30,36,0.09);

    color: var(--red);

    font-size: 20px;

    margin-bottom: 55px;
}

.service-card h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 23px;

    margin-bottom: 14px;
}

.service-card p {
    color: #777;

    font-size: 13px;

    line-height: 1.8;

    max-width: 300px;

    margin-bottom: 25px;
}

.featured p {
    color: #999;
}

.service-card a {
    display: inline-flex;

    gap: 8px;

    align-items: center;

    font-size: 12px;

    font-weight: 800;

    color: var(--red);
}

.service-card a span {
    font-size: 16px;
}


/* =========================================================
   CTA
========================================================= */

.home-cta {
    position: relative;

    overflow: hidden;

    padding: 130px 0;

    background:
        linear-gradient(
            135deg,
            #d71920,
            #f02b32
        );

    color: white;

    text-align: center;
}

.cta-container {
    display: flex;

    align-items: center;

    flex-direction: column;
}

.home-cta .eyebrow {
    color: white;

    opacity: 0.75;
}

.home-cta h2 {
    max-width: 850px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            42px,
            6vw,
            75px
        );

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.home-cta h2 span {
    color: transparent;

    -webkit-text-stroke:
        1px white;
}

.home-cta p {
    max-width: 550px;

    color:
        rgba(255,255,255,0.8);

    font-size: 15px;

    margin-bottom: 30px;
}

.light-button {
    background: white;

    color: var(--black);
}

.light-button:hover {
    background: var(--black);

    color: white;

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.2);
}


/* =========================================================
   FOOTER
========================================================= */
/* =========================================================
   SUKHAR MEDIA FOOTER
========================================================= */

.sukhar-footer {

    position: relative;

    background: #0d1217;

    color: #fff;

    overflow: hidden;

}


/* TOP RED LINE */

.footer-top-line {

    width: 100%;

    height: 5px;

    background: #e31e24;

}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-container {

    width: min(
        calc(100% - 50px),
        1240px
    );

    margin: 0 auto;

    padding: 75px 0 70px;

    display: grid;

    grid-template-columns:
        1.35fr
        .9fr
        1fr
        1.15fr;

    gap: 70px;

}


/* =========================================
   BRAND
========================================= */

.footer-brand {

    max-width: 390px;

}


/* LOGO */

.footer-logo-link {

    display: inline-block;

    margin-bottom: 25px;

}


.footer-logo {

    width: 175px;

    height: auto;

    display: block;

}


/* DESCRIPTION */

.footer-description {

    margin: 0;

    color: #a9afb5;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================
   SOCIAL MEDIA
========================================= */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

}


.social-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #20272e;

    color: #fff;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease;

}


.social-icon span {

    font-size: 17px;

    font-weight: 700;

}


.social-icon:hover {

    background: #e31e24;

    color: #fff;

    transform:
        translateY(-4px);

}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer-column h3 {

    margin: 0;

    color: #fff;

    font-family:
        "Manrope",
        "Inter",
        sans-serif;

    font-size: 21px;

    font-weight: 800;

}


/* RED UNDERLINE */

.footer-title-line {

    width: 45px;

    height: 4px;

    margin-top: 13px;

    margin-bottom: 25px;

    border-radius: 10px;

    background: #e31e24;

}


/* =========================================
   LINKS
========================================= */

.footer-links {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-links li {

    margin-bottom: 17px;

}


.footer-links a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #b9bec3;

    font-size: 14px;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;

}


.footer-links a span {

    color: #e31e24;

    font-size: 21px;

    line-height: 1;

}


.footer-links a:hover {

    color: #fff;

    transform:
        translateX(5px);

}


/* =========================================
   CONTACT
========================================= */

.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 22px;

}


.contact-icon {

    width: 22px;

    min-width: 22px;

    color: #e31e24;

    font-size: 17px;

    text-align: center;

    padding-top: 2px;

}


.contact-item span {

    display: block;

    margin-bottom: 5px;

    color: #777f86;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.contact-item p {

    max-width: 260px;

    margin: 0;

    color: #b9bec3;

    font-size: 13px;

    line-height: 1.7;

}


.contact-item a {

    display: inline-block;

    color: #b9bec3;

    font-size: 13px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .25s ease;

}


.contact-item a:hover {

    color: #e31e24;

}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {

    border-top:
        1px solid #252b30;

    background: #0b1014;

}


.footer-bottom-container {

    width: min(
        calc(100% - 50px),
        1240px
    );

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-bottom p {

    margin: 0;

    color: #92999f;

    font-size: 12px;

}


.footer-legal {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 10px;

    color: #92999f;

    font-size: 11px;

}


.footer-legal a {

    color: #92999f;

    text-decoration: none;

    transition:
        color .25s ease;

}


.footer-legal a:hover {

    color: #fff;

}


.footer-legal strong {

    color: #bfc4c8;

    font-size: 10px;

    font-weight: 600;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .footer-container {

        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap: 55px;

    }


    .footer-brand {

        grid-column:
            1 / -1;

        max-width: 600px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .footer-container {

        width:
            calc(100% - 34px);

        padding:
            60px 0 45px;

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .footer-brand {

        grid-column:
            auto;

    }


    .footer-logo {

        width: 160px;

    }


    .footer-description {

        font-size: 13px;

    }


    .footer-socials {

        margin-top: 23px;

    }


    .social-icon {

        width: 43px;

        height: 43px;

    }


    .footer-bottom-container {

        width:
            calc(100% - 34px);

        padding:
            22px 0;

        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .footer-legal {

        justify-content:
            flex-start;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .footer-socials {

        gap: 8px;

    }


    .social-icon {

        width: 40px;

        height: 40px;

    }


    .footer-legal {

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

    }


    .footer-legal > span {

        display: none;

    }

}


/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-page-hero {
    position: relative;

    min-height: 650px;

    padding:
        85px 0
        100px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #090909 0%,
            #111111 65%,
            #1b090a 100%
        );

    color: white;
}

.about-page-hero-bg {
    position: absolute;

    width: 650px;

    height: 650px;

    right: -180px;

    top: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,0.32),
            transparent 67%
        );
}

.about-page-hero::after {
    content: "";

    position: absolute;

    width: 500px;

    height: 2px;

    right: -100px;

    bottom: 110px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--red)
        );

    transform:
        rotate(-35deg);

    opacity: 0.6;
}

.about-breadcrumb {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 50px;

    font-size: 11px;

    color: #777;
}

.about-breadcrumb a {
    color: #aaa;

    transition:
        color var(--transition);
}

.about-breadcrumb a:hover {
    color: var(--red);
}

.about-breadcrumb strong {
    color: white;

    font-weight: 600;
}

.about-hero-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}

.about-hero-content .eyebrow {
    color: var(--red);
}

.about-hero-content h1 {
    max-width: 950px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            48px,
            7vw,
            88px
        );

    line-height: 0.98;

    letter-spacing: -4px;

    margin-bottom: 30px;
}

.about-hero-content h1 span {
    color: var(--red);
}

.about-hero-content p {
    max-width: 620px;

    color: #999;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro-section {
    padding: 125px 0;

    background: white;
}

.about-intro-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 100px;

    align-items: start;
}

.about-intro-title h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.about-intro-title h2 span {
    color: var(--red);
}

.about-intro-text {
    max-width: 650px;
}

.about-intro-text p {
    color: #777;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 20px;
}

.about-intro-text .large-text {
    color: #222;

    font-size: 22px;

    line-height: 1.7;

    margin-bottom: 28px;
}


/* =========================================================
   APPROACH
========================================================= */

.approach-section {
    padding: 120px 0;

    background:
        var(--off-white);
}

.approach-heading {
    margin-bottom: 55px;
}

.approach-heading h2 {
    max-width: 700px;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.approach-heading h2 span {
    color: var(--red);
}

.approach-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.approach-card {
    position: relative;

    min-height: 360px;

    padding: 32px;

    background: white;

    border:
        1px solid #e8e8e8;

    border-radius: 22px;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.approach-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 50px
        rgba(0,0,0,0.08);
}

.approach-card.dark {
    background: var(--black);

    color: white;

    border-color:
        var(--black);
}

.approach-number {
    position: absolute;

    top: 25px;

    right: 25px;

    color: #aaa;

    font-size: 11px;

    font-weight: 700;
}

.approach-card.dark
.approach-number {
    color: #666;
}

.approach-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    margin-bottom: 70px;

    background:
        rgba(227,30,36,0.09);

    color: var(--red);

    font-size: 20px;
}

.approach-card h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 26px;

    margin-bottom: 15px;
}

.approach-card p {
    max-width: 300px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}

.approach-card.dark p {
    color: #888;
}


/* =========================================================
   ABOUT DIFFERENCE
========================================================= */

.difference-section {
    padding: 130px 0;

    background: white;
}

.difference-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.difference-visual {
    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.difference-card {
    position: relative;

    width: 420px;

    height: 500px;

    border-radius: 28px;

    overflow: hidden;

    padding: 28px;

    background:
        linear-gradient(
            145deg,
            #181818,
            #050505
        );

    color: white;

    box-shadow:
        0 35px 80px
        rgba(0,0,0,0.18);

    transform:
        rotate(3deg);
}

.difference-card::before {
    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -190px;

    top: -160px;

    border-radius: 50%;

    border:
        85px solid
        rgba(227,30,36,0.9);
}

.difference-top {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    color: #777;

    letter-spacing: 1.5px;
}

.difference-center {
    position: absolute;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    z-index: 2;

    text-align: center;
}

.difference-flames {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-bottom: 30px;
}

.difference-flames span {
    width: 20px;

    height: 90px;

    background:
        var(--red);

    border-radius:
        60% 10% 60% 10%;

    transform:
        rotate(18deg);
}

.difference-flames span:nth-child(2) {
    height: 115px;
}

.difference-center h3 {
    font-family:
        "Manrope",
        sans-serif;

    font-size: 40px;

    line-height: 0.95;

    letter-spacing: -2px;
}

.difference-center h3 em {
    color: var(--red);

    font-style: normal;
}

.difference-bottom {
    position: absolute;

    left: 28px;

    right: 28px;

    bottom: 25px;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    color: #777;

    border-top:
        1px solid
        rgba(255,255,255,0.15);

    padding-top: 15px;

    font-size: 8px;

    letter-spacing: 1.5px;
}

.difference-bottom span {
    color: var(--red);
}

.difference-content h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 45px;
}

.difference-content h2 span {
    color: var(--red);
}

.difference-list {
    display: flex;

    flex-direction: column;

    border-top:
        1px solid #e8e8e8;
}

.difference-item {
    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 20px;

    padding: 24px 0;

    border-bottom:
        1px solid #e8e8e8;
}

.difference-item > span {
    color: var(--red);

    font-size: 11px;

    font-weight: 800;
}

.difference-item strong {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
}

.difference-item p {
    max-width: 500px;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   ABOUT SERVICES
========================================================= */

.about-services-section {
    padding: 110px 0;

    background:
        var(--off-white);
}

.about-services-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}

.about-services-heading h2 {
    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            62px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.about-services-heading h2 span {
    color: var(--red);
}

.about-mini-services {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid #ddd;

    border-left:
        1px solid #ddd;
}

.about-mini-services > div {
    min-height: 110px;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px;

    border-right:
        1px solid #ddd;

    border-bottom:
        1px solid #ddd;

    background: white;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 17px;

    font-weight: 700;

    transition:
        all var(--transition);
}

.about-mini-services > div:hover {
    background:
        var(--black);

    color: white;
}

.about-mini-services span {
    color: var(--red);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    position: relative;

    overflow: hidden;
}

.about-cta::before {
    content: "SM";

    position: absolute;

    right: 3%;

    bottom: -100px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 300px;

    font-weight: 800;

    color:
        rgba(0,0,0,0.08);

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 17px;
    }

    .nav-link {
        font-size: 12px;
    }

    .brand {
        width: 170px;
    }

    .header-button {
        padding:
            11px 15px;

        font-size: 11px;
    }

    .hero-container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .main-card {
        width: 360px;

        height: 450px;
    }

    .about-intro-grid,
    .difference-grid {
        gap: 60px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        min-height: 300px;
    }

    .about-mini-services {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 800px) {

    body {
        padding-top: 72px;
    }

    .header-container,
    .section-container,
    .hero-container,
    .cta-container,
    .footer-container {
        width:
            min(
                calc(100% - 32px),
                var(--container)
            );
    }

    .site-header {
        height: 72px;

        padding: 12px 0;
    }

    .site-header.scrolled {
        height: 68px;

        padding: 10px 0;
    }

    .brand {
        width: 170px;
    }

    .main-nav,
    .header-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }


    /* HOME */

    .hero {
        min-height: auto;

        padding:
            75px 0
            70px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero h1 {
        font-size:
            clamp(
                44px,
                13vw,
                65px
            );

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .main-card {
        width: 330px;

        height: 410px;
    }

    .floating-one {
        left: 0;
    }

    .floating-two {
        right: 0;
    }


    /* STATS */

    .stats-section,
    .services-section {
        padding:
            80px 0;
    }

    .stats-intro,
    .section-heading {
        display: block;
    }

    .stats-intro h2 {
        margin-bottom: 25px;
    }

    .section-heading > p {
        margin-top: 20px;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: 0;
    }

    .stat-box:nth-child(3),
    .stat-box:nth-child(4) {
        border-top:
            1px solid
            rgba(255,255,255,0.15);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 310px;
    }


    /* ABOUT HERO */

    .about-page-hero {
        min-height: 600px;

        padding:
            75px 0
            80px;
    }

    .about-hero-content h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .about-hero-content p {
        font-size: 15px;
    }


    /* ABOUT */

    .about-intro-section,
    .approach-section,
    .difference-section {
        padding: 85px 0;
    }

    .about-intro-grid,
    .difference-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-intro-text {
        max-width: 700px;
    }

    .about-intro-title h2,
    .approach-heading h2,
    .difference-content h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .difference-visual {
        min-height: 480px;
    }

    .difference-card {
        width: 315px;

        height: 400px;
    }

    .difference-flames span {
        width: 16px;

        height: 70px;
    }

    .difference-flames span:nth-child(2) {
        height: 90px;
    }

    .difference-center h3 {
        font-size: 30px;
    }

    .about-services-heading {
        display: block;
    }

    .about-services-heading
    .secondary-button {
        display: inline-flex;

        margin-top: 25px;
    }

    .about-mini-services {
        grid-template-columns: 1fr;
    }

    .about-mini-services > div {
        min-height: 90px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        width:
            min(
                calc(100% - 32px),
                var(--container)
            );

        flex-direction: column;

        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .brand {
        width: 150px;
    }

    .mobile-menu {
        top: 68px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        text-align: center;
    }

    .hero-trust {
        align-items:
            flex-start;
    }

    .hero-visual {
        transform:
            scale(0.92);
    }

    .main-card {
        width: 310px;

        height: 390px;
    }

    .floating-one {
        transform:
            scale(0.85);

        transform-origin:
            left bottom;
    }

    .floating-two {
        transform:
            scale(0.85);

        transform-origin:
            right top;
    }

    .stat-box {
        padding:
            25px 15px;
    }

    .stat-box strong {
        font-size: 36px;
    }

    .home-cta {
        padding:
            90px 0;
    }

    .about-hero-content h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .difference-card {
        width: 295px;

        height: 380px;
    }
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.services-page-container {
    position: relative;

    width: min(
        calc(100% - 50px),
        1240px
    );

    margin: 0 auto;
}


/* =========================================================
   SERVICES HERO
========================================================= */

.services-hero {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        #090909;

    color: #fff;
}

.services-hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -220px;
    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,.30),
            transparent 68%
        );
}

.services-hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -300px;

    border-radius: 50%;

    background:
        rgba(227,30,36,.08);

    filter: blur(30px);
}


/* BREADCRUMB */

.services-breadcrumb {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 70px;

    color: #777;

    font-size: 12px;
}

.services-breadcrumb a {
    color: #aaa;

    text-decoration: none;
}

.services-breadcrumb strong {
    color: #fff;
}

.services-breadcrumb span {
    color: #444;
}


/* HERO EYEBROW */

.services-hero .eyebrow {
    display: inline-block;

    margin-bottom: 25px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* HERO TITLE */

.services-hero h1 {
    max-width: 900px;

    margin: 0;

    font-family:
        "Manrope",
        "Inter",
        sans-serif;

    font-size:
        clamp(
            52px,
            7vw,
            92px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;

    color: #fff;
}

.services-hero h1 span {
    color: #e31e24;
}


/* HERO DESCRIPTION */

.services-hero-text {
    max-width: 650px;

    margin: 35px 0 0;

    color: #aaa;

    font-size: 16px;

    line-height: 1.8;
}


/* HERO STATS */

.services-hero-bottom {
    display: flex;

    align-items: center;

    gap: 55px;

    margin-top: 60px;
}

.services-hero-bottom > div {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding-right: 55px;

    border-right:
        1px solid #333;
}

.services-hero-bottom > div:last-child {
    border-right: 0;
}

.services-hero-bottom strong {
    color: #fff;

    font-size: 27px;

    font-weight: 800;
}

.services-hero-bottom span {
    color: #777;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services-page-section {
    padding: 120px 0;

    background: #fff;
}


/* HEADING */

.services-section-heading {
    display: grid;

    grid-template-columns:
        1fr 420px;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}

.services-section-heading .eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.services-section-heading h2 {
    max-width: 650px;

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            44px,
            5vw,
            70px
        );

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}

.services-section-heading h2 span {
    color: #e31e24;
}

.services-section-heading > p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICE GRID
========================================================= */

.services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


/* CARD */

.service-large-card {
    position: relative;

    min-height: 430px;

    padding: 38px;

    overflow: hidden;

    border:
        1px solid #e7e7e7;

    background: #fff;

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease,
        border .4s ease;
}


/* RED CORNER */

.service-large-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -90px;
    bottom: -90px;

    border-radius: 50%;

    background: #e31e24;

    opacity: .08;

    transition:
        transform .5s ease,
        opacity .5s ease;
}


/* NUMBER */

.service-card-number {
    position: absolute;

    top: 32px;
    right: 35px;

    color: #ddd;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* ICON */

.service-card-icon {
    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 45px;

    border-radius: 50%;

    background:
        rgba(227,30,36,.08);

    color: #e31e24;

    font-size: 20px;

    font-weight: 800;
}


/* TITLE */

.service-large-card h3 {
    margin: 0 0 16px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 30px;

    line-height: 1.1;

    letter-spacing: -1px;

    font-weight: 800;

    color: #111;
}


/* DESCRIPTION */

.service-large-card > p {
    max-width: 470px;

    margin: 0 0 22px;

    color: #777;

    font-size: 13px;

    line-height: 1.75;
}


/* LIST */

.service-large-card ul {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin: 0 0 28px;

    padding: 0;

    list-style: none;
}

.service-large-card li {
    padding: 7px 10px;

    border-radius: 30px;

    background: #f5f5f5;

    color: #555;

    font-size: 9px;

    font-weight: 600;
}


/* LINK */

.service-large-card > a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #111;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    transition:
        gap .3s ease,
        color .3s ease;
}

.service-large-card > a span {
    color: #e31e24;

    font-size: 17px;
}

.service-large-card > a:hover {
    gap: 15px;

    color: #e31e24;
}


/* HOVER */

.service-large-card:hover {
    transform:
        translateY(-8px);

    border-color:
        #111;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.10);
}

.service-large-card:hover::after {
    transform:
        scale(3);

    opacity: .14;
}


/* FEATURED */

.service-large-card.featured {
    background: #0b0b0b;

    border-color: #0b0b0b;

    color: #fff;
}

.service-large-card.featured h3 {
    color: #fff;
}

.service-large-card.featured > p {
    color: #aaa;
}

.service-large-card.featured .service-card-number {
    color: #555;
}

.service-large-card.featured li {
    background: #1b1b1b;

    color: #aaa;
}

.service-large-card.featured > a {
    color: #fff;
}


/* =========================================================
   PROCESS
========================================================= */

.services-process {
    padding: 120px 0;

    background: #f7f7f7;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid #ddd;

    border-bottom:
        1px solid #ddd;
}

.process-item {
    min-height: 260px;

    padding: 35px;

    border-right:
        1px solid #ddd;
}

.process-item:last-child {
    border-right: 0;
}

.process-item > span {
    display: block;

    margin-bottom: 60px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.process-item h3 {
    margin: 0 0 12px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 24px;

    font-weight: 800;
}

.process-item p {
    max-width: 210px;

    margin: 0;

    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
    position: relative;

    padding: 130px 0;

    overflow: hidden;

    background: #080808;

    color: #fff;

    text-align: center;
}

.services-cta::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,.20),
            transparent 68%
        );
}

.services-cta-container {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        800px
    );

    margin: 0 auto;
}

.services-cta .eyebrow {
    display: inline-block;

    margin-bottom: 25px;

    color: #e31e24;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.services-cta h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

    line-height: 1;

    letter-spacing: -3px;

    font-weight: 800;
}

.services-cta h2 span {
    color: #e31e24;
}

.services-cta p {
    max-width: 520px;

    margin: 25px auto 35px;

    color: #999;

    font-size: 14px;

    line-height: 1.8;
}

.services-cta .primary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 17px 27px;

    border-radius: 50px;

    background: #e31e24;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.services-cta .primary-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(227,30,36,.30);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .services-section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        border-top: 1px solid #ddd;
    }
}


@media (max-width: 800px) {

    .services-page-container {
        width:
            calc(100% - 32px);
    }

    .services-hero {
        min-height: 620px;
    }

    .services-breadcrumb {
        margin-bottom: 55px;
    }

    .services-hero h1 {
        font-size:
            clamp(
                46px,
                12vw,
                65px
            );

        letter-spacing: -2.5px;
    }

    .services-hero-text {
        font-size: 14px;
    }

    .services-hero-bottom {
        gap: 20px;

        flex-wrap: wrap;
    }

    .services-hero-bottom > div {
        padding-right: 20px;
    }

    .services-page-section,
    .services-process {
        padding: 80px 0;
    }

    .services-section-heading h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .service-large-card {
        min-height: auto;

        padding: 30px;
    }

    .service-large-card h3 {
        font-size: 27px;
    }
}


@media (max-width: 550px) {

    .services-hero-bottom {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 10px;
    }

    .services-hero-bottom > div {
        padding-right: 10px;
    }

    .services-hero-bottom strong {
        font-size: 22px;
    }

    .services-hero-bottom span {
        font-size: 8px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        min-height: auto;

        border-right: 0;

        border-bottom:
            1px solid #ddd;
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-item:nth-child(3),
    .process-item:nth-child(4) {
        border-top: 0;
    }

    .process-item > span {
        margin-bottom: 30px;
    }

    .services-cta h2 {
        font-size: 45px;
    }
}
.service-large-card {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.service-large-card.service-visible {
    opacity: 1;

    transform:
        translateY(0);
}

/* =========================================================
   PR SERVICES PAGE
========================================================= */

.pr-container {
    position: relative;

    width: min(
        calc(100% - 50px),
        1240px
    );

    margin: 0 auto;
}


/* =========================================================
   PR HERO
========================================================= */

.pr-hero {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #090909;

    color: #fff;
}

.pr-hero::before {
    content: "";

    position: absolute;

    width: 750px;

    height: 750px;

    right: -250px;

    top: -280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,.32),
            transparent 68%
        );
}

.pr-hero-glow {
    position: absolute;

    width: 500px;

    height: 500px;

    left: -300px;

    bottom: -350px;

    border-radius: 50%;

    background:
        rgba(227,30,36,.12);

    filter: blur(30px);
}


/* BREADCRUMB */

.pr-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 65px;

    font-size: 12px;

    color: #666;
}

.pr-breadcrumb a {
    color: #aaa;
}

.pr-breadcrumb strong {
    color: #fff;
}

.pr-breadcrumb span {
    color: #444;
}


/* EYEBROW */

.pr-hero .eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


/* TITLE */

.pr-hero h1 {
    max-width: 900px;

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            52px,
            7vw,
            90px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;
}

.pr-hero h1 span {
    color: #e31e24;
}


/* TEXT */

.pr-hero p {
    max-width: 650px;

    margin: 30px 0 0;

    color: #999;

    font-size: 16px;

    line-height: 1.8;
}


/* HERO POINTS */

.pr-hero-points {
    display: flex;

    gap: 0;

    margin-top: 55px;
}

.pr-hero-points > div {
    display: flex;

    flex-direction: column;

    padding:
        0 45px;

    border-right:
        1px solid #333;
}

.pr-hero-points > div:first-child {
    padding-left: 0;
}

.pr-hero-points > div:last-child {
    border-right: 0;
}

.pr-hero-points strong {
    margin-bottom: 6px;

    color: #fff;

    font-size: 16px;

    letter-spacing: 1px;
}

.pr-hero-points span {
    color: #777;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   PACKAGES
========================================================= */

.pr-packages-section {
    padding: 125px 0;

    background: #f7f7f7;
}

.pr-section-heading {
    display: grid;

    grid-template-columns:
        1fr 430px;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.pr-section-heading .eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.pr-section-heading h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.pr-section-heading h2 span {
    color: #e31e24;
}

.pr-section-heading > p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PACKAGE CARD
========================================================= */

.pr-package-card {
    position: relative;

    display: grid;

    grid-template-columns:
        42% 58%;

    min-height: 430px;

    margin-bottom: 22px;

    overflow: hidden;

    background: #fff;

    border:
        1px solid #e4e4e4;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.pr-package-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.10);
}


/* FEATURED */

.pr-package-card.featured {
    border:
        2px solid #e31e24;
}


/* IMAGE */

.pr-package-image {
    position: relative;

    min-height: 430px;

    overflow: hidden;

    background: #111;
}

.pr-package-image img {
    width: 100%;

    height: 100%;

    min-height: 430px;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.pr-package-card:hover
.pr-package-image img {
    transform:
        scale(1.05);
}


/* IMAGE OVERLAY */

.pr-package-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.05),
            rgba(0,0,0,.35)
        );
}


/* TAG */

.package-tag {
    position: absolute;

    z-index: 3;

    top: 25px;

    left: 25px;

    padding: 8px 12px;

    border-radius: 30px;

    background: #e31e24;

    color: #fff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   PACKAGE CONTENT
========================================================= */

.pr-package-content {
    position: relative;

    display: flex;

    flex-direction: column;

    padding: 42px;
}

.package-number {
    position: absolute;

    top: 35px;

    right: 40px;

    color: #ddd;

    font-size: 12px;

    font-weight: 800;
}

.pr-package-content h3 {
    margin: 0 0 15px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 34px;

    line-height: 1;

    letter-spacing: -1.5px;
}

.package-short {
    max-width: 500px;

    margin: 0 0 25px;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}


/* LIST */

.pr-package-content ul {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px 20px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.pr-package-content li {
    position: relative;

    padding-left: 17px;

    color: #555;

    font-size: 11px;
}

.pr-package-content li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 7px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #e31e24;
}


/* BOTTOM */

.package-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: auto;

    padding-top: 30px;

    border-top:
        1px solid #eee;
}


/* PRICE */

.package-price {
    display: flex;

    flex-direction: column;
}

.package-price strong {
    color: #111;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 25px;

    line-height: 1;
}

.package-price span {
    margin-top: 6px;

    color: #888;

    font-size: 10px;
}


/* BUTTON */

.pr-enquire-btn,
.pr-bottom-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px 20px;

    border: 0;

    border-radius: 50px;

    background: #e31e24;

    color: #fff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.pr-enquire-btn span,
.pr-bottom-button span {
    font-size: 16px;
}

.pr-enquire-btn:hover,
.pr-bottom-button:hover {
    background: #c8171d;

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(227,30,36,.25);
}


/* =========================================================
   INFO
========================================================= */

.pr-info-section {
    padding: 120px 0;

    background: #fff;
}

.pr-info-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 100px;
}

.pr-info-grid h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            42px,
            5vw,
            65px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.pr-info-grid h2 span {
    color: #e31e24;
}

.pr-info-content > p {
    max-width: 650px;

    margin: 0 0 20px;

    color: #666;

    font-size: 14px;

    line-height: 1.85;
}

.pr-info-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    margin-top: 35px;

    border-top:
        1px solid #ddd;

    border-left:
        1px solid #ddd;
}

.pr-info-points > div {
    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 80px;

    padding: 20px;

    border-right:
        1px solid #ddd;

    border-bottom:
        1px solid #ddd;
}

.pr-info-points strong {
    color: #e31e24;

    font-size: 11px;
}

.pr-info-points span {
    color: #333;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.pr-bottom-cta {
    padding: 130px 20px;

    background: #090909;

    color: #fff;

    text-align: center;
}

.pr-bottom-cta > div {
    max-width: 850px;

    margin: auto;
}

.pr-bottom-cta .eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: #e31e24;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.pr-bottom-cta h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.pr-bottom-cta h2 span {
    color: #e31e24;
}

.pr-bottom-cta p {
    max-width: 500px;

    margin: 25px auto 32px;

    color: #888;

    font-size: 14px;
}


/* =========================================================
   MODAL
========================================================= */

.pr-modal {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.pr-modal.open {
    opacity: 1;

    visibility: visible;
}

.pr-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.75);

    backdrop-filter:
        blur(7px);
}

.pr-modal-box {
    position: relative;

    z-index: 2;

    width: min(
        100%,
        620px
    );

    max-height: 90vh;

    overflow-y: auto;

    padding: 40px;

    border-radius: 24px;

    background: #fff;

    box-shadow:
        0 35px 100px
        rgba(0,0,0,.30);

    transform:
        translateY(20px)
        scale(.97);

    transition:
        transform .35s ease;
}

.pr-modal.open .pr-modal-box {
    transform:
        translateY(0)
        scale(1);
}


/* CLOSE */

.pr-modal-close {
    position: absolute;

    top: 18px;

    right: 20px;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background: #f2f2f2;

    color: #111;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;
}


/* MODAL HEADING */

.pr-modal-heading {
    padding-right: 35px;

    margin-bottom: 28px;
}

.pr-modal-heading .eyebrow {
    color: #e31e24;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.pr-modal-heading h2 {
    margin: 10px 0 12px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 34px;

    line-height: 1.05;

    letter-spacing: -1.5px;
}

.pr-modal-heading h2 span {
    color: #e31e24;
}

.pr-modal-heading p {
    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


/* SELECTED PACKAGE */

.selected-package-box {
    padding: 15px 17px;

    margin-bottom: 22px;

    border:
        1px solid #f0b7b9;

    border-radius: 12px;

    background:
        #fff6f6;
}

.selected-package-box small {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.selected-package-box strong {
    color: #e31e24;

    font-size: 15px;
}


/* FORM */

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #222;

    font-size: 11px;

    font-weight: 700;
}

.form-group label span {
    color: #e31e24;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px 14px;

    border:
        1px solid #ddd;

    border-radius: 10px;

    outline: none;

    background: #fff;

    color: #111;

    font-family: inherit;

    font-size: 13px;

    transition:
        border .25s ease,
        box-shadow .25s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e31e24;

    box-shadow:
        0 0 0 3px
        rgba(227,30,36,.08);
}


/* SUBMIT */

.pr-submit-button {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 15px;

    border: 0;

    border-radius: 10px;

    background: #e31e24;

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}

.pr-submit-button:hover {
    background: #c8171d;

    transform:
        translateY(-2px);
}

.pr-form-message {
    margin-top: 15px;

    text-align: center;

    font-size: 12px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .pr-section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .pr-package-card {
        grid-template-columns: 1fr;
    }

    .pr-package-image,
    .pr-package-image img {
        min-height: 300px;

        height: 300px;
    }

    .pr-info-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }
}


@media (max-width: 800px) {

    .pr-container {
        width:
            calc(100% - 32px);
    }

    .pr-hero {
        min-height: 620px;
    }

    .pr-hero h1 {
        font-size:
            clamp(
                46px,
                12vw,
                68px
            );

        letter-spacing: -2.5px;
    }

    .pr-hero-points {
        gap: 0;
    }

    .pr-hero-points > div {
        padding:
            0 18px;
    }

    .pr-hero-points > div:first-child {
        padding-left: 0;
    }

    .pr-packages-section,
    .pr-info-section {
        padding: 80px 0;
    }

    .pr-section-heading h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .pr-package-content {
        padding: 30px;
    }

    .pr-package-content h3 {
        font-size: 29px;
    }

    .pr-modal-box {
        padding: 30px 22px;
    }
}


@media (max-width: 550px) {

    .pr-hero-points {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);
    }

    .pr-hero-points > div {
        padding:
            0 10px;

        border-right:
            1px solid #333;
    }

    .pr-hero-points strong {
        font-size: 12px;
    }

    .pr-hero-points span {
        font-size: 8px;
    }

    .pr-package-content ul {
        grid-template-columns: 1fr;
    }

    .package-bottom {
        align-items:
            flex-start;

        flex-direction: column;
    }

    .pr-enquire-btn {
        width: 100%;
    }

    .pr-info-points {
        grid-template-columns: 1fr;
    }

    .pr-bottom-cta h2 {
        font-size: 44px;
    }
}

/* =========================================================
   PODCAST PAGE
========================================================= */

.podcast-container {
    position: relative;

    width: min(
        calc(100% - 50px),
        1240px
    );

    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.podcast-hero {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #090909;

    color: #fff;
}

.podcast-hero::before {
    content: "";

    position: absolute;

    width: 750px;
    height: 750px;

    right: -280px;
    top: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,.32),
            transparent 68%
        );
}

.podcast-hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -350px;

    border-radius: 50%;

    background:
        rgba(227,30,36,.10);

    filter: blur(30px);
}


/* BREADCRUMB */

.podcast-breadcrumb {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 65px;

    color: #666;

    font-size: 12px;
}

.podcast-breadcrumb a {
    color: #aaa;

    text-decoration: none;
}

.podcast-breadcrumb strong {
    color: #fff;
}

.podcast-breadcrumb span {
    color: #444;
}


/* HERO EYEBROW */

.podcast-hero .eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


/* HERO TITLE */

.podcast-hero h1 {
    max-width: 950px;

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            52px,
            7vw,
            92px
        );

    line-height: .98;

    letter-spacing: -4px;

    font-weight: 800;
}

.podcast-hero h1 span {
    color: #e31e24;
}


/* HERO TEXT */

.podcast-hero > .podcast-container > p {
    max-width: 680px;

    margin: 32px 0 0;

    color: #999;

    font-size: 16px;

    line-height: 1.8;
}


/* HERO BOTTOM */

.podcast-hero-bottom {
    display: flex;

    align-items: center;

    gap: 0;

    margin-top: 55px;
}

.podcast-hero-bottom > div {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding:
        0 40px;

    border-right:
        1px solid #333;
}

.podcast-hero-bottom > div:first-child {
    padding-left: 0;
}

.podcast-hero-bottom strong {
    color: #fff;

    font-size: 15px;

    letter-spacing: 1px;
}

.podcast-hero-bottom span {
    color: #777;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* YOUTUBE BUTTON */

.youtube-channel-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-left: 40px;

    padding: 14px 20px;

    border:
        1px solid #333;

    border-radius: 50px;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .3s ease,
        border .3s ease,
        transform .3s ease;
}

.youtube-channel-button span {
    color: #e31e24;

    font-size: 17px;
}

.youtube-channel-button:hover {
    background: #e31e24;

    border-color: #e31e24;

    color: #fff;

    transform:
        translateY(-2px);
}

.youtube-channel-button:hover span {
    color: #fff;
}


/* =========================================================
   VIDEO SECTION
========================================================= */

.podcast-videos-section {
    padding: 120px 0;

    background: #f7f7f7;
}


/* SECTION HEADING */

.podcast-section-heading {
    display: grid;

    grid-template-columns:
        1fr 420px;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;
}

.podcast-section-heading .eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.podcast-section-heading h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.podcast-section-heading h2 span {
    color: #e31e24;
}

.podcast-section-heading > p {
    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   VIDEO GRID
========================================================= */

.podcast-video-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    min-height: 200px;
}


/* VIDEO CARD */

.podcast-video-card {
    overflow: hidden;

    background: #fff;

    border:
        1px solid #e5e5e5;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.podcast-video-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.12);
}


/* THUMBNAIL */

.podcast-thumbnail {
    position: relative;

    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #111;
}

.podcast-thumbnail img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.podcast-video-card:hover
.podcast-thumbnail img {
    transform:
        scale(1.06);
}


/* DARK OVERLAY */

.podcast-thumbnail::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(0,0,0,.30)
        );

    pointer-events: none;
}


/* PLAY BUTTON */

.podcast-play {
    position: absolute;

    z-index: 3;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(227,30,36,.95);

    color: #fff;

    font-size: 19px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.25);

    transition:
        transform .3s ease;
}

.podcast-video-card:hover
.podcast-play {
    transform:
        translate(-50%, -50%)
        scale(1.12);
}


/* VIDEO CONTENT */

.podcast-video-content {
    padding: 23px;
}

.podcast-video-content h3 {
    display: -webkit-box;

    margin: 0 0 12px;

    overflow: hidden;

    color: #111;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 17px;

    line-height: 1.35;

    letter-spacing: -.3px;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}

.podcast-video-content p {
    margin: 0;

    color: #888;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   LOADING
========================================================= */

.podcast-loading {
    grid-column:
        1 / -1;

    min-height: 250px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 15px;

    color: #888;

    font-size: 12px;
}

.podcast-loader {
    width: 35px;

    height: 35px;

    border:
        3px solid #ddd;

    border-top-color:
        #e31e24;

    border-radius: 50%;

    animation:
        podcastSpin .8s linear infinite;
}

@keyframes podcastSpin {

    to {
        transform:
            rotate(360deg);
    }

}


/* =========================================================
   LOAD MORE
========================================================= */

.podcast-load-more-wrap {
    display: flex;

    justify-content: center;

    margin-top: 50px;
}

.podcast-load-more {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 15px 24px;

    border: 0;

    border-radius: 50px;

    background: #111;

    color: #fff;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform .3s ease,
        background .3s ease;
}

.podcast-load-more:hover {
    background: #e31e24;

    transform:
        translateY(-2px);
}


/* =========================================================
   ABOUT
========================================================= */

.podcast-about {
    padding: 120px 0;

    background: #fff;
}

.podcast-about-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 100px;
}

.podcast-about .eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    color: #e31e24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;
}

.podcast-about h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            5vw,
            68px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.podcast-about h2 span {
    color: #e31e24;
}

.podcast-about-grid > div:last-child p {
    margin:
        0 0 20px;

    color: #666;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   CTA
========================================================= */

.podcast-cta {
    position: relative;

    padding: 130px 20px;

    overflow: hidden;

    background: #090909;

    color: #fff;

    text-align: center;
}

.podcast-cta::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(227,30,36,.20),
            transparent 68%
        );
}

.podcast-cta > div {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: auto;
}

.podcast-cta .eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: #e31e24;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.podcast-cta h2 {
    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            75px
        );

    line-height: 1;

    letter-spacing: -3px;
}

.podcast-cta h2 span {
    color: #e31e24;
}

.podcast-cta p {
    max-width: 520px;

    margin: 25px auto 32px;

    color: #888;

    font-size: 14px;

    line-height: 1.8;
}

.podcast-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 25px;

    border-radius: 50px;

    background: #e31e24;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}

.podcast-cta-button:hover {
    color: #fff;

    transform:
        translateY(-2px);
}


/* =========================================================
   ERROR
========================================================= */

.podcast-error {
    grid-column:
        1 / -1;

    padding: 50px 20px;

    text-align: center;

    background: #fff;

    border:
        1px solid #eee;
}

.podcast-error strong {
    display: block;

    margin-bottom: 10px;

    color: #111;

    font-size: 16px;
}

.podcast-error span {
    color: #888;

    font-size: 12px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .podcast-section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .podcast-video-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .podcast-about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 800px) {

    .podcast-container {
        width:
            calc(100% - 32px);
    }

    .podcast-hero {
        min-height: 620px;
    }

    .podcast-hero h1 {
        font-size:
            clamp(
                46px,
                12vw,
                68px
            );

        letter-spacing: -2.5px;
    }

    .podcast-hero-bottom {
        flex-wrap: wrap;

        gap: 20px;
    }

    .youtube-channel-button {
        margin-left: 0;

        width: 100%;

        justify-content: center;
    }

    .podcast-videos-section,
    .podcast-about {
        padding: 80px 0;
    }

}


@media (max-width: 600px) {

    .podcast-video-grid {
        grid-template-columns: 1fr;
    }

    .podcast-hero-bottom {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .podcast-hero-bottom > div {
        padding:
            0 15px;
    }

    .podcast-hero-bottom > div:first-child {
        padding-left: 0;
    }

    .podcast-section-heading h2,
    .podcast-about h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .podcast-cta h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

}


