/* ==========================================================================
   PARTNER WITH US PAGE STYLES - WORTAL THEME
   File: assets/css/partner-us.css
   ========================================================================== */

/* Main Template Wrapper */
.custom-partner-us-template {
    width: 100%;
    overflow-x: hidden;
    background-color: #FFFFFF;
    color: #1E293B;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.partner-hero-section {
    position: relative;
    width: 100%;
    padding: 120px 0 90px;
    overflow: hidden;
}

/* Container */
.partner-hero-container {
    width: 100%;
    /* max-width: 1240px; */
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Hero Grid Layout */
.partner-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
}

/* ==========================================================================
   LEFT COLUMN - HERO CONTENT
   ========================================================================== */
.partner-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: 50px;
    margin-left: 140px;
}

/* Badge / Tag */
.partner-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background-color: #FFF0E8;
    color: #FF5018;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 50px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 80, 24, 0.15);
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(255, 80, 24, 0.06);
    transition: all 0.25s ease;
}

.partner-hero-badge:hover {
    background-color: #FFE6D9;
    transform: translateY(-1px);
}

/* Main Heading */
.partner-hero-title {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #1E293B;
    margin: 0 0 18px 0;
}

.partner-hero-title .partner-title-highlight {
    color: #FF5018;
    display: inline;
}

/* Subheading (Bold statement) */
.partner-hero-subheading {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 600;
    line-height: 1.45;
    color: #334155;
    margin: 0 0 12px 0;
}

/* Description text */
.partner-hero-description {
    font-size: clamp(14.5px, 1.4vw, 16px);
    font-weight: 400;
    line-height: 1.65;
    color: #64748B;
    margin: 0 0 32px 0;
    max-width: 520px;
}

/* CTA Action Buttons Group */
.partner-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;

}

.partner-hero-buttons .btn {
    font-size: 15px;
    padding: 13px 26px;
}

/* ==========================================================================
   RIGHT COLUMN - FORM WRAPPER
   ========================================================================== */
.partner-hero-form-column {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    margin-right: 50px;
}

.partner-hero-form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Form Container Fine-tuning in Hero */
.partner-hero-form-wrapper .wl-partner-form-container {
    margin: 0 auto 0 auto;
    width: 100%;
    max-width: 440px;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(180deg, #FF5018 0%, #FF6B38 100%) border-box;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.12),
        0 0 30px rgba(255, 80, 24, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-hero-form-wrapper .wl-partner-form-container:hover {
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.15),
        0 0 35px rgba(255, 80, 24, 0.12);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet (Landscape & Portrait) */
@media (max-width: 991px) {
    .partner-hero-section {
        padding: 60px 0 70px;
    }

    .partner-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .partner-hero-content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .partner-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .partner-hero-buttons {
        justify-content: center;
    }

    .partner-hero-form-column {
        justify-content: center;
        margin-top: 25px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    .partner-hero-section {
        padding: 60px 0 50px;
    }

    .partner-hero-container {
        padding: 0 16px;
    }

    .partner-hero-grid {
        gap: 36px;
        padding-top: 50px;
    }

    .partner-hero-badge {
        font-size: 12.5px;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .partner-hero-title {
        margin-bottom: 14px;
    }

    .partner-hero-subheading {
        margin-bottom: 10px;
    }

    .partner-hero-description {
        margin-bottom: 24px;
    }

    .partner-hero-buttons {
        gap: 12px;
    }

    .partner-hero-buttons .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .partner-hero-form-wrapper .wl-partner-form-container {
        padding: 24px 18px;
        border-radius: 24px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .partner-hero-title {
        font-size: 28px;
    }

    .partner-hero-form-wrapper .wl-partner-form-container {
        padding: 20px 14px;
    }
}



.wortal-cards-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.wortal-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 30px;
    cursor: pointer;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
    border: 1px solid #E5E5E5;
}

.wortal-card:hover {
    background: #FF7A33;
    transform: translateY(-4px);
}

.wortal-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: #FFF3EA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.35s ease;
    overflow: hidden;
}

.wortal-card-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: absolute;
}

.wortal-card-icon {
    position: relative;
}

.wortal-card-icon .icon-orange {
    opacity: 1;
}

.wortal-card-icon .icon-white {
    opacity: 0;
}

.wortal-card:hover .wortal-card-icon .icon-orange {
    opacity: 0;
}

.wortal-card:hover .wortal-card-icon .icon-white {
    opacity: 1;
}

.wortal-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    transition: color 0.35s ease;
    line-height: 1.3;
}

.wortal-card:hover .wortal-card-title {
    color: #ffffff;
}

.wortal-card-desc {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.65;
    transition: color 0.35s ease;
}

.wortal-card:hover .wortal-card-desc {
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 600px) {
    .wortal-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}



.wortal-partner-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

.wortal-partner-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*.wortal-partner-card:hover {*/
/*  transform: translateY(-5px);*/
/*  box-shadow: 0 10px 36px rgba(244,121,32,0.18);*/
/*}*/

/* Top header section */
.wortal-card-header {
    background: #ffebe6;
    text-align: center;
    padding: 28px 20px 22px;
}

.wortal-card-number {
    font-size: 48px;
    font-weight: 800;
    color: #F47920;
    line-height: 1;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
}

.wortal-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Body section */
.wortal-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wortal-card-intro {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.wortal-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.wortal-checklist li {
    font-size: 13.5px;
    color: #333333;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.wortal-checklist li::before {
    content: "✓";
    color: #FF4000;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Best for footer tag */
.wortal-best-for {
    margin-top: auto;
    background: #F7F7F7;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #777777;
    line-height: 1.5;
}

.wortal-best-for span {
    font-weight: 600;
    color: #555;
}

@media (max-width: 720px) {
    .wortal-partner-wrapper {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ==========================================================================
   HOW WORTAL SUPPORTS YOU SECTION
   ========================================================================== */
.support-section {
    position: relative;
    width: 100%;
    background-color: #2C2725;
    padding: 85px 0;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    box-sizing: border-box;
    margin-top: 40px;
}

.support-container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Column: Heading & Text */
.support-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-heading {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.support-heading-highlight {
    color: #FF5018;
    display: inline-block;
}

.support-description {
    font-size: clamp(15px, 1.4vw, 17px);
    color: #E2E8F0;
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-weight: 400;
}

.support-description:last-child {
    margin-bottom: 0;
}

/* Right Column: Support Items List */
.support-list-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.support-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 80, 24, 0.5);
    transform: translateX(5px);
}

.support-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 80, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FF7A33;
    transition: background 0.3s ease;
}

.support-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: #FF7A33;
    display: block;
}

.support-item-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.support-item:hover .support-item-icon {
    background: rgba(255, 80, 24, 0.22);
}

.support-item-text {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
}

/* ==========================================================================
   SUPPORT SECTION RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .support-section {
        padding: 65px 0;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-content-col {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .support-section {
        padding: 50px 0;
    }

    .support-container {
        padding: 0 16px;
    }

    .support-grid {
        gap: 32px;
    }

    .support-heading {
        margin-bottom: 16px;
    }

    .support-item {
        padding: 13px 15px;
        gap: 12px;
        border-radius: 12px;
    }

    .support-item-icon {
        width: 32px;
        height: 32px;
    }

    .support-item-icon svg {
        width: 18px;
        height: 18px;
    }

    .support-item-icon img {
        width: 18px;
        height: 18px;
    }

    .support-item-text {
        font-size: 14.5px;
    }
}


.wortal-steps-wrapper {
    font-family: "Plus Jakarta Sans", Sans-serif;
    max-width: 1960px;
    margin: 0 auto;
    padding: 40px 20px;
}

.wortal-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

/* Dashed line connecting all circles */
.wortal-steps-row::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(10% + 22px);
    right: calc(10% + 22px);
    height: 2px;
    background-image: repeating-linear-gradient(to right,
            #F47920 0px,
            #F47920 8px,
            transparent 8px,
            transparent 18px);
    z-index: 0;
}

.wortal-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.wortal-step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F47920;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(244, 121, 32, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*.wortal-step:hover .wortal-step-circle {*/
/*  transform: scale(1.12);*/
/*  box-shadow: 0 6px 20px rgba(244,121,32,0.5);*/
/*}*/

.wortal-step-label {
    font-size: 18px;
    color: #333333;
    line-height: 1.55;
    font-weight: 700;
    max-width: 200px;
}

@media (max-width: 640px) {
    .wortal-steps-row {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .wortal-steps-row::before {
        display: none;
    }

    .wortal-step {
        flex-direction: row;
        text-align: left;
        gap: 18px;
        padding: 0;
        width: 100%;
        max-width: 320px;
        align-items: flex-start;
    }

    .wortal-step-circle {
        margin-bottom: 0;
        flex-shrink: 0;
        margin-top: 0;
    }

    .wortal-step-label {
        font-size: 15px;
        max-width: 220px;
        /*padding-top: 10px;*/
    }

    /* Vertical dashed connector using wrapper */
    .wortal-step:not(:last-child) .wortal-step-circle-wrap::after {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        margin: 4px auto 4px;
        background-image: repeating-linear-gradient(to bottom,
                #F47920 0px,
                #F47920 6px,
                transparent 6px,
                transparent 14px);
    }

    .wortal-step-circle-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
}



.partner-section {
    max-width: 1280px;
    margin: 0 auto 80px;
    padding: 0 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.partner-inner {
    background: #FF8A45;
    border-radius: 28px;
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND SHAPES (soft circles like image) */
.partner-inner::before,
.partner-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.partner-inner::before {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -120px;
}

.partner-inner::after {
    width: 220px;
    height: 220px;
    bottom: -100px;
    right: -100px;
}

.partner-inner h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.partner-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
}

/* BUTTONS */
.partner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.partner-buttons a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    padding: 10px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* DARK BUTTON */
.btn-dark {
    background: #1E1E1E;
    color: #fff;
}

.btn-dark:hover {
    background: #1E1E1E;
    color: #fff;
}

/* LIGHT BUTTON */
.btn-light {
    background: #fff;
    color: #FF4D00;
}

.btn-light .arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FF4D00;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* RESPONSIVE */
@media(max-width:767px) {
    .partner-inner {
        padding: 50px 20px;
    }

    .partner-inner h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .partner-inner p {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .partner-buttons a {
        width: fit-content;
        justify-content: center;
    }
}

.partner-process-section {
    margin: 50px 0;
}