/* ==========================================================================
   VIBHU TRAVEL HUB - REDTAXI REFERENCE MATCH PARTNER STYLES
   ========================================================================== */

.partner-wrapper {
    background-color: #FFFFFF;
    color: #0F172A;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

/* 1. HERO BANNER (390px HEIGHT, SPLIT COMPOSITION) */
.vth-partner-hero {
    position: relative;
    width: 100%;
    height: 390px;
    background-color: #0b0b0d;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.vth-partner-hero-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.vth-partner-hero-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.vth-partner-hero:hover .vth-partner-hero-img-bg img {
    transform: scale(1.03);
}

/* Left Angled Vibhu Red Panel Shape */
.vth-partner-hero-red-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 54%;
    height: 100%;
    background: linear-gradient(125deg, #0b0b0d 0%, #8B0000 40%, #E31E24 100%);
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0% 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 5%;
}

.vth-partner-hero-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin: 0;
}

/* 2. BREADCRUMB STRIP */
.partner-breadcrumb-strip {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 18px 0;
}

.partner-breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
}

/* 3. PARTNER INTRODUCTION SECTION */
.partner-intro-section {
    padding: 60px 0 40px 0;
    background-color: #FFFFFF;
}

.partner-intro-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.partner-intro-h2 {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.25;
    color: #0F172A;
    margin-bottom: 16px;
}

.partner-intro-desc {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* 4. SUBMIT YOUR APPLICATION FORM */
.partner-simple-form-section {
    padding: 40px 0 70px 0;
    background-color: #F8FAFC;
}

.partner-form-card-about {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 50px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
    margin: 0 auto;
}

.partner-simple-label-form {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.partner-simple-input {
    background-color: #F8FAFC !important;
    border: 1px solid #CBD5E1 !important;
    color: #0F172A !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
}

.partner-simple-input:focus {
    background-color: #ffffff !important;
    border-color: #E31E24 !important;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15) !important;
    outline: none !important;
}

.partner-simple-input::placeholder {
    color: #94A3B8 !important;
}

.partner-consent-text {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.5;
}

.partner-check-label {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
    cursor: pointer;
}

.btn-partner-submit {
    background-color: #E31E24 !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 14px 45px !important;
    border-radius: 50px !important;
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-partner-submit:hover {
    background-color: #c41432 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.4) !important;
}

/* ENTRANCE ANIMATIONS */
@keyframes panelRevealLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes textFadeInUp {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes imageRevealScale {
    0% { opacity: 0; transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}

.anim-hero-bg {
    animation: imageRevealScale 1000ms cubic-bezier(0.22, 1, 0.36, 1) 0ms forwards;
}

.anim-hero-panel {
    animation: panelRevealLeft 800ms cubic-bezier(0.22, 1, 0.36, 1) 150ms forwards;
}

.anim-hero-title {
    animation: textFadeInUp 750ms cubic-bezier(0.22, 1, 0.36, 1) 350ms forwards;
}

@media (prefers-reduced-motion: reduce) {
    .anim-hero-bg,
    .anim-hero-panel,
    .anim-hero-title {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* TABLET RESPONSIVE (768px - 991px) */
@media (max-width: 991px) {
    .vth-partner-hero {
        height: 320px;
    }
    .vth-partner-hero-red-panel {
        width: 62%;
        padding-left: 6%;
    }
    .vth-partner-hero-title {
        font-size: 2.6rem;
    }
    .partner-intro-h2 {
        font-size: 2.1rem;
    }
    .partner-form-card-about {
        padding: 36px 28px;
    }
}

/* MOBILE RESPONSIVE (SMARTPHONES < 768px) - MATCHES SCREENSHOT */
@media (max-width: 767px) {
    .vth-partner-hero {
        height: 250px;
        position: relative;
    }
    .vth-partner-hero-img-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
    }
    .vth-partner-hero-img-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
    }
    .vth-partner-hero-red-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 72%;
        height: 100%;
        z-index: 2;
        background: linear-gradient(125deg, #0b0b0d 0%, #8B0000 45%, #E31E24 100%);
        clip-path: polygon(0 0, 100% 0, 78% 100%, 0% 100%);
        display: flex;
        align-items: center;
        padding-left: 20px;
        padding-right: 15px;
        text-align: left;
    }
    .vth-partner-hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        font-weight: 800;
    }
    .partner-breadcrumb-strip {
        padding: 12px 0;
    }
    .partner-intro-section {
        padding: 30px 0 20px 0;
        text-align: center;
    }
    .partner-intro-h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .partner-intro-desc {
        font-size: 0.95rem;
        line-height: 1.65;
    }
    .partner-simple-form-section {
        padding: 20px 0 40px 0;
    }
    .partner-form-card-about {
        padding: 24px 18px;
        border-radius: 18px;
    }
    .btn-partner-submit {
        width: 100% !important;
    }
}