
/* =========================================
   GLOBAL RESET
========================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: #07080b;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
/* =========================================
   HEADER / NAVIGATION
========================================= */

.site-header {
    width: 100%;
    height: 82px;
    background: rgba(5, 6, 9, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 9999;
}

.header-container {
    width: min(1200px, calc(100% - 50px));
    height: 100%;
    margin: 0 auto;

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


/* =========================================
   LOGO
========================================= */

.site-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    min-width: 205px;
}

.logo-main {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-main b {
    color: #e82b4f;
    font-weight: 700;
}

.logo-tagline {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.52);
    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 2.2px;
}


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

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    height: 100%;
}

.nav-link {
    height: 100%;
    position: relative;

    display: flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}


/* Active menu */

.nav-link.active {
    color: #ff3155;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;
    border-radius: 10px;

    background: #ff3155;
    box-shadow: 0 0 10px rgba(255, 49, 85, 0.55);
}


/* =========================================
   HEADER BUTTON
========================================= */

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-width: 112px;
    height: 40px;
    padding: 0 18px;

    color: #ffffff;
    text-decoration: none;

    background: linear-gradient(
        135deg,
        #ff3155,
        #d9163d
    );

    border-radius: 22px;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 6px 20px rgba(225, 25, 65, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.header-btn span {
    font-size: 17px;
    line-height: 1;
}

.header-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);

    box-shadow:
        0 9px 25px rgba(225, 25, 65, 0.35);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    width: 42px;
    height: 42px;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;

    background: #ffffff;
    border-radius: 5px;

    transition: all 0.3s ease;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .header-container {
        width: min(100% - 35px, 950px);
    }

    .main-nav {
        gap: 22px;
    }

    .nav-link {
        font-size: 13px;
    }

    .site-logo {
        min-width: 175px;
    }

    .logo-main {
        font-size: 24px;
    }

    .header-btn {
        min-width: 95px;
        padding: 0 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .site-header {
        height: 72px;
    }

    .header-container {
        width: calc(100% - 30px);
    }

    .site-logo {
        min-width: auto;
    }

    .logo-main {
        font-size: 23px;
    }

    .logo-tagline {
        font-size: 6px;
        letter-spacing: 1.7px;
        margin-top: 5px;
    }

    /* Hide desktop button */
    .header-btn {
        display: none;
    }

    /* Hamburger */
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 10001;
    }

    /* Mobile navigation */

    .main-nav {
        position: absolute;

        top: 72px;
        left: 15px;
        right: 15px;

        height: auto;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;
        padding: 10px;

        background: rgba(9, 10, 14, 0.98);

        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 12px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.55);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

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

    .main-nav.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        height: 48px;

        display: flex;
        align-items: center;

        padding: 0 15px;

        border-radius: 7px;

        font-size: 14px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: none;
    }

    .nav-link.active {
        background: rgba(232, 43, 79, 0.08);
    }

    .nav-link.active::after {
        left: auto;
        right: 12px;
        bottom: 50%;

        width: 4px;
        height: 22px;

        transform: translateY(50%);
        border-radius: 5px;
    }
	
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .site-header {
        height: 68px;
    }

    .main-nav {
        top: 68px;
    }

    .logo-main {
        font-size: 21px;
    }

    .logo-tagline {
        font-size: 5.5px;
        letter-spacing: 1.4px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}

/* =========================================
   INTRO BANNER
========================================= */

.intro-banner {
    position: relative;
    width: 100%;
    min-height: 610px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(160, 10, 40, 0.22),
            transparent 36%
        ),
        #07080b;
}


/* =========================================
   BACKGROUND
========================================= */

.intro-banner::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: 20px;
    right: 15%;

    background: rgba(190, 15, 50, 0.12);

    filter: blur(100px);

    border-radius: 50%;
}


.intro-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 5, 8, 0.98) 0%,
            rgba(4, 5, 8, 0.88) 35%,
            rgba(4, 5, 8, 0.45) 65%,
            rgba(4, 5, 8, 0.12) 100%
        );

    z-index: 1;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.intro-banner-container {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 610px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =========================================
   CONTENT
========================================= */

.banner-content {
    position: relative;
    z-index: 5;

    width: min(1200px, calc(100% - 50px));

    margin: 0 auto;

    padding: 150px 0 100px;

    /* Left se thoda andar */
    padding-left: 35px;
}


/* Small red label */

.banner-label {
    display: block;

    margin-bottom: 15px;

    color: #ff3155;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
}


/* =========================================
   BANNER TITLE
   NOT H1
========================================= */

.banner-title {
    display: block;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.04;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.banner-title em {
    color: #e82b4f;
    font-style: normal;
}


/* Subtitle */

.banner-subtitle {
    display: block;

    margin-top: 14px;
    margin-bottom: 17px;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 500;
}


/* Description */

.banner-content p {
    max-width: 520px;

    margin: 0;

    color: rgba(255, 255, 255, 0.66);

    font-family: Arial, sans-serif;

    font-size: 14px;
    line-height: 1.8;
}


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

.banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 29px;
}


.banner-primary-btn,
.banner-secondary-btn {
    min-height: 46px;

    padding: 0 22px;

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

    border-radius: 25px;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


.banner-primary-btn {
    gap: 10px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #ff3155,
        #d9153d
    );

    box-shadow:
        0 8px 25px rgba(225, 25, 65, 0.25);
}


.banner-primary-btn span {
    font-size: 18px;
}


.banner-primary-btn:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(225, 25, 65, 0.38);
}


.banner-secondary-btn {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.20);

    background: rgba(255, 255, 255, 0.04);
}


.banner-secondary-btn:hover {
    color: #ffffff;

    background: rgba(255, 255, 255, 0.09);

    transform: translateY(-2px);
}


/* =========================================
   FEATURES
========================================= */

.banner-features {
    display: flex;
    align-items: center;
    gap: 27px;

    margin-top: 31px;
}


.banner-feature {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-family: Arial, sans-serif;

    font-size: 11px;
}


.feature-icon {
    width: 25px;
    height: 25px;

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

    color: #ff3155;

    border: 1px solid rgba(255, 49, 85, 0.55);

    border-radius: 50%;

    font-size: 10px;
}


/* =========================================
   BANNER IMAGE
========================================= */

.banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;
}

.banner-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: 1;
}

/* Red glow behind image */

.banner-image-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    right: 10%;
    top: 50%;

    transform: translateY(-50%);

    background: rgba(210, 20, 55, 0.18);

    filter: blur(90px);

    border-radius: 50%;
}


/* =========================================
   BOTTOM CURVE
========================================= */

.banner-bottom-shape {
    position: absolute;

    z-index: 5;

    left: -2%;
    bottom: -30px;

    width: 104%;
    height: 60px;

    background: #0b080c;

    border-radius:
        50% 50% 0 0 /
        100% 100% 0 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .intro-banner-container {
        width: calc(100% - 35px);
    }

    .banner-content {
        width: 55%;
    }

    .banner-image {
        width: 60%;
        right: -8%;
    }

    .banner-title {
        font-size: 53px;
    }

    .banner-subtitle {
        font-size: 18px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .intro-banner {
        min-height: 590px;
    }


    .intro-banner-container {
        width: 100%;
        min-height: 590px;

        display: block;

        position: relative;
    }


    /* Content on top of image */

    .banner-content {
        position: relative;
        z-index: 5;

        width: calc(100% - 60px);

         padding: 100px 0 70px;

        text-align: left;
		
		
    }


    .banner-label {
        font-size: 8px;
        letter-spacing: 3px;
    }


    .banner-title {
        font-size: 44px;
        line-height: 1.05;
    }


    .banner-subtitle {
        max-width: 280px;

        font-size: 16px;
        line-height: 1.45;
    }


    .banner-content p {
        max-width: 340px;

        font-size: 12px;
        line-height: 1.7;

        color: rgba(255, 255, 255, 0.70);
    }


    /* Buttons */

    .banner-actions {
        margin-top: 23px;

        justify-content: flex-start;
    }


    .banner-primary-btn,
    .banner-secondary-btn {
        min-height: 43px;

        padding: 0 17px;

        font-size: 12px;
    }


    /* Features */

    .banner-features {
        gap: 14px;

        margin-top: 25px;
    }


    .banner-feature {
        font-size: 9px;
    }


    .feature-icon {
        width: 22px;
        height: 22px;

        font-size: 9px;
    }


    /* =====================================
       SAME IMAGE
       LEFT SIDE CROP
    ===================================== */

    .banner-image {
        position: absolute;

        top: 0;
        right: 0;

        width: 100%;
        height: 100%;

        overflow: hidden;
    }


    .banner-image img {
        width: 100%;
        height: 100%;

        /*
          Image ko right side par hold karenge.
          Isse mobile mein LEFT portion crop hoga
          aur right-side subject visible rahega.
        */
        object-position: right center;

        object-fit: cover;

        opacity: 0.72;

        -webkit-mask-image:
            linear-gradient(
                to right,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.72) 45%,
                black 100%
            );

        mask-image:
            linear-gradient(
                to right,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.72) 45%,
                black 100%
            );
    }


    .banner-image-glow {
        width: 300px;
        height: 300px;

        right: -30px;
        top: 45%;

        filter: blur(70px);
    }


    .banner-bottom-shape {
        bottom: -20px;

        height: 40px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .intro-banner {
        min-height: 570px;
    }

    .intro-banner-container {
        min-height: 570px;
    }


    .banner-content {
        padding:
            48px 20px 60px;
    }


    .banner-title {
        font-size: 39px;
    }


    .banner-subtitle {
        font-size: 15px;
    }


    .banner-content p {
        max-width: 300px;

        font-size: 11.5px;
    }


    .banner-features {
        gap: 9px;
    }


    .banner-feature {
        font-size: 8.5px;
    }


    .banner-image img {
        /*
          Small screens par bhi same image,
          left side crop.
        */
        object-position: right center;
    }
}

/* =========================================
   CATEGORY SECTION
========================================= */

.category-section {
    position: relative;

    width: 100%;

    padding: 95px 0 105px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 35%,
            rgba(130, 8, 35, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(120, 5, 30, 0.10),
            transparent 30%
        ),
        #0a090d;
}


/* Subtle background glow */

.category-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -250px;
    top: 80px;

    background: rgba(180, 15, 50, 0.07);

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


.category-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -220px;
    bottom: 0;

    background: rgba(180, 15, 50, 0.06);

    filter: blur(100px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.category-container {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 50px));

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.category-heading {
    max-width: 720px;

    margin-bottom: 42px;
}


.section-label {
    display: block;

    margin-bottom: 10px;

    color: #ff3155;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 4px;
}


.category-heading h1 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.8px;
}


.category-heading p {
    max-width: 650px;

    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.58);

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   CATEGORY GRID
========================================= */

.category-grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================
   CATEGORY CARD
========================================= */

.category-card {
    position: relative;

    display: block;

    overflow: hidden;

    text-decoration: none;

    background: #111116;

    border: 1px solid rgba(255, 255, 255, 0.09);

    border-radius: 12px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


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

    border-color:
        rgba(255, 49, 85, 0.65);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.42),
        0 0 25px rgba(210, 20, 55, 0.08);
}


/* =========================================
   CARD IMAGE
========================================= */

.category-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1.38 / 1;

    overflow: hidden;

    background: #15151a;
}


.category-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.category-card:hover .category-image img {
    transform: scale(1.06);
}


/* Image overlay */

.category-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(5, 5, 8, 0.22) 65%,
            rgba(5, 5, 8, 0.88) 100%
        );

    pointer-events: none;
}


/* =========================================
   ARROW
========================================= */

.category-arrow {
    position: absolute;

    right: 12px;
    bottom: 12px;

    width: 34px;
    height: 34px;

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

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff3155,
            #d9163d
        );

    border-radius: 50%;

    font-family: Arial, sans-serif;

    font-size: 17px;

    box-shadow:
        0 7px 20px rgba(220, 20, 55, 0.30);

    transition:
        transform 0.3s ease;
}


.category-card:hover .category-arrow {
    transform: translateX(3px);
}


/* =========================================
   CARD INFORMATION
========================================= */

.category-info {
    min-height: 78px;

    padding: 15px 14px;

    display: flex;
    align-items: center;

    gap: 12px;

    background:
        linear-gradient(
            180deg,
            #111116,
            #0e0e13
        );
}


.category-number {
    color: rgba(255, 49, 85, 0.75);

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


.category-info h2 {
    margin: 0;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.25;
}


.category-info p {
    margin: 4px 0 0;

    color: rgba(255, 255, 255, 0.46);

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================
   BOTTOM BUTTON
========================================= */

.category-bottom {
    display: flex;

    justify-content: center;

    margin-top: 38px;
}


.category-view-btn {
    display: inline-flex;

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

    gap: 10px;

    min-height: 44px;

    padding: 0 22px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    border: 1px solid rgba(255, 49, 85, 0.55);

    border-radius: 24px;

    background: rgba(255, 49, 85, 0.05);

    transition: all 0.3s ease;
}


.category-view-btn span {
    color: #ff3155;

    font-size: 17px;
}


.category-view-btn:hover {
    color: #ffffff;

    background: rgba(255, 49, 85, 0.10);

    border-color: #ff3155;

    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .category-container {
        width: calc(100% - 35px);
    }

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

        gap: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .category-section {
        padding: 72px 0 80px;
    }


    .category-container {
        width: calc(100% - 30px);
    }


    .category-heading {
        margin-bottom: 30px;
    }


    .category-heading h1 {
        font-size: 34px;
    }


    .category-heading p {
        font-size: 12px;

        line-height: 1.7;
    }


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

        gap: 12px;
    }


    .category-image {
        aspect-ratio: 1.15 / 1;
    }


    .category-info {
        min-height: 68px;

        padding: 11px 10px;

        gap: 7px;
    }


    .category-number {
        font-size: 8px;
    }


    .category-info h2 {
        font-size: 13px;
    }


    .category-info p {
        font-size: 8px;
    }


    .category-arrow {
        width: 29px;
        height: 29px;

        right: 8px;
        bottom: 8px;

        font-size: 14px;
    }


    .category-bottom {
        margin-top: 28px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .category-section {
        padding: 60px 0 70px;
    }


    .category-heading h1 {
        font-size: 30px;
    }


    .category-heading p {
        font-size: 11px;
    }


    .category-grid {
        gap: 10px;
    }


    .category-info {
        min-height: 64px;
    }


    .category-info h2 {
        font-size: 12px;
    }


    .category-info p {
        font-size: 7.5px;
    }

}
/* =========================================
   AGENCY INTRO SECTION
========================================= */

.agency-intro {
    position: relative;

    width: 100%;

    padding: 105px 0 95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 35%,
            rgba(135, 8, 38, 0.12),
            transparent 30%
        ),
        #0b0a0e;
}


/* =========================================
   MAIN CONTAINER
========================================= */

.agency-intro-container {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 50px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 0.82fr;

    align-items: center;

    gap: 80px;
}


/* =========================================
   CONTENT
========================================= */

.agency-intro-content {
    max-width: 650px;
}


.intro-label {
    display: block;

    margin-bottom: 14px;

    color: #ff3155;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 4px;
}


.agency-intro-content h2 {
    margin: 0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.16;

    font-weight: 700;

    letter-spacing: -0.8px;
}


.agency-intro-content h2 span {
    display: block;

    color: #e82b4f;
}


.agency-intro-content p {
    margin: 20px 0 0;

    color: rgba(255, 255, 255, 0.60);

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.85;
}


.agency-intro-content p + p {
    margin-top: 14px;
}


.agency-intro-content strong {
    color: rgba(255, 255, 255, 0.82);

    font-weight: 600;
}


/* =========================================
   READ MORE BUTTON
========================================= */

.intro-read-more {
    display: inline-flex;

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

    gap: 11px;

    min-height: 45px;

    margin-top: 29px;

    padding: 0 21px;

    color: #ffffff;

    text-decoration: none;

    border: 1px solid rgba(255, 49, 85, 0.55);

    background: rgba(255, 49, 85, 0.05);

    border-radius: 24px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.intro-read-more span {
    color: #ff3155;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.intro-read-more:hover {
    color: #ffffff;

    border-color: #ff3155;

    background: rgba(255, 49, 85, 0.10);

    transform: translateY(-2px);
}


.intro-read-more:hover span {
    transform: translateX(3px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

/* =========================================
   RIGHT VISUAL
========================================= */

.agency-intro-visual {
    position: relative;

    min-height: 560px;

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


/* Red Glow */

.intro-visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: rgba(210, 20, 55, 0.16);

    filter: blur(95px);

    border-radius: 50%;
}


/* =========================================
   LARGER IMAGE
========================================= */

.intro-image-frame {
    position: relative;
    z-index: 2;

    width: 410px;
    height: 510px;

    overflow: hidden;

    border-radius: 190px 190px 16px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: #151419;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.48);
}


.intro-image-frame img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}





/* =========================================
   HIGHLIGHTS
========================================= */

.intro-highlights {
    position: relative;
    z-index: 2;

    width: min(1200px, calc(100% - 50px));

    margin: 75px auto 0;

    padding-top: 28px;

    display: grid;

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

    border-top:
        1px solid rgba(255, 255, 255, 0.09);
}


.intro-highlight {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 0 30px;

    border-right:
        1px solid rgba(255, 255, 255, 0.08);
}


.intro-highlight:first-child {
    padding-left: 0;
}


.intro-highlight:last-child {
    padding-right: 0;

    border-right: none;
}


.highlight-number {
    color: #ff3155;

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.intro-highlight strong {
    display: block;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;
}


.intro-highlight p {
    margin: 6px 0 0;

    color: rgba(255, 255, 255, 0.43);

    font-family: Arial, sans-serif;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .agency-intro-container {
        width: calc(100% - 35px);

        gap: 45px;
    }


    .agency-intro-content h2 {
        font-size: 40px;
    }


    .intro-image-frame {
        width: 320px;
        height: 420px;
    }


    .intro-highlights {
        width: calc(100% - 35px);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .agency-intro {
        padding: 75px 0 75px;
    }


    .agency-intro-container {
        width: calc(100% - 30px);

        display: flex;

        flex-direction: column;

        gap: 50px;

        align-items: stretch;
    }


    .agency-intro-content {
        max-width: none;

        text-align: left;
    }


    .intro-label {
        font-size: 8px;

        letter-spacing: 3px;
    }


    .agency-intro-content h2 {
        font-size: 34px;

        line-height: 1.18;
    }


    .agency-intro-content p {
        font-size: 12px;

        line-height: 1.75;
    }


    .intro-read-more {
        min-height: 43px;

        margin-top: 24px;

        font-size: 11px;
    }


    /* Visual */

    .agency-intro-visual {
        min-height: 480px;
    }


    .intro-image-frame {
        width: 305px;
        height: 420px;
    }


    .intro-floating-card {
         right: 50%;
        bottom: 10px;

        min-width: 200px;

        transform: translateX(50%);
    }


    /* Highlights */

    .intro-highlights {
        width: calc(100% - 30px);

        margin-top: 55px;

        padding-top: 25px;

        grid-template-columns: 1fr;

        gap: 22px;
    }


    .intro-highlight,
    .intro-highlight:first-child,
    .intro-highlight:last-child {
        padding: 0;

        border-right: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .agency-intro {
        padding: 62px 0 65px;
    }


    .agency-intro-content h2 {
        font-size: 30px;
    }


    .agency-intro-content p {
        font-size: 11px;

        line-height: 1.7;
    }


    .agency-intro-visual {
        min-height: 400px;
    }


    .intro-image-frame {
        width: 260px;

        height: 355px;
    }


    .intro-floating-card {
        right: 50%;

        transform: translateX(50%);

        bottom: 5px;

        min-width: 180px;

        padding: 11px 12px;
    }


    .floating-icon {
        width: 31px;
        height: 31px;
    }

}

/* =========================
   FEATURED PROFILES
========================= */

.featured-profiles {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(120, 15, 35, 0.16),
            transparent 45%
        ),
        #08090d;
    overflow: hidden;
}

.featured-profiles-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.profiles-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #d7193f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.profiles-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
}

.profiles-heading h2 span {
    color: #d7193f;
}

.profiles-heading p {
    max-width: 680px;
    margin: 20px auto 0;
    color: #a9abb3;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   PROFILE GRID
========================= */

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


/* =========================
   PROFILE CARD
========================= */

.profile-card {
    position: relative;
    background: rgba(18, 19, 25, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    overflow: hidden;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 25, 63, 0.45);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(215, 25, 63, 0.08);
}


/* =========================
   PROFILE IMAGE
========================= */

.profile-image {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #111217;
}

.profile-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 6, 9, 0.55),
        transparent 45%
    );
    pointer-events: none;
}

.profile-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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


/* =========================
   CATEGORY BADGE
========================= */

.profile-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;

    padding: 7px 13px;
    border-radius: 30px;

    background: rgba(7, 8, 11, 0.78);
    border: 1px solid rgba(215, 25, 63, 0.4);

    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    backdrop-filter: blur(10px);
}


/* =========================
   PROFILE CONTENT
========================= */

.profile-content {
    padding: 23px 22px 25px;
}

.profile-content h3 {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.profile-location {
    display: block;
    margin-bottom: 13px;
    color: #d7193f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.profile-content p {
    min-height: 48px;
    margin: 0 0 20px;
    color: #9699a2;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   PROFILE LINK
========================= */

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: color 0.3s ease;
}

.profile-link span {
    color: #d7193f;
    font-size: 18px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.profile-link:hover {
    color: #d7193f;
}

.profile-link:hover span {
    transform: translateX(5px);
}


/* =========================
   EXPLORE ALL BUTTON
========================= */

.profiles-button-wrap {
    margin-top: 50px;
    text-align: center;
}

.profiles-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-width: 190px;
    padding: 14px 24px;

    border: 1px solid rgba(215, 25, 63, 0.55);
    border-radius: 8px;

    background: rgba(215, 25, 63, 0.08);

    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.profiles-all-button span {
    color: #d7193f;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.profiles-all-button:hover {
    background: #d7193f;
    border-color: #d7193f;
    transform: translateY(-2px);
}

.profiles-all-button:hover span {
    color: #ffffff;
    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .profile-image {
        height: 330px;
    }

}


@media (max-width: 650px) {

    .featured-profiles {
        padding: 75px 16px;
    }

    .profiles-heading {
        margin-bottom: 38px;
    }

    .profiles-heading h2 {
        font-size: 31px;
    }

    .profiles-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 2 columns on mobile */
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .profile-image {
        height: 250px;
    }

    .profile-content {
        padding: 16px 14px 18px;
    }

    .profile-content h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .profile-location {
        font-size: 10px;
        margin-bottom: 9px;
    }

    .profile-content p {
        min-height: auto;
        margin-bottom: 14px;
        font-size: 11px;
        line-height: 1.55;
    }

    .profile-link {
        font-size: 11px;
        gap: 6px;
    }

    .profile-link span {
        font-size: 15px;
    }

    .profile-category {
        top: 10px;
        left: 10px;
        padding: 5px 8px;
        font-size: 9px;
    }

    .profiles-button-wrap {
        margin-top: 35px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .profile-image {
        height: 350px;
    }

}

/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
    position: relative;
    width: 100%;
    padding: 105px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(130, 15, 40, 0.14),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(30, 40, 75, 0.16),
            transparent 40%
        ),
        #07080b;
}

.how-it-works-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.how-heading {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.how-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;
    padding: 7px 14px;

    border: 1px solid rgba(215, 25, 63, 0.35);
    border-radius: 30px;

    background: rgba(215, 25, 63, 0.07);

    color: #d7193f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.how-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d7193f;
    box-shadow: 0 0 10px rgba(215, 25, 63, 0.8);
}

.how-heading h2 {
    margin: 0;

    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.15;
    font-weight: 700;
}

.how-heading h2 span {
    color: #d7193f;
}

.how-heading p {
    max-width: 670px;
    margin: 20px auto 0;

    color: #989ba5;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   STEPS GRID
========================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================
   STEP CARD
========================= */

.step-card {
    position: relative;
    min-height: 390px;
    padding: 30px 25px 26px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(24, 25, 32, 0.95),
            rgba(10, 11, 15, 0.96)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.step-card::after {
    content: "";

    position: absolute;
    right: -50px;
    bottom: -70px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.07);

    filter: blur(5px);
}

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

    border-color: rgba(215, 25, 63, 0.42);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(215, 25, 63, 0.08);
}


/* =========================
   LARGE STEP NUMBER
========================= */

.step-number {
    position: absolute;
    top: 8px;
    right: 15px;

    color: rgba(215, 25, 63, 0.07);

    font-size: 105px;
    line-height: 1;
    font-weight: 800;

    pointer-events: none;
}


/* =========================
   ICON
========================= */

.step-icon {
    position: relative;
    z-index: 2;

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

    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #c9143a,
            #8d0d2b
        );

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 10px 25px rgba(215, 25, 63, 0.20);

    color: #ffffff;
    font-size: 25px;
}

.step-icon span {
    position: relative;
    top: -1px;
}


/* =========================
   STEP TAG
========================= */

.step-tag {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-bottom: 13px;

    color: #d7193f;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}


/* =========================
   CONTENT
========================= */

.step-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: #ffffff;

    font-size: 19px;
    line-height: 1.35;
    font-weight: 600;
}

.step-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 22px;

    color: #92959e;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   STEP LINK
========================= */

.step-link {
    position: relative;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    transition: color 0.3s ease;
}

.step-link span {
    color: #d7193f;
    font-size: 17px;

    transition: transform 0.3s ease;
}

.step-link:hover {
    color: #d7193f;
}

.step-link:hover span {
    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-card {
        min-height: 360px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .how-it-works {
        padding: 75px 16px;
    }

    .how-heading {
        margin-bottom: 40px;
    }

    .how-heading h2 {
        font-size: 31px;
    }

    .how-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .step-card {
        min-height: 330px;
        padding: 22px 16px 20px;
        border-radius: 15px;
    }

    .step-number {
        top: 8px;
        right: 8px;
        font-size: 70px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 17px;
        border-radius: 11px;
        font-size: 20px;
    }

    .step-tag {
        margin-bottom: 9px;
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .step-card h3 {
        font-size: 15px;
        margin-bottom: 9px;
    }

    .step-card p {
        margin-bottom: 16px;
        font-size: 11px;
        line-height: 1.6;
    }

    .step-link {
        font-size: 10px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .steps-grid {
        gap: 10px;
    }

    .step-card {
        padding: 20px 13px 18px;
    }

    .step-card h3 {
        font-size: 14px;
    }

    .step-card p {
        font-size: 10.5px;
    }

}

/* =========================
   AAKSHI ARYA - OUR STORY
========================= */

.agency-story {
    position: relative;
    width: 100%;
    padding: 105px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 30%,
            rgba(125, 12, 38, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(30, 40, 70, 0.14),
            transparent 35%
        ),
        #07080b;
}

.agency-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(215, 25, 63, 0.35),
            transparent
        );
}

.agency-story-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 75px;
}


/* =========================
   LEFT VISUAL
========================= */

.story-visual {
    position: relative;

    min-height: 650px;
    width: 100%;
}


/* MAIN IMAGE */

.story-main-image {
    position: absolute;

    top: 35px;
    left: 25px;

    width: 420px;
    height: 550px;

    overflow: hidden;

    border: 1px solid rgba(215, 25, 63, 0.65);
    border-radius: 22px;

    transform: rotate(-2deg);

    background: #101116;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(215, 25, 63, 0.08);
}

.story-main-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 6, 9, 0.6),
            transparent 48%
        );

    pointer-events: none;
}

.story-main-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* IMAGE BADGE */

.story-image-badge {
    position: absolute;

    top: 25px;
    left: 25px;

    z-index: 3;

    padding: 12px 17px;

    border: 1px solid rgba(215, 25, 63, 0.35);
    border-radius: 10px;

    background: rgba(7, 8, 11, 0.78);

    backdrop-filter: blur(12px);

    color: #ffffff;
}

.story-image-badge strong {
    display: block;

    color: #ffffff;

    font-size: 23px;
    line-height: 1;
}

.story-image-badge span {
    display: block;

    margin-top: 5px;

    color: #999ca5;

    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* SMALL IMAGES */

.story-small-image {
    position: absolute;

    z-index: 4;

    overflow: hidden;

    border: 2px solid rgba(215, 25, 63, 0.45);
    border-radius: 18px;

    background: #111217;

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

.story-small-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.story-small-one {
    top: 100px;
    right: 5px;

    width: 165px;
    height: 210px;

    transform: rotate(5deg);
}

.story-small-two {
    right: 25px;
    bottom: 50px;

    width: 170px;
    height: 215px;

    transform: rotate(-4deg);
}


/* ROUND BADGE */

.story-round-badge {
    position: absolute;

    z-index: 5;

    right: 135px;
    top: 295px;

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

    width: 100px;
    height: 100px;

    border: 1px solid rgba(215, 25, 63, 0.7);
    border-radius: 50%;

    background: rgba(10, 11, 15, 0.92);

    box-shadow:
        0 0 30px rgba(215, 25, 63, 0.16);

    text-align: center;
}

.story-round-badge span {
    margin-bottom: 3px;

    color: #d7193f;

    font-size: 22px;
}

.story-round-badge small {
    color: #999ca5;

    font-size: 7px;
    letter-spacing: 1.5px;
}

.story-round-badge strong {
    margin-top: 3px;

    color: #ffffff;

    font-size: 9px;
    letter-spacing: 1px;
}


/* QUOTE */

.story-quote {
    position: absolute;

    z-index: 6;

    left: 0;
    bottom: 10px;

    padding: 18px 22px;

    border: 1px solid rgba(215, 25, 63, 0.35);
    border-radius: 13px;

    background: rgba(10, 11, 15, 0.9);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}

.story-quote span {
    color: #d7193f;

    font-family: Georgia, serif;
    font-size: 35px;

    line-height: 15px;
}

.story-quote p {
    margin: 7px 0 0;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   RIGHT CONTENT
========================= */

.story-content {
    width: 100%;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 17px;
    padding: 7px 13px;

    border: 1px solid rgba(215, 25, 63, 0.4);
    border-radius: 30px;

    background: rgba(215, 25, 63, 0.06);

    color: #d7193f;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.story-label i {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d7193f;

    box-shadow:
        0 0 10px rgba(215, 25, 63, 0.8);
}


/* HEADING */

.story-content h2 {
    max-width: 650px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 700;
}

.story-content h2 span {
    display: block;

    color: #d7193f;
}


/* TEXT */

.story-intro {
    max-width: 650px;

    margin: 24px 0 12px;

    color: #d1d2d7;

    font-size: 17px;
    line-height: 1.7;
}

.story-description {
    max-width: 650px;

    margin: 0 0 27px;

    color: #8f929c;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================
   FEATURE ROW
========================= */

.story-feature {
    position: relative;

    display: grid;
    grid-template-columns: 45px 48px 1fr 35px;
    align-items: center;
    gap: 14px;

    min-height: 82px;

    margin-bottom: 10px;
    padding: 13px 14px 13px 12px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 13px;

    background:
        linear-gradient(
            100deg,
            rgba(25, 25, 32, 0.85),
            rgba(12, 13, 18, 0.8)
        );

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.story-feature:hover {
    transform: translateX(5px);

    border-color: rgba(215, 25, 63, 0.4);

    background:
        linear-gradient(
            100deg,
            rgba(38, 19, 27, 0.9),
            rgba(14, 14, 19, 0.9)
        );
}


/* NUMBER */

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.1);

    border: 1px solid rgba(215, 25, 63, 0.3);

    color: #d7193f;

    font-size: 11px;
    font-weight: 700;
}


/* ICON */

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 11px;

    background:
        linear-gradient(
            145deg,
            #c9153d,
            #7f0d29
        );

    color: #ffffff;

    font-size: 20px;

    box-shadow:
        0 8px 22px rgba(215, 25, 63, 0.18);
}


/* TEXT */

.feature-text h3 {
    margin: 0 0 4px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;
}

.feature-text p {
    margin: 0;

    color: #888b95;

    font-size: 11px;
    line-height: 1.5;
}


/* ARROW */

.feature-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border: 1px solid rgba(215, 25, 63, 0.35);
    border-radius: 50%;

    color: #d7193f;

    font-size: 16px;
    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.feature-arrow:hover {
    background: #d7193f;

    color: #ffffff;

    transform: translateX(3px);
}


/* =========================
   BOTTOM
========================= */

.story-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 27px;
}

.story-stats {
    display: flex;
    align-items: center;
    gap: 25px;
}

.story-stat {
    padding-right: 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.story-stat:last-child {
    padding-right: 0;
    border-right: none;
}

.story-stat strong {
    display: block;

    color: #ffffff;

    font-size: 22px;
    line-height: 1;
}

.story-stat span {
    display: block;

    margin-top: 5px;

    color: #777b85;

    font-size: 9px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


/* BUTTON */

.story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 14px 22px;

    border-radius: 8px;

    background: #d7193f;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(215, 25, 63, 0.18);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.story-button span {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.story-button:hover {
    background: #b91235;

    transform: translateY(-2px);
}

.story-button:hover span {
    transform: translateX(4px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .agency-story-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .story-visual {
        max-width: 650px;

        margin: 0 auto;
    }

    .story-content {
        max-width: 700px;

        margin: 0 auto;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .agency-story {
        padding: 75px 16px;
    }

    .agency-story-container {
        gap: 35px;
    }

    .story-visual {
        min-height: 500px;
    }

    .story-main-image {
        top: 20px;
        left: 12px;

        width: calc(100% - 95px);
        height: 415px;

        border-radius: 17px;
    }

    .story-image-badge {
        top: 15px;
        left: 15px;

        padding: 9px 12px;
    }

    .story-image-badge strong {
        font-size: 18px;
    }

    .story-image-badge span {
        font-size: 7px;
    }

    .story-small-one {
        top: 70px;
        right: 0;

        width: 115px;
        height: 150px;

        border-radius: 13px;
    }

    .story-small-two {
        right: 5px;
        bottom: 45px;

        width: 120px;
        height: 155px;

        border-radius: 13px;
    }

    .story-round-badge {
        right: 83px;
        top: 210px;

        width: 75px;
        height: 75px;
    }

    .story-round-badge span {
        font-size: 16px;
    }

    .story-round-badge small {
        font-size: 6px;
    }

    .story-round-badge strong {
        font-size: 7px;
    }

    .story-quote {
        left: 0;
        bottom: 0;

        padding: 13px 16px;
    }

    .story-quote span {
        font-size: 27px;
    }

    .story-quote p {
        font-size: 10px;
    }


    /* CONTENT */

    .story-label {
        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .story-content h2 {
        font-size: 31px;
    }

    .story-intro {
        margin-top: 18px;

        font-size: 14px;
        line-height: 1.7;
    }

    .story-description {
        font-size: 12px;
        line-height: 1.7;
    }


    /* FEATURES */

    .story-feature {
        grid-template-columns: 32px 38px 1fr 28px;

        gap: 9px;

        min-height: 76px;

        padding: 10px 9px;
    }

    .feature-number {
        width: 32px;
        height: 32px;

        font-size: 9px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;

        border-radius: 9px;

        font-size: 16px;
    }

    .feature-text h3 {
        font-size: 12px;
    }

    .feature-text p {
        font-size: 9px;
        line-height: 1.45;
    }

    .feature-arrow {
        width: 27px;
        height: 27px;

        font-size: 13px;
    }


    /* BOTTOM */

    .story-bottom {
        flex-direction: column;
        align-items: stretch;

        margin-top: 25px;
    }

    .story-stats {
        justify-content: space-between;

        gap: 10px;
    }

    .story-stat {
        padding-right: 10px;
    }

    .story-stat strong {
        font-size: 18px;
    }

    .story-stat span {
        font-size: 7px;
    }

    .story-button {
        width: 100%;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .story-visual {
        min-height: 460px;
    }

    .story-main-image {
        height: 385px;
    }

    .story-small-one {
        width: 100px;
        height: 135px;
    }

    .story-small-two {
        width: 105px;
        height: 140px;
    }

    .story-round-badge {
        right: 70px;
    }

    .story-feature {
        grid-template-columns: 29px 35px 1fr 25px;
        gap: 7px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
    }

}

/* =========================
   WHY CHOOSE US
========================= */

.why-choose {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(215, 25, 63, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(25, 35, 65, 0.16),
            transparent 38%
        ),
        #090a0e;
}

.why-choose-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.why-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;
    padding: 7px 14px;

    border: 1px solid rgba(215, 25, 63, 0.35);
    border-radius: 30px;

    background: rgba(215, 25, 63, 0.06);

    color: #d7193f;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.why-label::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d7193f;

    box-shadow:
        0 0 10px rgba(215, 25, 63, 0.8);
}

.why-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.15;
    font-weight: 700;
}

.why-heading h2 span {
    color: #d7193f;
}

.why-heading p {
    max-width: 680px;

    margin: 19px auto 0;

    color: #9497a1;

    font-size: 15px;
    line-height: 1.8;
}


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

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


/* =========================
   CARD
========================= */

.why-card {
    position: relative;

    min-height: 245px;

    padding: 28px 27px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(22, 23, 30, 0.96),
            rgba(10, 11, 15, 0.96)
        );

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 17px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.why-card::before {
    content: "";

    position: absolute;

    right: -55px;
    bottom: -65px;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.055);

    filter: blur(4px);

    transition: background 0.35s ease;
}

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

    border-color: rgba(215, 25, 63, 0.38);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(215, 25, 63, 0.07);
}

.why-card:hover::before {
    background: rgba(215, 25, 63, 0.10);
}


/* =========================
   ICON
========================= */

.why-icon {
    position: relative;
    z-index: 2;

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

    width: 50px;
    height: 50px;

    margin-bottom: 25px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #c9143b,
            #810d29
        );

    border: 1px solid rgba(255, 255, 255, 0.1);

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 10px 25px rgba(215, 25, 63, 0.16);
}


/* =========================
   NUMBER
========================= */

.why-number {
    position: absolute;

    top: 15px;
    right: 18px;

    color: rgba(215, 25, 63, 0.09);

    font-size: 64px;
    line-height: 1;

    font-weight: 800;

    pointer-events: none;
}


/* =========================
   CONTENT
========================= */

.why-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.why-card p {
    position: relative;
    z-index: 2;

    max-width: 310px;

    margin: 0;

    color: #898c96;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .why-choose {
        padding: 75px 16px;
    }

    .why-heading {
        margin-bottom: 40px;
    }

    .why-heading h2 {
        font-size: 31px;
    }

    .why-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .why-card {
        min-height: 245px;

        padding: 21px 16px;

        border-radius: 14px;
    }

    .why-icon {
        width: 43px;
        height: 43px;

        margin-bottom: 19px;

        border-radius: 10px;

        font-size: 18px;
    }

    .why-number {
        top: 10px;
        right: 9px;

        font-size: 52px;
    }

    .why-card h3 {
        font-size: 14px;

        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 10.5px;
        line-height: 1.6;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .why-grid {
        gap: 10px;
    }

    .why-card {
        padding: 19px 13px;
        min-height: 235px;
    }

    .why-card h3 {
        font-size: 13px;
    }

    .why-card p {
        font-size: 10px;
    }

}
/* =========================================
   PROFILE VERIFICATION SECTION
========================================= */

.verification-section {
    position: relative;

    width: 100%;

    padding: 100px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(215, 25, 63, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(24, 42, 72, 0.18),
            transparent 32%
        ),
        #08090d;
}


/* =========================================
   CONTAINER
========================================= */

.verification-container {
    position: relative;

    width: min(1180px, 100%);

    min-height: 650px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 50px;

    align-items: center;

    padding: 65px 65px;

    border: 1px solid rgba(255, 255, 255, 0.07);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(19, 21, 28, 0.97),
            rgba(8, 9, 13, 0.98)
        );

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

    overflow: hidden;
}


/* subtle top line */

.verification-container::before {
    content: "";

    position: absolute;

    top: 0;
    left: 65px;

    width: 120px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent
        );
}


/* background glow */

.verification-container::after {
    content: "";

    position: absolute;

    right: -150px;
    bottom: -180px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.05);

    filter: blur(70px);

    pointer-events: none;
}


/* =========================================
   LEFT CONTENT
========================================= */

.verification-content {
    position: relative;

    z-index: 3;
}


.verification-label {
    display: inline-block;

    margin-bottom: 17px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #d7193f;
}


.verification-content h2 {
    max-width: 650px;

    margin: 0 0 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.12;

    color: #ffffff;
}


.verification-content h2 span {
    display: block;

    color: #d7193f;
}


.verification-intro {
    max-width: 650px;

    margin: 0 0 32px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.9;

    color: #aeb2bd;
}


/* =========================================
   VERIFICATION LIST
========================================= */

.verification-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.verification-item {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 17px 19px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.verification-item:hover {
    transform: translateX(5px);

    border-color:
        rgba(215, 25, 63, 0.28);

    background:
        linear-gradient(
            135deg,
            rgba(215, 25, 63, 0.08),
            rgba(255, 255, 255, 0.015)
        );
}


/* =========================================
   NUMBER
========================================= */

.verification-bullet {
    display: flex;

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

    width: 36px;
    height: 36px;

    flex-shrink: 0;

    border-radius: 50%;

    border: 1px solid rgba(215, 25, 63, 0.35);

    background:
        rgba(215, 25, 63, 0.08);

    box-shadow:
        inset 0 0 15px rgba(215, 25, 63, 0.05);
}


.verification-bullet span {
    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #d7193f;
}


/* =========================================
   ITEM CONTENT
========================================= */

.verification-item-content h3 {
    margin: 2px 0 5px;

    font-family: Arial, sans-serif;

    font-size: 15px;

    font-weight: 600;

    color: #ffffff;
}


.verification-item-content p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.7;

    color: #9296a2;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.verification-visual {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================
   GLOW
========================================= */

.verification-glow {
    position: absolute;

    width: 290px;
    height: 290px;

    border-radius: 50%;

    background:
        rgba(215, 25, 63, 0.10);

    filter: blur(65px);
}


/* =========================================
   RINGS
========================================= */

.verification-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(215, 25, 63, 0.18);
}


.ring-one {
    width: 350px;
    height: 350px;

    box-shadow:
        0 0 50px rgba(215, 25, 63, 0.05);
}


.ring-two {
    width: 420px;
    height: 420px;

    border-color:
        rgba(255, 255, 255, 0.05);

    border-style: dashed;
}


/* =========================================
   MAIN VERIFICATION CARD
========================================= */

.verification-card {
    position: relative;

    z-index: 4;

    width: 270px;
    height: 320px;

    display: flex;

    flex-direction: column;

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

    text-align: center;

    border: 1px solid rgba(215, 25, 63, 0.28);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(31, 24, 30, 0.98),
            rgba(12, 13, 18, 0.98)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


/* =========================================
   CHECK
========================================= */

.verification-check {
    display: flex;

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

    width: 54px;
    height: 54px;

    margin-bottom: 18px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d7193f,
            #7e1029
        );

    box-shadow:
        0 0 30px rgba(215, 25, 63, 0.25);
}


.verification-check i {
    font-size: 19px;

    color: #ffffff;
}


.verification-small {
    font-family: Arial, sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #888c97;
}


.verification-title {
    margin-top: 9px;

    font-family: Arial, sans-serif;

    font-size: 31px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #ffffff;
}


.verification-line {
    width: 55px;
    height: 1px;

    margin: 17px 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d7193f,
            transparent
        );
}


.verification-brand {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    font-weight: 700;

    color: #d7193f;
}


.verification-status {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 14px;

    padding: 7px 11px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.04);

    font-family: Arial, sans-serif;

    font-size: 9px;

    color: #aeb2bd;
}


.verification-status i {
    font-size: 10px;

    color: #d7193f;
}


/* =========================================
   FLOATING BADGES
========================================= */

.verification-badge {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 10px 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    background:
        rgba(17, 18, 24, 0.92);

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

    backdrop-filter: blur(10px);

    font-family: Arial, sans-serif;

    font-size: 10px;

    font-weight: 600;

    color: #ffffff;
}


.verification-badge i {
    color: #d7193f;

    font-size: 10px;
}


.badge-top {
    top: 65px;
    right: 10px;
}


.badge-bottom {
    bottom: 65px;
    left: 5px;
}


/* =========================================
   BOTTOM HIGHLIGHTS
========================================= */

.verification-highlights {
    width: min(1050px, 100%);

    margin: 35px auto 0;

    display: grid;

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

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 18px;

    background:
        rgba(15, 16, 21, 0.85);

    overflow: hidden;
}


.verification-highlight {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 19px 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.06);
}


.verification-highlight:last-child {
    border-right: none;
}


.highlight-icon {
    display: flex;

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

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 10px;

    background:
        rgba(215, 25, 63, 0.08);

    border: 1px solid rgba(215, 25, 63, 0.16);
}


.highlight-icon i {
    font-size: 13px;

    color: #d7193f;
}


.verification-highlight strong {
    display: block;

    margin-bottom: 3px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    color: #ffffff;
}


.verification-highlight span {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 9px;

    color: #777b87;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .verification-container {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 55px 45px;
    }


    .verification-content {
        max-width: 700px;

        margin: 0 auto;
    }


    .verification-visual {
        min-height: 430px;
    }


    .verification-highlights {
        grid-template-columns: repeat(2, 1fr);
    }


    .verification-highlight:nth-child(2) {
        border-right: none;
    }


    .verification-highlight:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .verification-section {
        padding: 65px 15px;
    }


    .verification-container {
        width: 100%;

        min-height: auto;

        padding: 38px 22px;

        border-radius: 20px;

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .verification-container::before {
        left: 22px;

        width: 80px;
    }


    .verification-label {
        margin-bottom: 13px;

        font-size: 9px;

        letter-spacing: 2.2px;
    }


    .verification-content h2 {
        margin-bottom: 16px;

        font-size: 30px;

        line-height: 1.15;
    }


    .verification-content h2 span {
        display: inline;
    }


    .verification-intro {
        margin-bottom: 24px;

        font-size: 12px;

        line-height: 1.8;
    }


    .verification-list {
        gap: 9px;
    }


    .verification-item {
        gap: 11px;

        padding: 13px 12px;

        border-radius: 12px;
    }


    .verification-bullet {
        width: 31px;
        height: 31px;
    }


    .verification-bullet span {
        font-size: 9px;
    }


    .verification-item-content h3 {
        font-size: 13px;
    }


    .verification-item-content p {
        font-size: 10px;

        line-height: 1.6;
    }


    .verification-visual {
        min-height: 350px;

        margin-top: 5px;
    }


    .verification-card {
        width: 220px;
        height: 265px;

        border-radius: 18px;
    }


    .verification-check {
        width: 44px;
        height: 44px;

        margin-bottom: 13px;
    }


    .verification-check i {
        font-size: 16px;
    }


    .verification-small {
        font-size: 7px;

        letter-spacing: 2px;
    }


    .verification-title {
        font-size: 25px;
    }


    .verification-line {
        margin: 13px 0;
    }


    .verification-brand {
        font-size: 16px;
    }


    .verification-status {
        font-size: 8px;

        margin-top: 11px;
    }


    .ring-one {
        width: 290px;
        height: 290px;
    }


    .ring-two {
        width: 330px;
        height: 330px;
    }


    .badge-top {
        top: 20px;
        right: 0;
    }


    .badge-bottom {
        bottom: 20px;
        left: 0;
    }


    .verification-badge {
        padding: 8px 10px;

        font-size: 8px;
    }


    .verification-highlights {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 20px;

        border-radius: 15px;
    }


    .verification-highlight {
        gap: 8px;

        padding: 14px 10px;
    }


    .verification-highlight:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }


    .verification-highlight:nth-child(even) {
        border-right: none;
    }


    .verification-highlight:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }


    .verification-highlight:nth-child(n + 3) {
        border-bottom: none;
    }


    .highlight-icon {
        width: 31px;
        height: 31px;

        border-radius: 8px;
    }


    .highlight-icon i {
        font-size: 11px;
    }


    .verification-highlight strong {
        font-size: 9px;
    }


    .verification-highlight span {
        font-size: 7px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .verification-container {
        padding: 32px 17px;
    }


    .verification-content h2 {
        font-size: 27px;
    }


    .verification-item-content p {
        font-size: 9px;
    }


    .verification-card {
        width: 205px;
        height: 250px;
    }


    .ring-one {
        width: 270px;
        height: 270px;
    }


    .ring-two {
        width: 305px;
        height: 305px;
    }

}
/* =========================
   OUR PROCESS
========================= */

.process-section {
    position: relative;
    width: 100%;
    padding: 110px 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 12% 25%,
            rgba(215, 25, 63, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 88% 70%,
            rgba(35, 45, 75, 0.18),
            transparent 34%
        ),
        #07080b;
}

.process-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            115deg,
            transparent 48%,
            rgba(255, 255, 255, 0.018) 50%,
            transparent 52%
        );

    background-size: 120px 120px;

    opacity: 0.35;

    pointer-events: none;
}

.process-container {
    position: relative;
    z-index: 2;

    width: min(1180px, 100%);
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.process-heading {
    max-width: 720px;
    margin: 0 auto 75px;

    text-align: center;
}

.process-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding: 7px 15px;

    border: 1px solid rgba(215, 25, 63, 0.38);
    border-radius: 30px;

    background: rgba(215, 25, 63, 0.07);

    color: #d7193f;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.process-label::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #d7193f;

    box-shadow:
        0 0 12px rgba(215, 25, 63, 0.8);
}

.process-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 700;
}

.process-heading h2 span {
    color: #d7193f;
}

.process-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #90939d;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   TIMELINE
========================= */

.process-timeline {
    position: relative;
}

.process-timeline::before {
    content: "";

    position: absolute;

    top: 30px;
    bottom: 30px;
    left: 50%;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(215, 25, 63, 0.65) 12%,
            rgba(215, 25, 63, 0.25) 50%,
            rgba(215, 25, 63, 0.65) 88%,
            transparent
        );

    transform: translateX(-50%);
}


/* =========================
   ITEM
========================= */

.process-item {
    position: relative;

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

    align-items: center;

    min-height: 350px;
}

.process-left .process-visual {
    order: 1;
}

.process-left .process-card {
    order: 2;
}

.process-right .process-visual {
    order: 2;
}

.process-right .process-card {
    order: 1;
}


/* =========================
   VISUAL
========================= */

.process-visual {
    position: relative;

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

    min-height: 320px;
}

.process-orbit {
    position: absolute;

    width: 235px;
    height: 235px;

    border: 1px solid rgba(215, 25, 63, 0.20);
    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215, 25, 63, 0.13),
            transparent 65%
        );

    box-shadow:
        0 0 75px rgba(215, 25, 63, 0.08);
}

.process-orbit::before {
    content: "";

    position: absolute;
    inset: 24px;

    border: 1px dashed rgba(215, 25, 63, 0.14);
    border-radius: 50%;
}


/* NUMBER */

.process-number-wrap {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-number {
    color: rgba(215, 25, 63, 0.78);

    font-size: 145px;
    line-height: 0.9;

    font-weight: 800;

    letter-spacing: -8px;

    text-shadow:
        0 0 45px rgba(215, 25, 63, 0.15);
}

.process-keyword {
    margin-top: 15px;

    padding: 7px 17px;

    border: 1px solid rgba(215, 25, 63, 0.42);
    border-radius: 30px;

    background: rgba(7, 8, 11, 0.9);

    color: #d7193f;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;

    backdrop-filter: blur(10px);
}


/* DOT */

.process-dot {
    position: absolute;

    z-index: 6;

    right: -6px;

    width: 13px;
    height: 13px;

    border: 3px solid #07080b;
    border-radius: 50%;

    background: #d7193f;

    box-shadow:
        0 0 0 4px rgba(215, 25, 63, 0.14),
        0 0 20px rgba(215, 25, 63, 0.7);
}

.process-right .process-dot {
    left: -6px;
    right: auto;
}


/* DECORATIONS */

.process-decoration {
    position: absolute;

    color: rgba(215, 25, 63, 0.65);

    font-size: 22px;

    animation: processFloat 4s ease-in-out infinite;
}

.decor-one {
    top: 65px;
    left: 27%;
}

.decor-two {
    top: 70px;
    right: 25%;

    animation-delay: 1s;
}

.decor-three {
    bottom: 60px;
    left: 25%;

    animation-delay: 2s;
}

@keyframes processFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }

}


/* =========================
   CARD
========================= */

.process-card {
    position: relative;
    z-index: 4;

    width: calc(100% - 28px);

    padding: 30px 31px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(23, 24, 31, 0.97),
            rgba(10, 11, 15, 0.97)
        );

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.process-card-line {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d7193f,
            transparent 75%
        );

    opacity: 0.8;
}

.process-right .process-card-line {
    background:
        linear-gradient(
            90deg,
            transparent,
            #d7193f 75%
        );
}

.process-left .process-card {
    margin-left: 5px;
}

.process-right .process-card {
    margin-right: 5px;
    margin-left: auto;
}

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

    border-color: rgba(215, 25, 63, 0.4);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.48),
        0 0 35px rgba(215, 25, 63, 0.07);
}


/* CARD TOP */

.process-card-top {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 22px;
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #ca153d,
            #810c28
        );

    color: #ffffff;

    font-size: 21px;

    box-shadow:
        0 10px 27px rgba(215, 25, 63, 0.2);
}

.process-step {
    display: block;

    color: #d7193f;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.process-small-title {
    display: block;

    margin-top: 4px;

    color: #666a75;

    font-size: 8px;
    letter-spacing: 1.4px;
}


/* CARD TEXT */

.process-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 600;
}

.process-card p {
    max-width: 520px;

    margin: 0 0 25px;

    color: #92959f;

    font-size: 13px;
    line-height: 1.8;
}


/* CARD BOTTOM */

.process-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process-info {
    color: #666a74;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.process-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}

.process-link span {
    color: #d7193f;

    font-size: 17px;

    transition: transform 0.3s ease;
}

.process-link:hover {
    color: #d7193f;
}

.process-link:hover span {
    transform: translateX(5px);
}


/* =========================
   BOTTOM BAR
========================= */

.process-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 50px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;

    background: rgba(15, 16, 21, 0.75);

    overflow: hidden;
}

.process-bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 18px 15px;

    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.process-bottom-item:last-child {
    border-right: none;
}

.bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.1);

    color: #d7193f;

    font-size: 14px;
}

.process-bottom-item strong {
    display: block;

    color: #ffffff;

    font-size: 11px;
}

.process-bottom-item small {
    display: block;

    margin-top: 2px;

    color: #676b75;

    font-size: 8px;
    letter-spacing: 0.7px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .process-item {
        min-height: 320px;
    }

    .process-number {
        font-size: 115px;
    }

    .process-orbit {
        width: 200px;
        height: 200px;
    }

    .process-card {
        width: calc(100% - 20px);
        padding: 25px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .process-section {
        padding: 75px 16px;
    }

    .process-heading {
        margin-bottom: 55px;
    }

    .process-heading h2 {
        font-size: 31px;
    }

    .process-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* TIMELINE */

    .process-timeline::before {
        left: 19px;

        top: 20px;
        bottom: 20px;

        transform: none;
    }

    .process-item {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        min-height: auto;

        margin-bottom: 30px;

        padding-left: 43px;
    }

    .process-left .process-visual,
    .process-right .process-visual {
        order: 1;
    }

    .process-left .process-card,
    .process-right .process-card {
        order: 2;
    }


    /* VISUAL */

    .process-visual {
        justify-content: flex-start;

        min-height: 95px;
    }

    .process-orbit {
        left: -22px;

        width: 82px;
        height: 82px;
    }

    .process-orbit::before {
        inset: 10px;
    }

    .process-number-wrap {
        align-items: flex-start;
    }

    .process-number {
        font-size: 62px;

        letter-spacing: -3px;
    }

    .process-keyword {
        margin-top: 4px;
        margin-left: 4px;

        padding: 5px 10px;

        font-size: 7px;
        letter-spacing: 1.3px;
    }

    .process-dot,
    .process-right .process-dot {
        left: -30px;
        right: auto;

        width: 11px;
        height: 11px;
    }

    .process-decoration {
        display: none;
    }


    /* CARD */

    .process-card,
    .process-left .process-card,
    .process-right .process-card {
        width: 100%;

        margin: 0;

        padding: 21px 18px;

        border-radius: 15px;
    }

    .process-card-top {
        gap: 10px;

        margin-bottom: 17px;
    }

    .process-icon {
        width: 43px;
        height: 43px;

        border-radius: 10px;

        font-size: 18px;
    }

    .process-step {
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .process-small-title {
        font-size: 7px;
    }

    .process-card h3 {
        font-size: 17px;
    }

    .process-card p {
        margin-bottom: 18px;

        font-size: 11px;
        line-height: 1.65;
    }

    .process-card-bottom {
        padding-top: 14px;
    }

    .process-info {
        font-size: 8px;
    }

    .process-link {
        font-size: 10px;
    }


    /* BOTTOM */

    .process-bottom {
        grid-template-columns: repeat(2, 1fr);

        margin-top: 15px;
    }

    .process-bottom-item {
        justify-content: flex-start;

        padding: 13px 12px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .process-bottom-item:nth-child(2) {
        border-right: none;
    }

    .process-bottom-item:nth-child(3),
    .process-bottom-item:nth-child(4) {
        border-bottom: none;
    }

    .bottom-icon {
        width: 30px;
        height: 30px;

        font-size: 12px;
    }

    .process-bottom-item strong {
        font-size: 10px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .process-item {
        padding-left: 39px;
    }

    .process-timeline::before {
        left: 17px;
    }

    .process-dot,
    .process-right .process-dot {
        left: -28px;
    }

    .process-number {
        font-size: 56px;
    }

    .process-card {
        padding: 19px 15px;
    }

    .process-card h3 {
        font-size: 15px;
    }

    .process-card p {
        font-size: 10.5px;
    }

}
/* ================================
   CONTENT SECTION
================================ */

.content-section {
    width: 100%;
    padding: 90px 20px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(215, 25, 63, 0.08),
            transparent 32%
        ),
        #08090d;
}

.content-container {
    position: relative;

    width: min(1000px, 100%);
    margin: 0 auto;

    padding: 55px 60px;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 21, 28, 0.96),
            rgba(10, 11, 15, 0.97)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

/* Top red accent */
.content-container::after {
    content: "";
    position: absolute;

    top: 0;
    left: 60px;

    width: 100px;
    height: 2px;

    background: linear-gradient(
        90deg,
        #d7193f,
        transparent
    );
}

/* Glow */
.content-container::before {
    content: "";

    position: absolute;

    top: -140px;
    right: -100px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.07);

    filter: blur(45px);

    pointer-events: none;
}

/* Keep content above effects */
.content-container > * {
    position: relative;
    z-index: 2;
}


/* ================================
   LABEL
================================ */

.content-label {
    display: inline-block;

    margin-bottom: 22px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #d7193f;

    text-transform: uppercase;
}


/* ================================
   HEADINGS
================================ */

.content-container h2 {
    margin: 0 0 20px;

    font-family: Arial, sans-serif;

    font-size: 32px;
    line-height: 1.25;

    font-weight: 700;

    color: #ffffff;
}

.content-container h3 {
    margin: 30px 0 12px;

    font-family: Arial, sans-serif;

    font-size: 19px;
    line-height: 1.4;

    font-weight: 600;

    color: #f2f2f2;
}


/* ================================
   PARAGRAPHS
================================ */

.content-container p {
    margin: 0 0 20px;

    font-family: Arial, sans-serif;

    font-size: 15px;
    line-height: 1.8;

    color: #b8bbc4;
}

.content-container p:last-child {
    margin-bottom: 0;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .content-section {
        padding: 65px 15px;
    }

    .content-container {
        padding: 32px 24px;
        border-radius: 18px;
    }

    .content-container::after {
        left: 24px;
        width: 70px;
    }

    .content-label {
        font-size: 10px;
        letter-spacing: 1.7px;
        margin-bottom: 17px;
    }

    .content-container h2 {
        font-size: 27px;
        line-height: 1.3;
        margin-bottom: 17px;
    }

    .content-container h3 {
        font-size: 17px;
        line-height: 1.4;
        margin-top: 26px;
        margin-bottom: 10px;
    }

    .content-container p {
        font-size: 12px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
}

/* ================================
   LOCATIONS SECTION
================================ */

.locations-section {
    width: 100%;
    padding: 90px 20px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(215, 25, 63, 0.08),
            transparent 32%
        ),
        #08090d;
}


.locations-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* ================================
   HEADING
================================ */

.locations-heading {
    max-width: 700px;
    margin: 0 auto 45px;

    text-align: center;
}

.locations-label {
    display: inline-block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #d7193f;
}

.locations-heading h2 {
    margin: 0 0 15px;

    font-family: Arial, sans-serif;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;

    color: #ffffff;
}

.locations-heading h2 span {
    color: #d7193f;
}

.locations-heading p {
    max-width: 600px;
    margin: 0 auto;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;

    color: #aeb2bd;
}


/* ================================
   LOCATION GRID
================================ */

.locations-grid {
    display: grid;

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

    gap: 16px;
}


/* ================================
   LOCATION CARD
================================ */

.location-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 105px;

    padding: 22px 20px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 23, 30, 0.96),
            rgba(11, 12, 17, 0.98)
        );

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* Subtle red glow */

.location-card::before {
    content: "";

    position: absolute;

    top: -70px;
    right: -50px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: rgba(215, 25, 63, 0.06);

    filter: blur(30px);

    transition:
        background 0.3s ease;
}


/* Left red line */

.location-card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 2px;
    height: 0;

    background: #d7193f;

    transform: translateY(-50%);

    transition:
        height 0.3s ease;
}


.location-card:hover {
    transform: translateY(-5px);

    border-color: rgba(215, 25, 63, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(27, 18, 24, 0.98),
            rgba(12, 12, 17, 0.98)
        );

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.38),
        0 0 25px rgba(215, 25, 63, 0.07);
}

.location-card:hover::before {
    background: rgba(215, 25, 63, 0.11);
}

.location-card:hover::after {
    height: 45px;
}


/* ================================
   NUMBER
================================ */

.location-number {
    position: relative;

    z-index: 2;

    min-width: 30px;

    margin-right: 12px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    color: #d7193f;
}


/* ================================
   LOCATION NAME
================================ */

.location-name {
    position: relative;

    z-index: 2;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;

    color: #f5f5f5;

    transition:
        color 0.3s ease;
}

.location-card:hover .location-name {
    color: #ffffff;
}


/* ================================
   ARROW
================================ */

.location-arrow {
    position: relative;

    z-index: 2;

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

    width: 32px;
    height: 32px;

    margin-left: auto;

    flex-shrink: 0;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.03);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.location-card:hover .location-arrow {
    background: #d7193f;

    border-color: #d7193f;

    transform: translateX(3px);
}


/* ================================
   VIEW MORE
================================ */

.locations-more-wrap {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}

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

    gap: 12px;

    padding: 13px 24px;

    border: 1px solid rgba(215, 25, 63, 0.55);
    border-radius: 8px;

    background: rgba(215, 25, 63, 0.05);

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.locations-more span {
    font-size: 17px;

    transition:
        transform 0.3s ease;
}

.locations-more:hover {
    background: #d7193f;
    border-color: #d7193f;

    transform: translateY(-2px);
}

.locations-more:hover span {
    transform: translateX(4px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 950px) {

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .locations-section {
        padding: 65px 15px;
    }

    .locations-heading {
        margin-bottom: 30px;
    }

    .locations-heading h2 {
        font-size: 28px;
    }

    .locations-heading p {
        font-size: 12px;
        line-height: 1.75;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .location-card {
        min-height: 82px;

        padding: 15px 12px;

        border-radius: 12px;
    }

    .location-number {
        min-width: 22px;

        margin-right: 6px;

        font-size: 8px;
    }

    .location-name {
        font-size: 12px;
    }

    .location-arrow {
        width: 25px;
        height: 25px;

        font-size: 12px;
    }

    .locations-more-wrap {
        margin-top: 30px;
    }

    .locations-more {
        padding: 12px 19px;

        font-size: 12px;
    }

}

/* ================================
   FAQ SECTION
================================ */

.faq-section {
    width: 100%;

    padding: 90px 20px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(215, 25, 63, 0.07),
            transparent 32%
        ),
        #08090d;
}


.faq-container {
    width: min(1100px, 100%);

    margin: 0 auto;
}


/* ================================
   FAQ HEADING
================================ */

.faq-heading {
    max-width: 680px;

    margin: 0 auto 45px;

    text-align: center;
}


.faq-label {
    display: inline-block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #d7193f;
}


.faq-heading h2 {
    margin: 0 0 15px;

    font-family: Arial, sans-serif;

    font-size: 36px;
    line-height: 1.25;

    font-weight: 700;

    color: #ffffff;
}


.faq-heading h2 span {
    color: #d7193f;
}


.faq-heading p {
    max-width: 600px;

    margin: 0 auto;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.8;

    color: #aeb2bd;
}


/* ================================
   FAQ GRID
================================ */

.faq-grid {
    display: grid;

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

    gap: 16px;
}


/* ================================
   FAQ ITEM
================================ */

.faq-item {
    position: relative;

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            rgba(22,23,30,0.96),
            rgba(11,12,17,0.98)
        );

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.faq-item:hover {
    border-color: rgba(215,25,63,0.35);

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


.faq-item[open] {
    border-color: rgba(215,25,63,0.45);

    box-shadow:
        0 18px 45px rgba(0,0,0,0.30);
}


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

.faq-item summary {
    display: flex;

    align-items: center;

    min-height: 82px;

    padding: 18px 20px;

    cursor: pointer;

    list-style: none;

    user-select: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


/* ================================
   NUMBER
================================ */

.faq-number {
    display: flex;

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

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    margin-right: 13px;

    border: 1px solid rgba(215,25,63,0.28);

    border-radius: 8px;

    background: rgba(215,25,63,0.06);

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.5px;

    color: #d7193f;
}


/* ================================
   QUESTION
================================ */

.faq-question {
    padding-right: 10px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 600;

    color: #f3f3f5;
}


/* ================================
   PLUS ICON
================================ */

.faq-icon {
    display: flex;

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

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    margin-left: auto;

    border: 1px solid rgba(255,255,255,0.10);

    border-radius: 50%;

    font-family: Arial, sans-serif;

    font-size: 18px;
    font-weight: 300;

    color: #ffffff;

    background: rgba(255,255,255,0.03);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}


.faq-item[open] .faq-icon {
    background: #d7193f;

    border-color: #d7193f;

    transform: rotate(45deg);
}


/* ================================
   ANSWER
================================ */

.faq-answer {
    padding: 0 20px 20px 65px;
}


.faq-answer p {
    margin: 0;

    padding-top: 16px;

    border-top: 1px solid rgba(255,255,255,0.06);

    font-family: Arial, sans-serif;

    font-size: 12px;

    line-height: 1.8;

    color: #9ea2ad;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .faq-section {
        padding: 65px 15px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-heading p {
        font-size: 12px;

        line-height: 1.75;
    }


    .faq-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .faq-item {
        border-radius: 12px;
    }


    .faq-item summary {
        min-height: 70px;

        padding: 14px 13px;
    }


    .faq-number {
        width: 28px;
        height: 28px;

        margin-right: 9px;

        border-radius: 7px;

        font-size: 8px;
    }


    .faq-question {
        font-size: 12px;
    }


    .faq-icon {
        width: 27px;
        height: 27px;

        font-size: 16px;
    }


    .faq-answer {
        padding: 0 13px 16px 50px;
    }


    .faq-answer p {
        padding-top: 13px;

        font-size: 11px;

        line-height: 1.75;
    }

}



/* ================================
   COMPACT CTA
================================ */

.compact-cta {
    position: relative;

    width: 100%;

    min-height: 180px;

    overflow: hidden;

    background: #08090d;
}


/* ================================
   BACKGROUND IMAGE
================================ */

.compact-cta-image {
    position: absolute;

    inset: 0;

    z-index: 1;
}

.compact-cta-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ================================
   OVERLAY
================================ */

.compact-cta-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(5, 6, 10, 0.88) 0%,
            rgba(75, 7, 25, 0.70) 48%,
            rgba(80, 5, 25, 0.55) 100%
        );
}


/* ================================
   CONTAINER
================================ */

.compact-cta-container {
    position: relative;

    z-index: 3;

    width: min(1050px, calc(100% - 40px));

    min-height: 180px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 35px;
}


/* ================================
   CONTENT
================================ */

.compact-cta-content {
    max-width: 700px;
}

.compact-cta-label {
    display: block;

    margin-bottom: 6px;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #e01a45;
}


.compact-cta-content h2 {
    margin: 0 0 7px;

    font-family: Arial, sans-serif;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}

.compact-cta-content h2 span {
    color: #e01a45;
}


.compact-cta-content p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 11px;

    line-height: 1.6;

    color: #d4d5da;
}


/* ================================
   BUTTON
================================ */

.compact-cta-button {
    display: inline-flex;

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

    gap: 10px;

    min-width: 135px;

    padding: 11px 17px;

    flex-shrink: 0;

    border: 1px solid #e01a45;

    border-radius: 7px;

    background: #e01a45;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 600;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.30);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.compact-cta-button span {
    font-size: 15px;

    transition:
        transform 0.3s ease;
}

.compact-cta-button:hover {
    background: #c9143b;

    border-color: #c9143b;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.40);
}

.compact-cta-button:hover span {
    transform: translateX(4px);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .compact-cta {
        min-height: 260px;
    }

    .compact-cta-image img {
        object-position: 10% center;
    }

    .compact-cta-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 6, 10, 0.25) 0%,
                rgba(5, 6, 10, 0.58) 45%,
                rgba(5, 6, 10, 0.90) 100%
            );
    }

    .compact-cta-container {
        width: calc(100% - 30px);

        min-height: 260px;

        display: flex;
        flex-direction: column;

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

        text-align: right;

        gap: 16px;
    }

    .compact-cta-content {
        max-width: 62%;
        margin-left: auto;
    }

    .compact-cta-label {
        font-size: 8px;
        margin-bottom: 7px;
    }

    .compact-cta-content h2 {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 7px;
    }

    .compact-cta-content p {
        font-size: 10px;
        line-height: 1.65;
    }

    .compact-cta-button {
        margin-right: 0;

        min-width: 125px;

        padding: 10px 16px;

        font-size: 10px;
    }

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

.site-footer {
    width: 100%;

    background:
        radial-gradient(
            circle at 82% 15%,
            rgba(215, 25, 63, 0.06),
            transparent 28%
        ),
        #07080b;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


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

.footer-container {
    width: min(1200px, calc(100% - 50px));

    margin: 0 auto;

    padding: 70px 0 60px;

    display: grid;

    grid-template-columns:
        1.45fr
        0.75fr
        1fr
        0.85fr;

    gap: 70px;
}


/* ================================
   BRAND
================================ */

.footer-brand {
    max-width: 360px;
}


.footer-logo {
    display: inline-block;

    margin-bottom: 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;

    font-weight: 600;

    letter-spacing: -0.5px;

    color: #ffffff;

    text-decoration: none;
}


.footer-logo span {
    color: #d7193f;

    font-style: italic;
}


.footer-brand p {
    margin: 0;

    max-width: 350px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.9;

    color: #858995;
}


/* ================================
   SOCIAL ICONS
================================ */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;
}


.footer-socials a {
    display: flex;

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

    width: 42px;
    height: 42px;

    border: 1px solid rgba(215, 25, 63, 0.25);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.015);

    font-family: Arial, sans-serif;

    font-size: 12px;

    color: #aeb2bd;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.footer-socials a:hover {
    color: #ffffff;

    background: #d7193f;

    border-color: #d7193f;

    transform: translateY(-3px);
}


/* ================================
   COLUMNS
================================ */

.footer-column h3 {
    margin: 3px 0 25px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    color: #ffffff;
}


.footer-column h3::after {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    margin-top: 10px;

    background: #d7193f;
}


/* ================================
   LINKS
================================ */

.footer-column ul {
    margin: 0;

    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 15px;
}


.footer-column li a {
    font-family: Arial, sans-serif;

    font-size: 13px;

    color: #858995;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-column li a:hover {
    color: #ffffff;

    padding-left: 4px;
}


/* ================================
   ALL LOCATIONS
================================ */

.footer-all-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 4px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 600;

    color: #d7193f;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-all-link span {
    font-size: 16px;

    transition:
        transform 0.3s ease;
}


.footer-all-link:hover {
    color: #ffffff;
}


.footer-all-link:hover span {
    transform: translateX(4px);
}


/* ================================
   CONTACT
================================ */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-contact-item {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 17px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    color: #858995;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.footer-contact-item:hover {
    color: #ffffff;
}


.contact-icon {
    display: flex;

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

    width: 33px;
    height: 33px;

    border: 1px solid rgba(215, 25, 63, 0.25);

    border-radius: 50%;

    font-size: 13px;

    color: #d7193f;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-item:hover .contact-icon {
    background: #d7193f;

    border-color: #d7193f;

    color: #ffffff;
}


/* ================================
   BOTTOM
================================ */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}


.footer-bottom-container {
    width: min(1200px, calc(100% - 50px));

    min-height: 68px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom-container p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 10px;

    color: #60646f;
}


.footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}


.footer-legal a {
    font-family: Arial, sans-serif;

    font-size: 10px;

    color: #60646f;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-legal a:hover {
    color: #d7193f;
}


/* ================================
   TABLET
================================ */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        flex-direction: row;

        flex-wrap: wrap;

        gap: 20px 30px;
    }

    .footer-contact h3 {
        width: 100%;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 650px) {

    .footer-container {
        width: calc(100% - 30px);

        padding: 55px 0 40px;

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

        gap: 40px 25px;
    }


    .footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }


    .footer-logo {
        font-size: 26px;

        margin-bottom: 17px;
    }


    .footer-brand p {
        font-size: 11px;

        line-height: 1.8;
    }


    .footer-socials {
        margin-top: 23px;

        gap: 8px;
    }


    .footer-socials a {
        width: 37px;
        height: 37px;

        font-size: 10px;
    }


    .footer-column h3 {
        font-size: 10px;

        margin-bottom: 21px;

        letter-spacing: 1.5px;
    }


    .footer-column li {
        margin-bottom: 12px;
    }


    .footer-column li a {
        font-size: 11px;
    }


    .footer-all-link {
        font-size: 10px;
    }


    .footer-contact {
        grid-column: 1 / -1;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;
    }


    .footer-contact-item {
        margin-bottom: 13px;

        font-size: 11px;
    }


    .contact-icon {
        width: 30px;
        height: 30px;

        font-size: 11px;
    }


    .footer-bottom-container {
        width: calc(100% - 30px);

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .footer-bottom-container p {
        font-size: 9px;
    }


    .footer-legal {
        gap: 18px;
    }


    .footer-legal a {
        font-size: 9px;
    }

}

/* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floating-contact {
    position: fixed;

    right: 22px;
    bottom: 85px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


/* =========================================
   COMMON BUTTON
========================================= */

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

    gap: 9px;

    min-width: 115px;
    height: 45px;

    padding: 0 15px;

    border-radius: 25px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;

    color: #ffffff;
    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.40);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* =========================================
   HOVER
========================================= */

.floating-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.50);
}


/* =========================================
   ICON CIRCLE
========================================= */

.floating-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);
}


/* =========================================
   FONT AWESOME ICON
========================================= */

.floating-icon i {
    display: block;

    font-size: 13px;
    line-height: 1;

    color: #ffffff;
}


/* =========================================
   BUTTON TEXT
========================================= */

.floating-text {
    display: inline-block;

    line-height: 1;

    white-space: nowrap;
}


/* =========================================
   CALL BUTTON
========================================= */


.floating-call {
    background: linear-gradient(
        135deg,
        #9f1939,
        #681126
    );

    border: 1px solid rgba(215, 25, 63, 0.45);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(215, 25, 63, 0.10);
}

.floating-call:hover {
    background: linear-gradient(
        135deg,
        #b51d43,
        #76132b
    );

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.50),
        0 0 22px rgba(215, 25, 63, 0.18);
}

/* =========================================
   WHATSAPP BUTTON
========================================= */

.floating-whatsapp {
    background:
        linear-gradient(
            135deg,
            #15945b,
            #087844
        );

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


.floating-whatsapp:hover {
    background:
        linear-gradient(
            135deg,
            #18a564,
            #09834b
        );
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .floating-contact {
        left: 12px;
        right: 12px;

        bottom: 12px;

        flex-direction: row;

        gap: 8px;
    }


    .floating-btn {
        flex: 1;

        min-width: 0;

        height: 46px;

        padding: 0 12px;

        border-radius: 25px;

        font-size: 11px;
    }


    .floating-icon {
        width: 24px;
        height: 24px;
    }


    .floating-icon i {
        font-size: 12px;
    }


    .floating-text {
        font-size: 11px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .floating-contact {
        left: 10px;
        right: 10px;

        bottom: 10px;

        gap: 7px;
    }


    .floating-btn {
        height: 44px;

        padding: 0 10px;

        gap: 7px;

        font-size: 10px;
    }


    .floating-icon {
        width: 22px;
        height: 22px;
    }


    .floating-icon i {
        font-size: 11px;
    }


    .floating-text {
        font-size: 10px;
    }

}

/* =========================================
   SIMPLE 404 PAGE
========================================= */

.error-header {
    position: relative;
    width: 100%;
    height: 78px;
    background: #07080b;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.error-header-container {
    width: min(1180px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;

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

.error-logo,
.error-footer-logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-decoration: none;
}

.error-logo span,
.error-footer-logo span {
    color: #d7193f;
}

.error-header-label {
    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #676b75;
}


/* =========================================
   404 MAIN
========================================= */

.error-main {
    position: relative;
    width: 100%;
    min-height: 570px;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(215,25,63,.055),
            transparent 34%
        ),
        #07080b;
}

.error-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.error-glow-one {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: rgba(215,25,63,.035);
}

.error-glow-two {
    width: 250px;
    height: 250px;
    right: 5%;
    bottom: 0;
    background: rgba(215,25,63,.03);
}

.error-main-container {
    position: relative;
    z-index: 2;

    width: min(850px, calc(100% - 40px));
    margin: 0 auto;

    text-align: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-code {
    margin-bottom: -5px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(120px, 18vw, 190px);
    font-weight: 700;
    line-height: .85;

    letter-spacing: -10px;

    color: rgba(215,25,63,.10);

    user-select: none;
}

.error-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #d7193f;
}

.error-label::before,
.error-label::after {
    content: "";

    width: 27px;
    height: 1px;

    background: #d7193f;
}

.error-content h1 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -.8px;

    color: #fff;
}

.error-content h1 span {
    color: #d7193f;
}

.error-content > p {
    max-width: 590px;

    margin: 20px auto 0;

    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.85;

    color: #858995;
}

.error-divider {
    width: 65px;
    height: 2px;

    margin: 25px auto 0;

    background:
        linear-gradient(
            90deg,
            rgba(215,25,63,0),
            #d7193f,
            rgba(215,25,63,0)
        );
}

.error-buttons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    margin-top: 30px;
}

.error-home-btn,
.error-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 44px;

    padding: 0 21px;

    border-radius: 8px;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.error-home-btn {
    color: #fff;

    background: #d7193f;
    border: 1px solid #d7193f;
}

.error-home-btn:hover {
    background: #b91436;
    border-color: #b91436;

    transform: translateY(-2px);
}

.error-profile-btn {
    color: #c6c8cf;

    background: rgba(255,255,255,.025);

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

.error-profile-btn:hover {
    color: #fff;

    background: rgba(215,25,63,.07);
    border-color: rgba(215,25,63,.3);

    transform: translateY(-2px);
}


/* =========================================
   QUICK NAVIGATION
========================================= */

.error-explore {
    position: relative;

    width: 100%;

    padding: 78px 20px 85px;

    background: #090a0e;

    border-top: 1px solid rgba(255,255,255,.035);
}

.error-explore-container {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.error-explore-heading {
    max-width: 600px;

    margin: 0 auto 36px;

    text-align: center;
}

.error-explore-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 13px;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.7px;

    color: #d7193f;
}

.error-explore-label::before,
.error-explore-label::after {
    content: "";

    width: 21px;
    height: 1px;

    background: #d7193f;
}

.error-explore-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 47px);
    font-weight: 700;
    line-height: 1.15;

    color: #fff;
}

.error-explore-heading h2 span {
    color: #d7193f;
}

.error-explore-heading p {
    max-width: 500px;

    margin: 13px auto 0;

    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.7;

    color: #777b86;
}

.error-explore-grid {
    display: grid;

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

    gap: 12px;
}

.error-nav-card {
    position: relative;

    min-height: 155px;

    padding: 22px 18px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(19,20,27,.97),
            rgba(9,10,14,.99)
        );

    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.error-nav-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 18px;

    width: 36px;
    height: 2px;

    background: #d7193f;

    transition: width .3s ease;
}

.error-nav-card:hover {
    transform: translateY(-4px);

    border-color: rgba(215,25,63,.25);

    box-shadow: 0 18px 38px rgba(0,0,0,.35);
}

.error-nav-card:hover::before {
    width: 62px;
}

.error-nav-number {
    position: absolute;

    top: 16px;
    right: 17px;

    font-family: Arial, sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #4d515b;
}

.error-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin-bottom: 18px;

    border-radius: 11px;

    border: 1px solid rgba(215,25,63,.18);

    background: rgba(215,25,63,.07);
}

.error-nav-icon i {
    font-size: 12px;
    color: #d7193f;
}

.error-nav-content h3 {
    margin: 0 0 5px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;

    color: #fff;
}

.error-nav-content p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 8px;
    line-height: 1.6;

    color: #70747f;
}

.error-nav-arrow {
    position: absolute;

    right: 15px;
    bottom: 13px;

    font-size: 8px;

    color: #555963;

    transition: .3s ease;
}

.error-nav-card:hover .error-nav-arrow {
    color: #d7193f;
    transform: translateX(3px);
}


/* =========================================
   404 CTA
========================================= */

.error-cta {
    position: relative;

    width: 100%;

    background: #07080b;

    border-top: 1px solid rgba(255,255,255,.035);
}

.error-cta-container {
    width: min(1050px, calc(100% - 40px));

    min-height: 190px;

    margin: 0 auto;

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

    gap: 40px;
}

.error-cta-content {
    max-width: 650px;
}

.error-cta-label {
    display: inline-block;

    margin-bottom: 9px;

    font-family: Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.7px;

    color: #d7193f;
}

.error-cta-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.15;

    color: #fff;
}

.error-cta-content h2 span {
    color: #d7193f;
}

.error-cta-content p {
    margin: 10px 0 0;

    font-family: Arial, sans-serif;
    font-size: 10px;
    line-height: 1.7;

    color: #747883;
}

.error-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 44px;

    padding: 0 22px;

    flex-shrink: 0;

    border: 1px solid rgba(215,25,63,.4);
    border-radius: 8px;

    color: #fff;

    background: rgba(215,25,63,.08);

    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.error-cta-button:hover {
    background: #d7193f;
    border-color: #d7193f;

    transform: translateY(-2px);
}


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

.error-footer {
    width: 100%;

    background: #050609;

    border-top: 1px solid rgba(255,255,255,.055);
}

.error-footer-container {
    width: min(1180px, calc(100% - 40px));

    min-height: 75px;

    margin: 0 auto;

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

    gap: 25px;
}

.error-footer-logo {
    font-size: 20px;
}

.error-footer-container p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 8px;

    color: #5f636d;
}

.error-footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.error-footer-links a {
    font-family: Arial, sans-serif;
    font-size: 8px;

    color: #676b75;

    text-decoration: none;

    transition: color .25s ease;
}

.error-footer-links a:hover {
    color: #d7193f;
}


/* =========================================
   404 RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .error-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .error-header {
        height: 68px;
    }

    .error-header-container {
        width: calc(100% - 30px);
    }

    .error-logo {
        font-size: 21px;
    }

    .error-header-label {
        font-size: 6px;
        letter-spacing: 2px;
    }


    .error-main {
        min-height: 500px;
    }

    .error-main-container {
        width: calc(100% - 30px);
    }

    .error-code {
        font-size: 110px;
        letter-spacing: -6px;
    }

    .error-label {
        font-size: 7px;
        letter-spacing: 2.2px;
    }

    .error-content h1 {
        font-size: 34px;
    }

    .error-content > p {
        max-width: 330px;

        font-size: 10px;
        line-height: 1.75;
    }

    .error-buttons {
        width: 100%;

        flex-direction: column;

        gap: 9px;
    }

    .error-home-btn,
    .error-profile-btn {
        width: 100%;
        max-width: 245px;
        min-height: 42px;
    }


    .error-explore {
        padding: 60px 15px 70px;
    }

    .error-explore-heading {
        margin-bottom: 28px;
    }

    .error-explore-heading h2 {
        font-size: 32px;
    }

    .error-explore-heading p {
        font-size: 9px;
    }

    .error-explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .error-nav-card {
        min-height: 140px;

        padding: 19px 14px;
    }

    .error-nav-card::before {
        left: 14px;
        width: 30px;
    }

    .error-nav-number {
        top: 14px;
        right: 13px;
    }

    .error-nav-icon {
        width: 34px;
        height: 34px;

        margin-bottom: 15px;

        border-radius: 9px;
    }

    .error-nav-icon i {
        font-size: 10px;
    }

    .error-nav-content h3 {
        font-size: 15px;
    }

    .error-nav-content p {
        font-size: 7px;
    }


    .error-cta-container {
        width: calc(100% - 30px);

        min-height: 220px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 20px;
    }

    .error-cta-content h2 {
        font-size: 29px;
    }

    .error-cta-button {
        min-height: 42px;
    }


    .error-footer-container {
        width: calc(100% - 30px);

        min-height: 120px;

        flex-direction: column;

        justify-content: center;

        gap: 13px;

        text-align: center;
    }

    .error-footer-logo {
        font-size: 19px;
    }

    .error-footer-links {
        gap: 13px;
    }

}


@media (max-width: 380px) {

    .error-main {
        min-height: 470px;
    }

    .error-code {
        font-size: 95px;
    }

    .error-content h1 {
        font-size: 30px;
    }

    .error-content > p {
        max-width: 290px;
        font-size: 9px;
    }

    .error-explore {
        padding: 52px 12px 60px;
    }

    .error-explore-grid {
        gap: 8px;
    }

    .error-nav-card {
        min-height: 130px;
        padding: 17px 12px;
    }

    .error-nav-icon {
        width: 31px;
        height: 31px;
    }

    .error-nav-content h3 {
        font-size: 14px;
    }

    .error-nav-content p {
        font-size: 6.5px;
    }

    .error-cta-container {
        width: calc(100% - 25px);
    }

}