/* ===== Fonts ===== */
@font-face {
    font-family: 'Classy Vogue';
    src: url('../fonts/Classyvogueregular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tempting';
    src: url('../fonts/Tempting - PERSONAL USE ONLY.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== Variables ===== */
:root {
    --primary-red: #9D2323;
    --secondary-red: #E40000;
    --dark-blue: #061D55;
    --white: #ffffff;
}

/* ===== Base ===== */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

a {
    text-decoration: none;
}

/* ===== Top Bar ===== */
.topbar {
    background-color: var(--primary-red);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 0;
}

.topbar-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 300;
}

.topbar-info li,
.topbar-info a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-info a:hover {
    opacity: 0.85;
}

.topbar-info i {
    font-size: 14px;
}

.topbar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
}

.topbar-social a:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

/* ===== Navbar ===== */
.main-navbar {
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
    padding: 4px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.main-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    width: 150px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-navbar .nav-link {
    color: #4E4848;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 14px;
    position: relative;
    transition: color 0.25s ease;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 3px;
    border-radius: 10px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    /* color: var(--primary-red); */
}

.main-navbar .nav-link.active::after,
.main-navbar .nav-link:hover::after {
    transform: scaleX(0.4);
}

/* ===== Quote Button ===== */
.btn-quote {
    background-color: var(--dark-blue);
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-quote:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ===== Navbar Toggler ===== */
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 8px 12px;
    background: var(--dark-blue);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== Offcanvas contact (mobile) ===== */
.offcanvas-contact {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(6, 29, 85, 0.12);
}

.offcanvas-contact > ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--dark-blue);
    margin-bottom: 16px;
    line-height: 1.5;
}

.offcanvas-contact > ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-blue);
    word-break: break-word;
}

.offcanvas-contact > ul:not(.offcanvas-social) li i {
    color: var(--primary-red);
    font-size: 15px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.offcanvas-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.offcanvas-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    transition: background-color 0.25s ease;
}

.offcanvas-social a i {
    color: var(--white);
}

.offcanvas-social a:hover {
    background-color: var(--dark-blue);
}

/* ===== Offcanvas ===== */
.offcanvas {
    max-width: 320px;
}

.offcanvas-header .offcanvas-title .logo-img {
    width: 150px;
}
.offcanvas-header .btn-close {
    opacity: 1;
    border: 2px solid var(--primary-red);
}



/* ===== Hero Banner ===== */
.hero-banner {
    position: relative;
    background-image: url('../images/hero-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 180px 0 240px;
}

.hero-float {
    position: absolute;
    width: 100%;
    max-width: 760px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.hero-float-left {
    left: -280px;
    top: auto;
    bottom: 0;
}

.hero-float-right {
    right: -170px;
    top: 0;
    bottom: auto;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 970px;
    margin: 0 auto;
}

.hero-heading {
    color: var(--white);
    margin-bottom: 36px;
}

.hero-script {
    font-family: 'Tempting', cursive;
    display: block;
    font-size: 45px;
    line-height: 1.5;
    margin-bottom: 5px;
}
.hero-subline {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 35px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-line {
    display: block;
    font-weight: 600;
    font-size: 54px;
    line-height: 1.25;
}

.hero-line .text-red {
    color: var(--secondary-red); 
}

/* ===== Hero Form Card ===== */
.hero-form-card {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.hero-form-title {
    color: var(--white);
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
}

.hero-form-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-form .form-control,
.hero-form .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    color: var(--white);
    padding: 12px 20px;
    font-size: 14px;
}

.hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form .form-select {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form .form-select option {
    color: #333;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: var(--white);
    box-shadow: none;
    color: var(--white);
}

.btn-hero-submit {
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: opacity 0.25s ease;
}

.btn-hero-submit:hover {
    opacity: 0.9;
    color: var(--white);
}

/* ===== Platforms Slider ===== */
.platforms-section {
    background-color: var(--white);
    padding: 40px 50px;
}

.platforms-slider {
    margin: 0;
}

/* Prevent stacking flash before Slick initializes */
.platforms-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.platforms-slider:not(.slick-initialized) .platform-item {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
}

.platform-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 15px;
}

.platform-item img {
    max-height: 42px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.platforms-slider .slick-track {
    display: flex;
    align-items: center;
}

/* ===== Transform Section ===== */
.transform-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.transform-ellipse {
    position: absolute;
    right: -200px;
    top: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(79.54deg, rgba(164, 231, 255, 0.7) -16.39%, rgba(255, 255, 255, 0.7) 123.36%);
    filter: blur(125px);
    transform: translateY(-50%) rotate(-116.25deg);
    z-index: 0;
    pointer-events: none;
}

.transform-section .container {
    position: relative;
    z-index: 1;
}

.transform-heading {
    font-weight: 600;
    font-size: 45px;
    line-height: 1.3;
    margin-bottom: 22px;
}

.transform-heading .text-blue {
    color: var(--dark-blue);
}

.transform-heading .text-red {
    color: var(--primary-red);
}

.transform-heading .script-blue,
.transform-heading .script-red {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 58px;
}

.transform-heading .script-blue {
    color: var(--dark-blue);
}

.transform-heading .script-red {
    color: var(--primary-red);
}

.transform-text {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
}

.transform-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.stat-item h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.stat-item h3 .counter {
    color: var(--dark-blue);
}

.stat-item h3 .plus {
    color: var(--primary-red);
    font-size: 0.85em;
    font-weight: 400;
    line-height: 0.8;
    margin-left: 2px;
    margin-top: 0;
}

.stat-item p {
    color: #555;
    font-size: 15px;
    margin-bottom: 0;
}

.transform-img {
    width: 100%;
    height: auto;
}

/* ===== Exclusive Section ===== */
.exclusive-section {
    background-color: var(--white);
    padding: 60px 0 80px;
}

.exclusive-img {
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .exclusive-img {
        margin-left: -80px;
        width: calc(100% + 80px);
        max-width: none;
    }

    .exclusive-content {
        padding-left: 30px;
    }
}

.exclusive-heading {
    font-weight: 600;
    font-size: 45px;
    line-height: 1.25;
    margin-bottom: 22px;
}

.exclusive-heading .text-blue {
    color: var(--dark-blue);
}

.exclusive-heading .script-red {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 56px;
    color: var(--primary-red);
}

.exclusive-text {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 32px;
}

/* ===== Gradient Button ===== */
.btn-gradient {
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.btn-gradient:hover {
    color: var(--white);
    opacity: 0.9;
}

/* ===== Comprehensive Services Section ===== */
.services-section {
    background-color: var(--white);
    padding: 70px 0 90px;
}

.section-head {
    max-width: 930px;
    margin: 0 auto 20px;
}

.services-heading {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.services-heading .script-blue {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 52px;
    color: var(--dark-blue);
}

.services-heading .text-red {
    color: var(--primary-red);
    font-weight: 600;
}

.services-subtext {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-card {
    height: 100%;
}

.service-card-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-title {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 10px;
}

.service-card-title .text-red {
    color: var(--primary-red);
}

.service-card-text {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: var(--white);
    padding: 40px 0 80px;
}

.cta-box {
    background-image: url('../images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 93px 30px;
    text-align: center;
    overflow: hidden;
    border-radius: 50px;
}

.cta-heading {
    color: var(--white);
    margin-bottom: 22px;
}

.cta-heading .script {
    font-family: 'Tempting', cursive;
    display: block;
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-heading .cta-line {
    display: block;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
    max-width: 930px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-light-cta {
    background-color: var(--white);
    color: var(--dark-blue);
    border-radius: 50px;
    padding: 14px 38px;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-light-cta:hover {
    background-color: var(--dark-blue);
    color: var(--white);
}

/* ===== Process Section ===== */
.iproc-section {
    background-color: #ffffff;
    padding: 70px 0 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.iproc-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    left: auto;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(79.54deg, rgba(99, 72, 234, 0.2) -16.39%, rgba(255, 255, 255, 0.2) 123.36%);
    filter: blur(125px);
    transform: rotate(-74.87deg);
    pointer-events: none;
    z-index: 0;
}

.iproc-header {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.iproc-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.iproc-title-script {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 58px;
    color: var(--dark-blue);
    display: block;
    line-height: 1.1;
}

.iproc-title-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 44px;
    color: var(--primary-red);
    display: block;
    line-height: 1.2;
}

.iproc-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #555555;
    margin: 0 auto;
    max-width: 930px;
}

.iproc-timeline {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 130px;
    overflow: visible;
}

.iproc-graph {
    display: block;
    width: 100%;
    height: auto;
}

.iproc-overlays {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.iproc-node {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.iproc-node.is-active {
    z-index: 100;
}

.iproc-node-1 { left: 10.39%; top: 51.25%; }
.iproc-node-2 { left: 31.25%; top: 61.64%; }
.iproc-node-3 { left: 48.7%;  top: 29.11%; }
.iproc-node-4 { left: 69.33%; top: 41.57%; }
.iproc-node-5 { left: 88.98%; top: 22.74%; }

.iproc-node-heading {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    max-width: 200px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.iproc-node-content {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    max-width: 354px;
    padding-bottom: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 20;
}

.iproc-step-label {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 0;
}

.iproc-step-label.is-nowrap {
    white-space: nowrap;
}

.iproc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 354px;
    min-height: 200px;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid rgba(6, 29, 85, 0.15);
    border-left: 5px solid var(--dark-blue);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(6, 29, 85, 0.1);
    padding: 22px 24px 22px 22px;
    text-align: left;
    pointer-events: auto;
    z-index: 30;
}


.iproc-card-num {
    position: absolute;
    top: 16%;
    right: 24px;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    display: block;
    object-fit: contain;
    z-index: 1;
}

.iproc-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--primary-red);
    margin-bottom: 10px;
    padding-right: 58px;
}

.iproc-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: #555555;
    margin-bottom: 0;
    padding-right: 8px;
}

.iproc-connector {
    display: block;
    width: 1px;
    height: 36px;
    background-color: rgba(6, 29, 85, 0.2);
    margin-top: 10px;
    flex-shrink: 0;
}

.iproc-hotspot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    pointer-events: auto;
    z-index: 2;
    background: transparent;
    padding: 0;
}

.iproc-node.is-active .iproc-node-heading {
    opacity: 0;
    visibility: hidden;
}

.iproc-node.is-active .iproc-node-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 1400px) {
    .iproc-node-content { max-width: 290px; }
    .iproc-card { width: 290px; min-height: 180px; padding: 20px 22px 20px 18px; }
    .iproc-card-title { font-size: 16px; }
    .iproc-card-num { width: 44px; height: 44px; }
    .iproc-step-label { font-size: 15px; }
    .iproc-title-script { font-size: 50px; }
    .iproc-title-bold { font-size: 38px; }
}

@media (max-width: 1199.98px) {
    .iproc-graph { display: none; }
    .iproc-timeline { padding-top: 0; position: static; }
    .iproc-overlays { position: static; display: flex; flex-direction: column; gap: 24px; pointer-events: auto; }
    .iproc-node,
    .iproc-node-1,
    .iproc-node-2,
    .iproc-node-3,
    .iproc-node-4,
    .iproc-node-5 { position: static; transform: none; display: block; width: 100%; height: auto; min-height: 0; pointer-events: auto; }
    .iproc-node-heading,
    .iproc-step-label,
    .iproc-connector,
    .iproc-hotspot { display: none !important; }
    .iproc-node-content { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; max-width: 100%; width: 100%; padding-bottom: 0; }
    .iproc-card { width: 100%; max-width: 100%; min-height: 0; padding: 22px 24px 22px 20px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .iproc-section { padding: 60px 0 0; }
    .iproc-header { margin-bottom: 44px; max-width: 680px; }
    .iproc-title-script { font-size: 42px; }
    .iproc-title-bold { font-size: 34px; }
    .iproc-overlays { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem 2rem; }
    .iproc-node-5 { grid-column: 1 / -1; max-width: calc(50% - 1rem); margin-left: auto; margin-right: auto; }
    .iproc-card { padding: 26px 24px 28px 22px; }
}

@media (max-width: 991.98px) {
    .iproc-section { padding: 60px 0; }
    .iproc-header { margin-bottom: 40px; }
    .iproc-title-script { font-size: 38px; }
    .iproc-title-bold { font-size: 30px; }
    .iproc-overlays { gap: 22px; }
    .iproc-card { padding: 24px 22px 26px 20px; }
}

@media (max-width: 767.98px) {
    .iproc-title-script { font-size: 32px; }
    .iproc-title-bold { font-size: 26px; }
    .iproc-desc { font-size: 14px; }
    .iproc-overlays { gap: 16px; }
    .iproc-card { padding: 20px 20px 20px 18px; }
    .iproc-card-title { font-size: 18px; }
}

/* ===== Bestseller Section ===== */
.bestseller-section {
    background-color: var(--white);
    padding: 120px 0;
}

.bestseller-heading {
    font-weight: 600;
    font-size: 45px;
    line-height: 1.3;
    margin-bottom: 22px;
}

.bestseller-heading .text-blue {
    color: var(--dark-blue);
}

.bestseller-heading .script-red {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 54px;
    color: var(--primary-red);
}

.bestseller-text {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.bestseller-img {
    width: 100%;
    height: auto;
}

/* ===== Recognition CTA Section ===== */
.recog-section {
    position: relative;
    background: url('../images/recog-bg.webp') center center / cover no-repeat;
    padding: 50px 0;
    overflow: hidden;
}

.recog-section .container {
    position: relative;
    z-index: 1;
}

.recog-label {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.recog-partners {
    max-width: 100%;
    height: auto;
    /* max-height: 52px; */
    object-fit: contain;
    display: block;
}

.recog-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: wrap;
    text-align: left;
}

.recog-cta-text {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

.recog-cta-text span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-top: 6px;
}

.recog-cta-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 2px;
}

.recog-cta .btn-gradient {
    flex-shrink: 0;
}

/* ===== Portfolio Section ===== */
.portfolio-section {
    background-color: var(--white);
    padding: 70px 0 90px;
    overflow: hidden;
}

/* Scrollable vertical tabs */
.portfolio-tabs {
    flex-wrap: nowrap;
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid rgba(157, 35, 35, 0.25);
    /* border-radius: 10px;
    padding: 8px; */
    gap: 2px;
}

.portfolio-tabs .nav-link {
    text-align: left;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 22px;
    padding: 14px 20px;
    border-radius: 0;
    transition: all 0.2s ease;
}

.portfolio-tabs .nav-link:hover {
    background-color: rgba(157, 35, 35, 0.08);
    color: var(--primary-red);
}

.portfolio-tabs .nav-link.active {
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
}

/* Tab scrollbar styling */
.portfolio-tabs::-webkit-scrollbar {
    width: 6px;
}

.portfolio-tabs::-webkit-scrollbar-thumb {
    background-color: rgba(157, 35, 35, 0.4);
    border-radius: 10px;
}

/* Portfolio slider */
.portfolio-item {
    padding: 0 8px;
}

.portfolio-item a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item a:hover img {
    transform: scale(1.05);
}

/* Avoid stacking flash before Slick initializes */
.portfolio-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.portfolio-slider:not(.slick-initialized) .portfolio-item {
    flex: 0 0 20%;
    max-width: 20%;
}


/* what we offer section css  */

.what_offer {
    padding: 50px 0;
  }
  
  .what_offer h2 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 55px;
    margin-bottom: 16px;
  }

  .what_offer h2 .script {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 58px;
    margin-right: 10px;
  }

  .what_offer p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    margin: 0 auto;
  }
  .what_offer_bx {
    padding: 60px 50px;
    background: url(../images/offer-bg.webp) no-repeat
      center center;
    background-size: cover;
    border-radius: 40px;
    height: 100%;
  }
  .offer_bx {
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    padding: 40px 60px;
    border-radius: 10px;
    height: 100%;
  }
  
  .offer_bx h4 {
    font-size: 24px;
    color: #fff;
  }
  
  .offer_bx .title_txt {
    display: flex;
    gap: 0;
    align-items: center;
  }
  .offer_bx p {
    font-family: "Poppins";
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 14px;
    margin-bottom: 0;
  }
  
  .offer_bx .title_txt .img_bx {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .offer_bx .title_txt .img_bx img {
    position: relative;
    z-index: 1;
  }
  
  .offer_bx .title_txt .img_bx strong {
    color: #fff;
    font-family: "Poppins";
    font-size: 40px;
    font-weight: 600;
    position: relative;
    z-index: 1;
  }
  
  .offer_bx .title_txt .img_bx:before {
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/offer_light.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    left: 10px;
    transform: scale(1.2);
    z-index: 0;
  }
  
  /* what we offer section css  */

  
/* ===== Quote / Contact Section ===== */
.quote-section {
    background-color: var(--white);
    padding: 70px 0 90px;
}

.quote-section .services-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 16px;
}

.quote-section .text-blue-bold {
    color: var(--dark-blue);
}

.quote-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
}

.quote-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.quote-img-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.quote-form .form-label {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
}

.quote-form .form-control,
.quote-form .form-select {
    background-color: #f7f7f9;
    border: 1px solid #e6e6ea;
    border-radius: 10px;
    padding: 18px 18px;
    font-size: 14px;
    color: #333;
}

.quote-form input.form-control,
.quote-form .form-select {
    height: 58px;
}

.quote-form .form-control::placeholder {
    color: #9a9aa5;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: none;
    background-color: #fff;
}

.quote-form textarea.form-control {
    resize: vertical;
}

.quote-form .btn-gradient {
    padding: 13px 44px;
}

/* end quote section css  */

/* marquee sect css */
.marquee {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: var(--primary-red);
    padding: 20px 0;
  }
  
  .marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
  }
  
  .marquee__content {
    display: inline-flex;
    align-items: center;
    font-size: 45px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    white-space: nowrap;
    color: #fff;
  }
  .marquee__content svg {
    margin: 0 30px;
  }
  
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  /* marquee sect css */

  
/* ===== FAQ Section ===== */
.faq-section {
    background-color: var(--white);
    padding: 70px 0 90px;
}

.faq-accordion .accordion-item {
    background-color: #f6f6f8;
    border: 1px solid transparent;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: #f6f6f8;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 16px;
    padding: 20px 24px;
    box-shadow: none;
    border-radius: 12px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(157, 35, 35, 0.06), rgba(6, 29, 85, 0.06));
    color: var(--dark-blue);
    box-shadow: none;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(157, 35, 35, 0.4);
    background: transparent;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    width: 1.1rem;
    height: 1.1rem;
    background-size: 1.1rem;
}

.faq-accordion .accordion-body {
    padding: 0 24px 22px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

/* FAQ side cards */
.faq-cta-card {
    background: linear-gradient(180deg, #0b2566 0%, #061d55 100%);
    border-radius: 16px;
    padding: 36px 30px;
    text-align: center;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-cta-icon {
    width: 95px;
    height: 95px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-cta-card h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.faq-cta-card p {
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 24px;
    font-family: 'Outfit';
}

.faq-support-card {
    background-color: #f6f6f8;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.faq-support-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.faq-support-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.faq-support-text span {
    font-size: 16px;
    color: #4E4545;
}

.faq-support-text strong {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-red);
}

.faq-support-text small {
    font-size: 16px;
    color: #4E4545;
}

/* ===== Testimonials Section ===== */
.testi-section {
    background-color: var(--white);
    padding: 100px 0 90px;
}

/* Rating box (left) */
.testi-rating-box {
    background: linear-gradient(180deg, #0b2566 0%, #061d55 100%);
    border-radius: 18px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testi-rating-num {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}

.testi-stars {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.testi-rating-count {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.testi-rating-desc {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 28px;
}

.testi-rating-people {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.testi-rating-people img {
    height: 48px;
    width: auto;
}

.testi-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
}

/* Testimonial card (right slider) */
.testi-card {
    background-color: #F8F8F8;
    border-radius: 18px;
    padding: 36px 40px;
    height: 100%;
    border: 1px solid #C4C4C4;
    margin: 5px;
}

.testi-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.testi-card-stars {
    color: var(--primary-red);
    font-size: 16px;
    letter-spacing: 2px;
}

.testi-card-rating {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 16px;
}

.testi-card-text {
    color: #1C1C1C;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 26px;
}

.testi-card-author h5 {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2px;
}

.testi-card-author span {
    color: #888;
    font-size: 13px;
}

/* Slick arrows */
.testi-slider .slick-prev,
.testi-slider .slick-next {
    width: 46px;
    height: 46px;
    bottom: 30px;
    top: auto;
    transform: none;
    z-index: 5;
    border-radius: 50%;
}

.testi-slider .slick-prev {
    left: auto;
    right: 70px;
    background-color: #111;
}

.testi-slider .slick-next {
    right: 16px;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
}

.testi-slider .slick-prev:hover { background-color: #111; }

.testi-slider .slick-prev:before,
.testi-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    opacity: 1;
    color: var(--white);
}

.testi-slider .slick-prev:before { content: "\f060"; }
.testi-slider .slick-next:before { content: "\f061"; }

/* testimonials css */


/* ===== Footer ===== */
.main-footer {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Poppins', sans-serif;
    padding-top: 70px;
}

.footer-title {
    font-family: 'Classy Vogue', serif;
    color: var(--white);
    font-size: 25px;
    margin-bottom: 24px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: #ffffff;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--white);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact a,
.footer-contact span {
    color: #ffffff;
}

.footer-contact a:hover {
    color: var(--primary-red);
}

/* ===== Subscribe ===== */
.footer-subscribe-intro {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-subscribe-note {
    font-size: 13px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 18px;
}

.subscribe-input {
    position: relative;
    background-color: var(--white);
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}

.subscribe-input input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 18px;
    font-size: 14px;
    color: #333;
    border-radius: 50px;
}

.subscribe-input button {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--dark-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease;
}

.subscribe-input button:hover {
    background-color: var(--primary-red);
}

.footer-terms .form-check-input {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    margin-top: 0.2rem;
}

.footer-terms .form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.footer-terms .form-check-input:focus {
    box-shadow: none;
}

.footer-terms .form-check-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 50px;
    padding: 20px 0;
    font-size: 14px;
    color: var(--white);
}

.footer-bottom p,
.footer-bottom a {
    color: var(--white);
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

/* =====================================================
   Ghostwriting Service Page
   ===================================================== */

/* Shared heading style for the page */
.gw-section-heading {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.gw-section-heading .gw-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 50px;
    color: var(--primary-red);
    line-height: 1;
}

.gw-section-heading .gw-bold {
    display: block;
}

.gw-section-heading.gw-center .gw-script,
.gw-section-heading.gw-center .gw-bold {
    text-align: center;
}

.gw-section-text {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 26px;
    max-width: 760px;
}

/* ===== Page Hero ===== */
.gw-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background:  linear-gradient(120deg, rgb(6 29 85 / 45%) 0%, rgb(6 29 85 / 5%) 55%, rgb(157 35 35 / 57%) 100%), url(../images/hero-banner.webp) center / cover no-repeat;
    color: var(--white);
}

.gw-hero-ellipse {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.gw-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.gw-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
}

.gw-breadcrumb a:hover {
    color: var(--white);
}

.gw-breadcrumb i {
    font-size: 11px;
}

.gw-breadcrumb span {
    color: var(--white);
    font-weight: 500;
}

.gw-hero-heading {
    font-weight: 700;
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.gw-hero-heading .gw-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 58px;
    line-height: 1;
    color: var(--primary-red);
}

.gw-hero-heading .gw-bold {
    display: block;
    color: var(--white);
}

.gw-hero-text {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 28px;
}

.gw-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.gw-hero .gw-hero-call,
.gw-hero .gw-hero-form-badge {
    display: none !important;
}

.gw-hero-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.gw-call-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 17px;
}

.gw-call-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.gw-call-meta small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.gw-call-meta strong {
    font-size: 17px;
}

.gw-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin: 0;
    font-size: 14px;
}

.gw-hero-badges li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.gw-hero-badges i {
    color: var(--secondary-red);
}

/* Hero quote form card */
.gw-hero-form-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    padding: 34px 30px 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.gw-hero-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #BF152A 0%, #78181A 50%, var(--dark-blue) 100%);
}

.gw-hero-form-badge {
    position: absolute;
    top: 18px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 16px 7px 14px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 6px 16px rgba(157, 35, 35, 0.35);
}

.gw-hero-form-badge i {
    font-size: 11px;
    color: #ffd24d;
}

.gw-hero-form-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.gw-hero-form-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(157, 35, 35, 0.12), rgba(6, 29, 85, 0.1));
    color: var(--primary-red);
    font-size: 20px;
}

.gw-hero-form-head h3 {
    font-size: 23px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 3px;
}

.gw-hero-form-head p {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

.gw-hero-form-card .gw-field input,
.gw-hero-form-card .gw-field select {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #f6f7fb;
}

.gw-hero-form-card .gw-modal-form .btn-gradient {
    padding: 15px;
    font-weight: 600;
    font-size: 15.5px;
    box-shadow: 0 12px 26px rgba(157, 35, 35, 0.3);
}

.gw-hero-form-card .gw-modal-note {
    margin-top: 14px;
}

.gw-hero-figure {
    position: relative;
    padding-bottom: 10px;
}

.gw-hero-img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.gw-hero-rating {
    position: absolute;
    left: -10px;
    bottom: -18px;
    background: var(--white);
    color: var(--dark-blue);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 18px 40px rgba(6, 29, 85, 0.25);
    text-align: center;
    min-width: 160px;
}

.gw-hero-rating .gw-stars {
    color: #ffb400;
    font-size: 14px;
    margin-bottom: 4px;
}

.gw-hero-rating strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.gw-hero-rating small {
    color: #777;
    font-size: 12px;
}

/* ===== Intro ===== */
.gw-intro {
    padding: 90px 0;
    background-color: var(--white);
}

.gw-intro-img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.gw-check-list {
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.gw-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: #333;
    font-weight: 500;
}

.gw-check-list i {
    color: var(--primary-red);
    margin-top: 3px;
}

/* ===== Types / Genres ===== */
.gw-types {
    padding: 90px 0;
    background-color: #f7f8fb;
}

.gw-types .section-head {
    margin-bottom: 30px;
}

.gw-type-card {
    height: 100%;
    background: var(--white);
    border: 1px solid #eceef3;
    border-radius: 16px;
    padding: 34px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gw-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(6, 29, 85, 0.12);
    border-color: transparent;
}

.gw-type-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(157, 35, 35, 0.12), rgba(6, 29, 85, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-red);
    font-size: 28px;
    transition: background 0.3s ease, color 0.3s ease;
}

.gw-type-card:hover .gw-type-icon {
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
}

.gw-type-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.gw-type-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.gw-type-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 18px;
}

.gw-type-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-red);
    transition: gap 0.25s ease;
}

.gw-type-link:hover {
    gap: 14px;
    color: var(--primary-red);
}

/* ===== Why Choose Us ===== */
.gw-why {
    padding: 90px 0;
    background-color: var(--white);
}

.gw-feature {
    height: 100%;
    padding: 28px 26px;
    border-radius: 16px;
    background: #f7f8fb;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.gw-feature:hover {
    background: var(--dark-blue);
    transform: translateY(-4px);
}

.gw-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
    font-size: 20px;
    margin-bottom: 18px;
}

.gw-feature h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.gw-feature p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.gw-feature:hover h5,
.gw-feature:hover p {
    color: var(--white);
}

.gw-feature:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Stats Band ===== */
.gw-stats-band {
    padding: 60px 0;
    background:
        linear-gradient(120deg, rgba(6, 28, 85, 0.123), rgba(6, 28, 85, 0.082)),
        url('../images/hero-banner.webp') bottom/cover no-repeat;
    color: var(--white);
}

.gw-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 6px;
    color: var(--white);
}

.gw-stat .gw-plus {
    color: var(--primary-red);
    font-size: 30px;
    vertical-align: super;
    margin-left: 2px;
}

.gw-stat p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

/* ===== Get Started Popup Modal ===== */
.gw-modal .modal-content {
    position: relative;
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(6, 29, 85, 0.35);
}

.gw-modal .modal-dialog {
    max-width: 880px;
}

.gw-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--dark-blue);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.gw-modal-close:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

/* Brand aside */
.gw-modal-aside {
    position: relative;
    overflow: hidden;
    padding: 40px 34px;
    color: var(--white);
    background: linear-gradient(155deg, var(--dark-blue) 0%, #0a236b 45%, var(--primary-red) 100%);
    display: flex;
    flex-direction: column;
}

.gw-offer-pill {
    align-self: flex-start;
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.gw-modal-aside .gw-offer-title,
.gw-offer-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.gw-offer-title span {
    color: #ffd24d;
}

.gw-countdown {
    display: flex;
    gap: 10px;
    margin: 8px 0 26px;
}

.gw-count-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 12px 4px;
    text-align: center;
}

.gw-count-box strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.gw-count-box span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.gw-modal-aside-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.gw-modal-logo {
    display: inline-block;
    margin-bottom: 26px;
}

.gw-modal-logo img {
    height: 54px;
    width: auto;
    filter: brightness(0) invert(1);
}

.gw-modal-aside-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.gw-modal-aside-title span {
    font-family: 'Tempting', cursive;
    font-weight: normal;
    color: #ffd9d9;
    font-size: 32px;
}

.gw-modal-aside-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 22px;
}

.gw-modal-points {
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gw-modal-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.92);
}

.gw-modal-points i {
    color: var(--white);
    margin-top: 3px;
    font-size: 12px;
}

.gw-modal-rating {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.gw-modal-rating .gw-stars {
    color: #ffb400;
    font-size: 13px;
    margin-bottom: 4px;
}

.gw-modal-rating strong {
    color: var(--white);
}

/* Form panel */
.gw-modal-body {
    padding: 42px 38px;
    background: var(--white);
}

.gw-modal-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.gw-modal-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 24px;
}

.gw-modal-genre {
    color: var(--primary-red);
    font-weight: 600;
}

.gw-field {
    position: relative;
    display: flex;
    align-items: center;
}

.gw-field > i {
    position: absolute;
    left: 16px;
    color: var(--primary-red);
    font-size: 14px;
    pointer-events: none;
}

.gw-field-area > i {
    top: 16px;
}

.gw-field input,
.gw-field select,
.gw-field textarea {
    width: 100%;
    border: 1px solid #e3e6ee;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 13px 16px 13px 42px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gw-field textarea {
    resize: none;
}

.gw-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.gw-field input::placeholder,
.gw-field textarea::placeholder {
    color: #9aa0ad;
}

.gw-field input:focus,
.gw-field select:focus,
.gw-field textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(157, 35, 35, 0.1);
}

.gw-modal-form .btn-gradient {
    padding: 14px;
    font-size: 15px;
    margin-top: 4px;
}

.gw-modal-note {
    font-size: 12px;
    color: #9aa0ad;
    text-align: center;
    margin: 16px 0 0;
}

.gw-modal-note i {
    color: var(--primary-red);
    margin-right: 4px;
}

/* =====================================================
   About Us Page
   ===================================================== */

.about-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(157, 35, 35, 0.08);
    border: 1px solid rgba(157, 35, 35, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 36px;
    line-height: 1;
}

.about-values-head .about-label {
    display: inline-block;
}

.about-heading {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.about-heading .about-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 50px;
    color: var(--primary-red);
    line-height: 1;
}

.about-heading .about-bold {
    display: block;
}

.about-heading-center .about-script,
.about-heading-center .about-bold {
    text-align: center;
}

.about-text {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 620px;
}

/* Hero */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #f7f8fb 0%, var(--white) 100%);
}

.about-hero-shape {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 35, 35, 0.08) 0%, rgba(157, 35, 35, 0) 70%);
    pointer-events: none;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 18px;
    color: #888;
}

.about-breadcrumb a {
    color: #888;
    transition: color 0.25s ease;
}

.about-breadcrumb a:hover {
    color: var(--primary-red);
}

.about-breadcrumb i {
    font-size: 11px;
}

.about-breadcrumb span {
    color: var(--dark-blue);
    font-weight: 500;
}

.about-hero-heading {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.15;
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.about-hero-heading .about-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 56px;
    color: var(--primary-red);
    line-height: 1;
}

.about-hero-heading .about-bold {
    display: block;
}

.about-hero-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    max-width: 580px;
    margin-bottom: 28px;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-blue);
    transition: gap 0.25s ease, color 0.25s ease;
}

.about-link-btn:hover {
    color: var(--primary-red);
    gap: 16px;
}

.about-hero-visual {
    position: relative;
}

.about-hero-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 60px rgba(6, 29, 85, 0.15);
}

.about-hero-badge {
    position: absolute;
    left: -16px;
    bottom: 24px;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 14px;
    padding: 18px 24px;
    box-shadow: 0 16px 40px rgba(6, 29, 85, 0.25);
}

.about-hero-badge strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.about-hero-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* Story */
.about-story {
    padding: 90px 0;
    background: var(--white);
}

.about-story-list {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-story-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: #333;
}

.about-story-list i {
    color: var(--primary-red);
    margin-top: 3px;
}

.about-story-img-wrap {
    position: relative;
}

.about-story-img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.about-story-card {
    position: absolute;
    right: -10px;
    bottom: -20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 20px 50px rgba(6, 29, 85, 0.15);
}

.about-story-card i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
    font-size: 20px;
}

.about-story-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

.about-story-card span {
    font-size: 12px;
    color: #777;
}

/* Mission & Vision */
.about-mv {
    padding: 0 0 90px;
    background: var(--white);
}

.about-mv-card {
    height: 100%;
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
}

.about-mv-card-alt {
    background: linear-gradient(155deg, var(--dark-blue) 0%, var(--primary-red) 100%);
}

.about-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 22px;
    margin-bottom: 22px;
}

.about-mv-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

/* Values */
.about-values {
    padding: 90px 0;
    background: #f7f8fb;
}

.about-values-head {
    max-width: 700px;
    margin: 0 auto 10px;
}

.about-value-card {
    display: flex;
    gap: 20px;
    height: 100%;
    background: var(--white);
    border: 1px solid #eceef3;
    border-radius: 16px;
    padding: 30px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(6, 29, 85, 0.1);
}

.about-value-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(157, 35, 35, 0.12), rgba(6, 29, 85, 0.08));
    color: var(--primary-red);
    font-size: 22px;
}

.about-value-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 0;
}

/* Stats */
.about-stats {
    padding: 70px 0;
    background:
        linear-gradient(120deg, rgba(6, 29, 85, 0.96), rgba(6, 29, 85, 0.88)),
        url('../images/hero-banner.webp') center/cover no-repeat;
    color: var(--white);
}

.about-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 6px;
    color: var(--white);
}

.about-stat .about-plus {
    color: #ffb3b3;
    font-size: 30px;
    vertical-align: super;
    margin-left: 2px;
}

.about-stat p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

/* Journey Timeline */
.about-journey {
    padding: 90px 0;
    background: var(--white);
}

.about-timeline {
    position: relative;
    padding-left: 28px;
    border-left: 2px solid #e8eaef;
}

.about-timeline-item {
    position: relative;
    padding: 0 0 36px 32px;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-item::before {
    content: "";
    position: absolute;
    left: -37px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-red);
}

.about-timeline-year {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-red);
    background: rgba(157, 35, 35, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.about-timeline-body h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.about-timeline-body p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 0;
}

/* What We Do / Roles */
.about-services {
    padding: 90px 0;
    background: #f7f8fb;
}

.about-role-card {
    height: 100%;
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    padding: 36px 24px;
    border: 1px solid #eceef3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(6, 29, 85, 0.1);
}

.about-role-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
}

.about-role-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.about-role-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Recognition */
.about-recog {
    padding: 80px 0;
    background: var(--white);
}

.about-partners {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   Reviews Page
   ===================================================== */

.reviews-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(157, 35, 35, 0.08);
    border: 1px solid rgba(157, 35, 35, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    line-height: 1;
}

.reviews-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 50px;
    color: var(--primary-red);
    line-height: 1;
}

.reviews-bold {
    display: block;
    font-weight: 700;
    font-size: 40px;
    color: var(--dark-blue);
    line-height: 1.15;
}

.reviews-section-heading {
    margin-bottom: 0;
}

/* Hero */
.reviews-hero {
    padding: 70px 0 36px;
    background: #f7f8fb;
}

.reviews-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 36px;
    color: #888;
}

.reviews-breadcrumb a {
    color: #888;
    transition: color 0.25s ease;
}

.reviews-breadcrumb a:hover {
    color: var(--primary-red);
}

.reviews-breadcrumb i {
    font-size: 11px;
}

.reviews-breadcrumb span {
    color: var(--dark-blue);
    font-weight: 500;
}

.reviews-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.reviews-hero-heading {
    margin-bottom: 16px;
}

.reviews-hero-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    max-width: 600px;
}

/* Overview */
.reviews-overview {
    padding: 0 0 70px;
    background: var(--white);
}

.reviews-summary-box {
    min-height: 100%;
}

.reviews-breakdown,
.reviews-trust {
    height: 100%;
    background: #f7f8fb;
    border: 1px solid #eceef3;
    border-radius: 18px;
    padding: 32px 28px;
}

.reviews-breakdown-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 22px;
}

.reviews-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviews-bar-row:last-child {
    margin-bottom: 0;
}

.reviews-bar-label {
    flex: 0 0 42px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
}

.reviews-bar-label i {
    color: var(--primary-red);
    font-size: 11px;
}

.reviews-bar-track {
    flex: 1;
    height: 8px;
    background: #e3e6ee;
    border-radius: 50px;
    overflow: hidden;
}

.reviews-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #BF152A);
    border-radius: 50px;
}

.reviews-bar-pct {
    flex: 0 0 36px;
    font-size: 12px;
    font-weight: 600;
    color: #777;
    text-align: right;
}

.reviews-partners {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.reviews-trust-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* Grid */
.reviews-grid-section {
    padding: 0 0 90px;
    background: #f7f8fb;
}

.reviews-grid-head {
    margin-bottom: 10px;
}

.reviews-card {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(6, 29, 85, 0.1);
}

.reviews-service-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-red);
    background: rgba(157, 35, 35, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.reviews-card .testi-card-text {
    flex: 1;
}

/* CTA */
.reviews-cta {
    padding: 0 0 90px;
    background: #f7f8fb;
}

.reviews-cta-box {
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
}

.reviews-cta-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviews-cta-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   Genres Page
   ===================================================== */

.genres-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(157, 35, 35, 0.08);
    border: 1px solid rgba(157, 35, 35, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    line-height: 1;
}

.genres-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 50px;
    color: var(--primary-red);
    line-height: 1;
}

.genres-bold {
    display: block;
    font-weight: 700;
    font-size: 40px;
    color: var(--dark-blue);
    line-height: 1.15;
}

.genres-section-heading {
    margin-bottom: 16px;
}

.genres-section-heading-center .genres-script,
.genres-section-heading-center .genres-bold {
    text-align: center;
}

.genres-text {
    color: #555;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 620px;
}

/* Hero */
.genres-hero {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #f7f8fb 0%, var(--white) 100%);
}

.genres-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.genres-hero-heading {
    margin-bottom: 16px;
}

.genres-hero-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    max-width: 600px;
}

/* Intro */
.genres-intro {
    padding: 70px 0;
    background: var(--white);
}

.genres-intro-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(6, 29, 85, 0.12);
}

.genres-check-list {
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.genres-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: #333;
}

.genres-check-list i {
    color: var(--primary-red);
    margin-top: 3px;
}

/* Genre cards */
.genres-grid-section {
    padding: 70px 0 90px;
    background: #f7f8fb;
}

.genres-grid-section-white {
    background: var(--white);
}

.genres-grid-head {
    max-width: 640px;
    margin: 0 auto 10px;
}

.genres-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 1px solid #eceef3;
    border-radius: 18px;
    padding: 34px 30px;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.genres-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(6, 29, 85, 0.12);
    border-color: transparent;
    color: inherit;
}

.genres-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(157, 35, 35, 0.12), rgba(6, 29, 85, 0.08));
    color: var(--primary-red);
    font-size: 28px;
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.genres-card:hover .genres-card-icon {
    background: linear-gradient(180.02deg, #BF152A 0.01%, #78181A 112.19%);
    color: var(--white);
}

.genres-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.genres-card-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.genres-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-red);
    transition: gap 0.25s ease;
}

.genres-card:hover .genres-card-link {
    gap: 14px;
}

/* Stats */
.genres-stats {
    padding: 70px 0;
    background: linear-gradient(120deg, rgb(6 29 85 / 9%), rgb(6 29 85 / 54%)), url(../images/hero-banner.webp) center / cover no-repeat;
    color: var(--white);
}

.genres-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 6px;
    color: var(--white);
}

.genres-stat .genres-plus {
    color: var(--primary-red);
    font-size: 30px;
    vertical-align: super;
    margin-left: 2px;
}

.genres-stat p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 0;
}

/* CTA */
.genres-cta {
    padding: 0 0 90px;
    background: var(--white);
}

.genres-cta-box {
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
}

.genres-cta-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.genres-cta-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   Contact Page
   ===================================================== */

.contact-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 52px;
    color: var(--primary-red);
    line-height: 1;
}

.contact-bold {
    display: block;
    font-weight: 700;
    font-size: 42px;
    color: var(--dark-blue);
    line-height: 1.15;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #f7f8fb 0%, var(--white) 100%);
}

.contact-hero-shape {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 35, 35, 0.08) 0%, rgba(157, 35, 35, 0) 70%);
    pointer-events: none;
}

.contact-hero-heading {
    margin-bottom: 18px;
}

.contact-hero-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 28px;
    max-width: 520px;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-outline-contact {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--dark-blue);
    background: transparent;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline-contact:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--white);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 196px;
    background: var(--white);
    border: 1px solid #e8ebf2;
    border-radius: 18px;
    padding: 26px 20px 22px;
    text-align: center;
    box-shadow: 0 10px 32px rgba(6, 29, 85, 0.07);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-info-card:hover {
    border-color: rgba(157, 35, 35, 0.22);
    box-shadow: 0 16px 40px rgba(6, 29, 85, 0.11);
    transform: translateY(-4px);
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(157, 35, 35, 0.12), rgba(6, 29, 85, 0.06));
    color: var(--primary-red);
    font-size: 20px;
    margin: 0 auto 16px;
    flex-shrink: 0;
}

.contact-info-body {
    flex: 1;
    width: 100%;
}

.contact-info-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-info-detail {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eef0f5;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.55;
    word-break: break-word;
}

.contact-info-detail--email {
    font-size: 12.5px;
}

a.contact-info-detail:hover {
    color: var(--primary-red);
}

.contact-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-btn:hover {
    background: #7a1b1b;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(157, 35, 35, 0.28);
}

.contact-main {
    padding: 0 0 90px;
    background: var(--white);
}

.contact-main-box {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(6, 29, 85, 0.12);
}

.contact-aside {
    padding: 44px 38px;
    color: var(--white);
    background: linear-gradient(155deg, var(--dark-blue) 0%, #0a236b 45%, var(--primary-red) 100%);
    display: flex;
    flex-direction: column;
}

.contact-aside-heading {
    margin-bottom: 14px;
}

.contact-aside-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 38px;
    color: #ffd9d9;
    line-height: 1;
}

.contact-aside-bold {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-aside-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.contact-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 auto;
}

.contact-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.contact-perks i {
    color: var(--white);
    margin-top: 3px;
    font-size: 12px;
}

.contact-aside .btn-light-cta {
    margin-top: 28px;
    align-self: flex-start;
}

.contact-form-wrap {
    padding: 44px 38px;
    background: var(--white);
}

.contact-form .btn-gradient {
    padding: 14px;
    font-size: 15px;
}

.contact-form-note {
    font-size: 12px;
    color: #9aa0ad;
    text-align: center;
    margin: 16px 0 0;
}

.contact-form-note i {
    color: var(--primary-red);
    margin-right: 4px;
}

.contact-cta {
    padding: 0 0 90px;
}

.contact-cta-box {
    background: var(--dark-blue);
    color: var(--white);
    border-radius: 20px;
    padding: 40px 44px;
}

.contact-cta-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-cta-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}

.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* Honeypot â€” hidden from users */
.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =====================================================
   Thank You Page
   ===================================================== */

.thankyou-hero {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f7f8fb 0%, var(--white) 100%);
}

.thankyou-content {
    max-width: 620px;
    margin: 0 auto;
}

.thankyou-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(157, 35, 35, 0.1);
    color: var(--primary-red);
    font-size: 42px;
    margin-bottom: 24px;
}

.thankyou-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 52px;
    color: var(--primary-red);
    line-height: 1;
}

.thankyou-bold {
    display: block;
    font-weight: 700;
    font-size: 42px;
    color: var(--dark-blue);
    line-height: 1.15;
}

.thankyou-heading {
    margin-bottom: 16px;
}

.thankyou-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 28px;
}

.thankyou-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.thankyou-note {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.thankyou-note a {
    color: var(--primary-red);
    font-weight: 600;
}

.thankyou-note a:hover {
    color: var(--dark-blue);
}

/* =====================================================
   Legal Pages
   ===================================================== */

.legal-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(157, 35, 35, 0.08);
    border: 1px solid rgba(157, 35, 35, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    line-height: 1;
}

.legal-script {
    display: block;
    font-family: 'Tempting', cursive;
    font-weight: normal;
    font-size: 50px;
    color: var(--primary-red);
    line-height: 1;
}

.legal-bold {
    display: block;
    font-weight: 700;
    font-size: 40px;
    color: var(--dark-blue);
    line-height: 1.15;
}

.legal-hero {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #f7f8fb 0%, var(--white) 100%);
}

.legal-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-hero-heading {
    margin-bottom: 16px;
}

.legal-hero-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    max-width: 620px;
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

.legal-content {
    padding: 0 0 90px;
    background: var(--white);
}

.legal-body {
    max-width: 820px;
    color: #444;
    font-size: 15px;
    line-height: 1.85;
}

.legal-body > p:first-child {
    margin-bottom: 28px;
}

.legal-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 36px 0 14px;
}

.legal-body p {
    margin-bottom: 16px;
}

.legal-body ul {
    padding-left: 1.25rem;
    margin-bottom: 16px;
}

.legal-body li {
    margin-bottom: 8px;
}

.legal-body a {
    color: var(--primary-red);
    font-weight: 600;
}

.legal-body a:hover {
    color: var(--dark-blue);
}

.legal-contact-list {
    list-style: none;
    padding-left: 0;
}

.legal-contact-list li {
    margin-bottom: 6px;
}

