﻿/* Partner Landing Page Styles */

:root {
    --hero-bg: #f0fdff;
    --primary: #0b5cf6;
    --muted: #6b7280;
    --partner-blue: #0077FF;
    --partner-yellow: #FFD700;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Poppins, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: var(--hero-bg);
    color: #111827;
    overflow-x: hidden;
}

/* ===========================
   HEADER STYLES
   =========================== */

.vsh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: transparent;
    transition: all 0.6s ease;
    z-index: 1000;
    box-shadow: none;
}

.vsh-header-scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0;
}

.vsh-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vsh-logo {
    height: 60px;
    transition: all 0.4s ease;
}

.vsh-header-scrolled .vsh-logo {
    height: 50px;
}

.vsh-nav {
    display: flex;
    align-items: center;
}

.vsh-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vsh-nav-item {
    margin-left: 30px;
}

.vsh-nav-link {
    text-decoration: none;
    color: #000f34;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.vsh-header-scrolled .vsh-nav-link {
    color: #333333 !important;
}

.vsh-nav-link:hover {
    color: #4a90e2 !important;
}

.vsh-nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.vsh-nav-link:hover::after {
    width: 100%;
}

.vsh-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.vsh-mobile-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vsh-header-scrolled .vsh-mobile-toggle span {
    background-color: #333333 !important;
}

/* ===========================
   PARTNER HERO SECTION
   =========================== */

.partner-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0077FF 0%, #0055CC 100%);
    position: relative;
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.partner-hero-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partner-hero-left {
    color: #ffffff;
}

.partner-hero-title {
    margin-bottom: 20px;
    color: #ffffff;
    overflow: hidden;
}

/* Title Styles - Default (below 1080px): Two separate B's - SIMPLE NO POSITIONING */
.partner-title-b {
    display: inline;
    font-size: clamp(48px, 6vw, 72px);
    color: var(--partner-yellow);
    font-weight: 800;
    line-height: 1.2;
}

.partner-title-rest {
    display: inline;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
}

.title-break {
    display: block;
}

/* Large screens (1080px+): Single large B with special positioning */
@media screen and (min-width: 1080px) {
    .partner-hero-title {
        line-height: 1.3;
    }

    .partner-title-b {
        float: left;
        position: relative;
        font-size: 200px;
        line-height: 1;
        margin-right: 10px;
        margin-top: 5px;
        bottom: 50px !important;
        margin-bottom: -50px !important;
    }

    .partner-title-rest {
        display: block;
        font-size: 52px;
        line-height: 1.3;
    }

    .title-break {
        display: none;
    }

    .partner-title-b-second {
        display: none;
    }
}

.partner-hero-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.5;
    clear: both;
}

.partner-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.6;
}

.partner-benefits i {
    color: var(--partner-yellow);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 14px;
    flex-shrink: 0;
}

.partner-benefits .highlight-text {
    color: var(--partner-yellow);
    font-weight: 700;
}

/* ===========================
   FORM CARD
   =========================== */

.partner-hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.partner-form-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-form-title {
    font-size: clamp(24px, 2.5vw, 28px);
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #333333;
}

.form-control:focus {
    outline: none;
    border-color: var(--partner-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}

.form-control::placeholder {
    color: #999999;
}

.btn-register {
    width: 100%;
    padding: 16px;
    background: var(--partner-blue);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3);
}

.btn-register:hover {
    background: #0055CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 255, 0.4);
}

.btn-register:active {
    transform: translateY(0);
}

/* ===========================
   GROW IMAGE
   =========================== */

.partner-grow-img {
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 220px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@media screen and (min-width: 1200px) {
    .partner-grow-img {
        width: 250px;
        bottom: -45%;
        right: -28%;
    }
}

/* ===========================
   PARTNER PATHS SECTION
   =========================== */

.partner-paths {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.partner-paths-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-paths-header {
    text-align: center;
    margin-bottom: 60px;
}

.partner-paths-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #0077FF;
    margin-bottom: 10px;
    line-height: 1.2;
}

.partner-paths-subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #5B21B6;
    margin: 0;
}

.partner-paths-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.partner-path-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

/* Second card (VCP) - reverse for alternating layout */
.partner-path-card:nth-child(2) {
    flex-direction: row-reverse;
}

.partner-path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.path-image {
    width: 450px;
    min-width: 450px;
    max-width: 450px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.path-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.path-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.path-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.path-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.path-details li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    padding-left: 0;
}

.path-details li strong {
    color: #1e293b;
    font-weight: 600;
}

.path-details li em {
    color: #64748b;
    font-style: italic;
    font-size: 14px;
}

.highlight-earnings {
    color: #0077FF;
    font-weight: 700;
    font-size: 18px;
}

/* Responsive adjustments for Partner Paths */
@media screen and (max-width: 1024px) {
    .partner-paths {
        padding: 60px 20px;
    }

    .partner-paths-header {
        margin-bottom: 40px;
    }

    .partner-paths-grid {
        gap: 25px;
    }

    .path-image {
        width: 250px;
        min-width: 250px;
        max-width: 250px;
        padding: 25px;
    }

    .path-content {
        padding: 25px 30px;
    }
}

@media screen and (max-width: 768px) {
    .partner-paths {
        padding: 50px 15px;
    }

    .partner-path-card {
        flex-direction: column !important;
        min-height: auto;
    }

    /* Reset alternating layout on mobile */
    .partner-path-card:nth-child(2) {
        flex-direction: column !important;
    }

    .path-image {
        width: 100%;
        min-width: 100%;
        height: 220px;
        padding: 25px;
    }

    .path-content {
        padding: 25px 20px;
    }

    .path-details li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .partner-paths {
        padding: 40px 15px;
    }

    .partner-paths-header {
        margin-bottom: 30px;
    }

    .path-image {
        height: 200px;
        padding: 20px;
    }

    .path-content {
        padding: 20px 15px;
    }

    .path-details li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .highlight-earnings {
        font-size: 15px;
    }
}



.vsf-footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.vsf-footer-row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -15px !important;
}

.vsf-footer-column {
    flex: 1 0 25% !important;
    padding: 0 15px !important;
    margin-bottom: 35px !important;
    min-width: 250px !important;
}

.vsf-footer-heading {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    color: #320000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.vsf-footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.vsf-footer-list-item {
    margin-bottom: 12px !important;
}

.vsf-footer-link {
    color: #0c002e !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: relative !important;
    padding-left: 0 !important;
}

.vsf-footer-link:hover {
    color: #3981e6e7 !important;
    transform: translateX(5px) !important;
}

.vsf-footer-link::before {
    content: "▶" !important;
    position: absolute !important;
    left: -15px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.vsf-footer-link:hover::before {
    opacity: 1 !important;
}

.vsf-office-info {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 4px !important;
}

.vsf-office-info b {
    color: #001e35 !important;
    font-weight: 600 !important;
}

.vsf-social-section {
    text-align: center !important;
    margin-top: 10px !important;
    padding-top: 10px !important;
}

.vsf-social-heading {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    color: #000000 !important;
    text-transform: uppercase !important;
}

.vsf-social-network {
    list-style: none !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vsf-social-item {
    margin: 0 25px !important;
}

.vsf-social-link {
    display: inline-block !important;
    width: 45px !important;
    height: 45px !important;
    background-color: transparent !important;
    border-radius: 50% !important;
    text-align: center !important;
    line-height: 45px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.vsf-social-link i {
    margin-top: 4px !important;
    color: #457b9d !important;
    font-size: 30px !important;
    transition: color 0.3s ease !important;
}

.vsf-social-link:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

.vsf-social-link:hover i.fa-facebook {
    color: #008cff !important;
}

.vsf-social-link:hover i.fa-instagram {
    color: #e1306c !important;
}

.vsf-social-link:hover i.fa-linkedin {
    color: #0077b5 !important;
}

.vsf-social-link:hover i.fa-youtube {
    color: #ff0000 !important;
}

.vsf-footer-bottom {
    padding-top: 20px !important;
    text-align: center !important;
    font-size: 14px !important;
    color: #001b64 !important;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

@media screen and (max-width: 1024px) {
    .vsh-header-container {
        padding: 0 15px;
    }

    .vsh-nav-item {
        margin-left: 20px;
    }

    .vsh-nav-link {
        font-size: 14px;
    }

    .vsh-logo {
        height: 50px;
    }

    .vsh-header-scrolled .vsh-logo {
        height: 45px;
    }

    .partner-hero-container {
        gap: 40px;
    }

    .partner-grow-img {
        width: 160px;
        bottom: -30%;
        right: -20%;
    }
}

@media screen and (max-width: 768px) {
    .vsh-header {
        padding: 12px 0;
    }

    .vsh-header-scrolled {
        padding: 8px 0;
    }

    .vsh-header-container {
        padding: 0 15px;
    }

    .vsh-logo {
        height: 45px;
    }

    .vsh-header-scrolled .vsh-logo {
        height: 40px;
    }

    .vsh-mobile-toggle {
        display: flex !important;
    }

    .vsh-nav {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .vsh-nav-active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .vsh-nav-list {
        flex-direction: column;
        width: 100%;
    }

    .vsh-nav-item {
        margin: 0 0 15px 0;
    }

    .vsh-nav-link {
        color: #333333 !important;
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    .vsh-header-scrolled .vsh-nav-link {
        color: #333333 !important;
    }

    .vsh-mobile-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .vsh-mobile-toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .vsh-mobile-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .partner-hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .partner-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-hero-left {
        text-align: center;
    }

    .partner-benefits li {
        text-align: left;
    }

    .partner-hero-right {
        align-items: center;
    }

    .partner-form-card {
        max-width: 100%;
    }

    .partner-grow-img {
        width: 140px;
        bottom: -25%;
        right: -15%;
    }

    .vsf-footer {
        padding: 30px 20px !important;
    }

    .vsf-footer-column {
        flex: 1 0 100% !important;
        margin-bottom: 25px !important;
        min-width: auto !important;
    }

    .vsf-footer-heading {
        font-size: 18px !important;
    }

    .vsf-footer-link {
        font-size: 13px !important;
    }

    .vsf-social-link {
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
    }

    .vsf-social-link i {
        font-size: 25px !important;
    }

    .vsf-footer-bottom {
        font-size: 12px !important;
    }

    .vsf-office-info {
        font-size: 13px !important;
    }

    .vsf-social-item {
        margin: 0 15px !important;
    }
}

@media screen and (max-width: 480px) {
    .vsh-header-container {
        padding: 0 10px;
    }

    .vsh-logo {
        height: 40px;
    }

    .vsh-header-scrolled .vsh-logo {
        height: 36px;
    }

    .vsh-mobile-toggle {
        width: 22px;
        height: 18px;
    }

    .vsh-nav {
        top: 55px;
        padding: 15px;
    }

    .vsh-nav-link {
        font-size: 15px;
    }

    .partner-hero {
        padding: 90px 15px 60px;
    }

    .partner-form-card {
        padding: 30px 25px;
    }

    .partner-grow-img {
        width: 120px;
        bottom: -20%;
        right: -10%;
    }

    .vsf-footer {
        padding: 25px 15px !important;
    }

    .vsf-footer-heading {
        font-size: 16px !important;
    }

    .vsf-footer-link {
        font-size: 12px !important;
    }

    .vsf-office-info {
        font-size: 12px !important;
    }

    .vsf-social-link {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
    }

    .vsf-social-link i {
        font-size: 22px !important;
    }

    .vsf-social-item {
        margin: 0 10px !important;
    }
}

@media screen and (max-width: 360px) {
    .partner-hero-title {
        font-size: 32px;
    }

    .partner-title-b {
        font-size: 60px;
    }

    .vsh-nav-item {
        margin: 0 0 15px 0;
    }

    .vsh-nav-link {
        color: #333333 !important;
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    .vsh-header-scrolled .vsh-nav-link {
        color: #333333 !important;
    }

    .vsh-mobile-toggle-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .vsh-mobile-toggle-active span:nth-child(2) {
        opacity: 0;
    }

    .vsh-mobile-toggle-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .partner-hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .partner-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-hero-left {
        text-align: center;
    }

    .partner-benefits li {
        text-align: left;
    }

    .partner-hero-right {
        align-items: center;
    }

    .partner-form-card {
        max-width: 100%;
    }

    .partner-grow-img {
        width: 140px;
        bottom: -25%;
        right: -15%;
    }

    .vsf-footer {
        padding: 30px 20px !important;
    }

    .vsf-footer-column {
        flex: 1 0 100% !important;
        margin-bottom: 25px !important;
        min-width: auto !important;
    }

    .vsf-footer-heading {
        font-size: 18px !important;
    }

    .vsf-footer-link {
        font-size: 13px !important;
    }

    .vsf-social-link {
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
    }

    .vsf-social-link i {
        font-size: 25px !important;
    }

    .vsf-footer-bottom {
        font-size: 12px !important;
    }

    .vsf-office-info {
        font-size: 13px !important;
    }

    .vsf-social-item {
        margin: 0 15px !important;
    }
}

@media screen and (max-width: 480px) {
    .vsh-header-container {
        padding: 0 10px;
    }

    .vsh-logo {
        height: 40px;
    }

    .vsh-header-scrolled .vsh-logo {
        height: 36px;
    }

    .vsh-mobile-toggle {
        width: 22px;
        height: 18px;
    }

    .vsh-nav {
        top: 55px;
        padding: 15px;
    }

    .vsh-nav-link {
        font-size: 15px;
    }

    .partner-hero {
        padding: 90px 15px 60px;
    }

    .partner-form-card {
        padding: 30px 25px;
    }

    .partner-grow-img {
        width: 120px;
        bottom: -20%;
        right: -10%;
    }

    .vsf-footer {
        padding: 25px 15px !important;
    }

    .vsf-footer-heading {
        font-size: 16px !important;
    }

    .vsf-footer-link {
        font-size: 12px !important;
    }

    .vsf-office-info {
        font-size: 12px !important;
    }

    .vsf-social-link {
        width: 35px !important;
        height: 35px !important;
        line-height: 35px !important;
    }

    .vsf-social-link i {
        font-size: 22px !important;
    }

    .vsf-social-item {
        margin: 0 10px !important;
    }
}

@media screen and (max-width: 360px) {
    .partner-hero-title {
        font-size: 32px;
    }

    .partner-title-b {
        font-size: 60px;
    }

    .partner-benefits li {
        font-size: 14px;
    }

    .partner-grow-img {
        width: 100px;
        bottom: -18%;
        right: -8%;
    }
}

/* ===========================
   TOP CTA BANNER
   =========================== */

.partner-cta-top {
    position: relative;
    background: url('handshake.webp') no-repeat center center/cover;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-cta-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 92, 246, 0.85);
    /* Blue overlay */
    z-index: 1;
}

.cta-top-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.cta-top-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}

.btn-cta-white {
    display: inline-block;
    background: #ffffff;
    color: #0b5cf6;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #0044cc;
}

/* ===========================
   WHY PARTNER WITH US
   =========================== */

.why-partner {
    padding: 100px 20px;
    background: #ffffff;
}

.why-partner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #1e0059;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.why-title::before,
.why-title::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 2px;
    background: #e0e0e0;
    vertical-align: middle;
    margin: 0 15px;
}

.why-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: #0b5cf6;
    box-shadow: 0 10px 30px rgba(11, 92, 246, 0.1);
    transform: translateY(-5px);
}

.why-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0b5cf6;
    color: #ffffff;
}

.why-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #3730a3;
    margin-bottom: 15px;
}

.why-card-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ===========================
   BOTTOM CTA SECTION
   =========================== */

.partner-cta-bottom {
    padding: 60px 20px 100px;
    background: #ffffff;
}

.cta-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-bottom-card {
    background: linear-gradient(135deg, #0077FF 0%, #0055CC 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    min-height: 300px;
}

.cta-man-image {
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 350px;
    z-index: 10;
}

.cta-man-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-bottom-content {
    margin-left: 400px;
    /* Space for image */
    color: #ffffff;
    flex: 1;
}

.cta-bottom-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    margin-bottom: 40px;
}

.cta-contact-grid {
    display: flex;
    gap: 40px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-icon-box {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0077FF;
    font-size: 24px;
}

.cta-contact-text {
    display: flex;
    flex-direction: column;
}

.cta-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.cta-value {
    font-size: 18px;
    font-weight: 700;
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media screen and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-bottom-card {
        padding: 40px;
    }

    .cta-man-image {
        width: 300px;
        left: 20px;
    }

    .cta-bottom-content {
        margin-left: 320px;
    }
}

@media screen and (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-bottom-card {
        flex-direction: column;
        padding: 40px 20px 20px;
        text-align: center;
        margin-top: 150px;
        /* Space for man image on top */
    }

    .cta-man-image {
        left: 50%;
        transform: translateX(-50%);
        bottom: auto;
        top: -180px;
        width: 280px;
    }

    .cta-bottom-content {
        margin-left: 0;
        margin-top: 80px;
    }

    .cta-contact-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-contact-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   NOTIFICATION SYSTEM
   =========================== */

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.notification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
}

.notification.notification-show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-info {
    border-left-color: #3b82f6;
}

.notification i {
    font-size: 22px;
    flex-shrink: 0;
}

.notification-success i {
    color: #10b981;
}

.notification-error i {
    color: #ef4444;
}

.notification-info i {
    color: #3b82f6;
}

.notification span {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}

/* ===========================
   PARTNER POPUP MODAL
   =========================== */

.partner-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.partner-popup-overlay.partner-popup-active {
    opacity: 1;
    visibility: visible;
}

.partner-popup-modal {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.partner-popup-active .partner-popup-modal {
    transform: scale(1);
}

.partner-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.partner-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.partner-popup-close i {
    font-size: 20px;
    color: #333;
}

.partner-popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Left Side - CTA */
.partner-popup-left {
    background: linear-gradient(135deg, #0077FF 0%, #0055CC 100%);
    padding: 50px 40px;
    border-radius: 20px 0 0 20px;
    display: flex;
    align-items: center;
    color: white;
}

.popup-cta-content {
    width: 100%;
}

.popup-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.popup-cta-subtitle {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.5;
}

.popup-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.popup-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.popup-benefit-item i {
    font-size: 20px;
    color: #FFD700;
    flex-shrink: 0;
}

.popup-benefit-item span {
    font-size: 15px;
    line-height: 1.4;
}

.popup-benefit-item strong {
    font-weight: 600;
}

.popup-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.popup-trust-badge i {
    font-size: 28px;
}

.popup-trust-badge span {
    font-size: 16px;
}

.popup-trust-badge strong {
    font-weight: 700;
}

/* Right Side - Form */
.partner-popup-right {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.popup-form-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 30px;
}

.popup-partner-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popup-form-group {
    position: relative;
}

.popup-form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.popup-form-control:focus {
    border-color: #0077FF;
    box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.1);
}

.popup-form-control::placeholder {
    color: #9ca3af;
}

.popup-btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0077FF 0%, #0055CC 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.popup-btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #0055CC 0%, #003399 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 119, 255, 0.3);
}

.popup-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.popup-btn-submit i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.popup-btn-submit:hover:not(:disabled) i {
    transform: translateX(5px);
}

.popup-privacy-text {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.popup-privacy-text i {
    font-size: 14px;
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .notification {
        transform: translateY(-100px);
    }

    .notification.notification-show {
        transform: translateY(0);
    }

    .partner-popup-overlay {
        padding: 10px;
    }

    .partner-popup-modal {
        border-radius: 16px;
        max-height: 95vh;
    }

    .partner-popup-content {
        grid-template-columns: 1fr;
    }

    .partner-popup-left {
        border-radius: 16px 16px 0 0;
        padding: 40px 30px;
    }

    .popup-cta-title {
        font-size: 26px;
    }

    .popup-cta-subtitle {
        font-size: 14px;
    }

    .popup-benefit-item {
        gap: 10px;
    }

    .popup-benefit-item i {
        font-size: 18px;
    }

    .popup-benefit-item span {
        font-size: 14px;
    }

    .popup-trust-badge {
        padding: 14px 16px;
    }

    .popup-trust-badge i {
        font-size: 24px;
    }

    .popup-trust-badge span {
        font-size: 14px;
    }

    .partner-popup-right {
        padding: 40px 30px;
    }

    .popup-form-title {
        font-size: 22px;
    }

    .popup-form-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .popup-form-control {
        padding: 12px 16px;
        font-size: 14px;
    }

    .popup-btn-submit {
        padding: 14px 20px;
        font-size: 15px;
    }

    .partner-popup-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }

    .partner-popup-close i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .popup-cta-title {
        font-size: 22px;
    }

    .partner-popup-left {
        padding: 30px 20px;
    }

    .partner-popup-right {
        padding: 30px 20px;
    }

    .popup-form-title {
        font-size: 20px;
    }
}