/* Partnership Page Styles */

/* Common */
.partnership-content {
    overflow: hidden;
}
.section-pad {
    padding: 60px 0;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}
.bg-light {
    background-color: #f9f9fc;
    border-radius: 8px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Breakout full width */
.breakout-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Block 1: Hero */
.p-hero {
    background: none;
    border-radius: 0;
    padding: 40px 0;
    margin-top: 0;
}
.p-hero-text h1 {
    font-size: 36px;
    font-weight: 800;
    color: #0095D4;
    margin-bottom: 20px;
}
.p-hero-text .lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}
.p-hero-buttons .fm-btn {
    margin-right: 15px;
    margin-bottom: 15px;
}
.p-hero-img img {
    max-width: 100%;
    height: auto;
}
.floating-anim {
    animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Block 2: Trust & Stats */
.p-about-text {
    font-size: 18px;
    font-style: italic;
    color: #444;
    max-width: 800px;
    margin: 0 auto 40px;
    border-left: 4px solid #FBDC2D;
    padding-left: 20px;
    text-align: left;
}
.p-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.p-stat-item {
    flex: 1 1 200px;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.p-stat-item:hover {
    transform: translateY(-5px);
}
.p-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #0095D4;
    line-height: 1;
    margin-bottom: 10px;
}
.p-stat-desc {
    font-size: 14px;
    color: #666;
}

/* Logo strip (Block 2 - Partners) Slider */
.p-logos-strip {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    opacity: 0;
    transition: opacity 0.5s;
}
.p-logos-strip.slick-initialized {
    opacity: 1;
}
.p-logos-strip .slick-track {
    display: flex;
    align-items: center;
}
.p-logos-strip span {
    font-size: 16px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
    white-space: nowrap;
    padding: 0 30px;
}
.p-logos-strip span:hover {
    opacity: 1;
}
.p-logos-strip img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
    margin: 0 30px;
}
.p-logos-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Block 3: Formats (Pricing Cards) */
.p-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}
.p-card:hover {
    transform: translateY(-5px);
}
.p-card h3 {
    margin: 0;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}
.p-card-drop h3 {
    background-color: #0095D4;
}
.p-card-opt h3 {
    background-color: #FBDC2D;
    color: #333;
}
.p-card-body {
    padding: 30px;
}
.p-card-body ul {
    list-style: none;
    padding: 0;
}
.p-card-body ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}
.p-card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

/* Block 4: Advantages (Icon Grid) */
.p-adv-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.p-adv-item {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-adv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.p-adv-item i {
    font-size: 32px;
    color: #0095D4;
    margin-bottom: 15px;
    display: block;
}
.p-adv-item h4 {
    color: #0095D4;
    font-weight: 700;
    margin-top: 0;
}

/* Block 5: Assortment Carousel (Slick) */
.p-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}
#assortment-carousel .swiper-slide {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    outline: none;
}
#assortment-carousel .swiper-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
/* Block 5: Assortment Slider */
.p-assortment-grid {
    margin: 0 -15px;
    opacity: 0;
    transition: opacity 0.5s;
}
.p-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}
.p-assortment-grid.slick-initialized {
    opacity: 1;
}
.p-assortment-item {
    padding: 0 15px;
    outline: none;
}
.p-assortment-item a {
    display: block;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s;
}
.p-assortment-item a:hover {
    transform: translateY(-10px);
}
.p-assortment-img {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}
.p-assortment-item a:hover .p-assortment-img {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.p-assortment-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.p-assortment-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Slick Dots & Arrows */
.slick-dots {
    bottom: -40px;
}
.slick-dots li button:before {
    font-size: 12px;
    color: #0095D4;
}
.slick-dots li.slick-active button:before {
    color: #0095D4;
}

/* Slick arrows */
.p-carousel-wrapper .slick-prev,
.p-carousel-wrapper .slick-next {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    background: #0095D4;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 0;
    line-height: 42px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.p-carousel-wrapper .slick-prev:hover,
.p-carousel-wrapper .slick-next:hover {
    background: #FBDC2D;
    color: #333;
}
.p-carousel-wrapper .slick-prev {
    left: -20px;
}
.p-carousel-wrapper .slick-next {
    right: -20px;
}
.p-carousel-wrapper .slick-prev::before {
    content: '\f104';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}
.p-carousel-wrapper .slick-next::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}
.p-carousel-wrapper .slick-prev:hover::before,
.p-carousel-wrapper .slick-next:hover::before {
    color: #333;
}
/* Slick dots */
.p-carousel-wrapper .slick-dots {
    text-align: center;
    padding: 0;
    margin-top: 20px;
    list-style: none;
}
.p-carousel-wrapper .slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.p-carousel-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    font-size: 0;
    cursor: pointer;
    transition: background 0.3s;
}
.p-carousel-wrapper .slick-dots li.slick-active button {
    background: #0095D4;
}

/* Block 6: Funnel Timeline */
.p-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}
.p-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    border-top: 2px dashed #ccc;
    z-index: 1;
}
.p-timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}
.p-timeline-num {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #FBDC2D;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(251,220,45,0.4);
}
.p-timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}
.p-timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Block 7: FAQ Accordion */
.p-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 40px;
}
.p-faq .panel-default {
    border: none;
    border-bottom: 1px solid #eee;
    box-shadow: none;
    border-radius: 0;
}
.p-faq .panel-heading {
    background: #fff;
    padding: 15px 25px;
}
.p-faq .panel-title a {
    font-weight: 600;
    color: #333;
    display: block;
    text-decoration: none;
    padding-right: 30px;
}
.p-faq .panel-title a::after {
    content: '+';
    float: right;
    font-size: 20px;
    color: #0095D4;
    font-weight: 700;
    transition: transform 0.3s;
}
.p-faq .panel-title a:not(.collapsed)::after {
    content: '−';
}
.p-faq .panel-body {
    border-top: none !important;
    padding: 15px 25px 25px 25px;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Block 8: Form */
.p-form-section {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
    border-radius: 12px;
    padding: 80px 0 160px;
    position: relative;
    overflow: hidden;
}
.p-form-section.has-footage {
    background: #e8f4fd;
}
.p-form-card {
    background: #fff;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}
.p-form-title {
    color: #0095D4;
    margin-top: 0;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}
.p-form-subtitle {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}
.p-form-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.5;
}
.p-form-group {
    margin-bottom: 22px;
    text-align: left;
}
.p-form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    font-size: 14px;
}
.p-form-group label .required {
    color: #ff4d4f;
}
.p-form-group .form-control {
    width: 100%;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px 18px;
    font-size: 15px;
    background: #fcfcfc;
    transition: all 0.3s;
}
.p-form-group .form-control:focus {
    border-color: #0095D4;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,149,212,0.1);
}
.p-form-radio {
    display: flex;
    gap: 25px;
    padding-top: 5px;
}
.p-form-radio label {
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
}
.p-form-radio input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
}
#button-send {
    height: 50px;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,149,212,0.3);
}

/* Modal Promo Code */
.p-promo-code {
    background: #FBDC2D;
    padding: 15px 30px;
    font-size: 28px;
    font-weight: 900;
    display: inline-block;
    border-radius: 8px;
    letter-spacing: 2px;
    margin: 15px 0;
    border: 2px dashed #333;
}

/* Block 8.1: Footer Footage */
.p-footer-footage {
    width: 100vw;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 1;
    pointer-events: none;
}
.p-footer-footage img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .p-timeline {
        flex-direction: column;
    }
    .p-timeline::before {
        display: none;
    }
    .p-timeline-item {
        margin-bottom: 30px;
    }
    .p-adv-item {
        flex: 1 1 100%;
    }
    .p-card {
        margin-bottom: 30px;
    }
    .p-hero {
        text-align: center;
    }
    .p-hero-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
    }
    .p-hero-buttons .fm-btn {
        display: flex;
        flex: 1;
        margin: 0;
        padding: 12px 5px;
        font-size: 13px;
        line-height: 1.2;
        justify-content: center;
        align-items: center;
        text-align: center;
        white-space: normal;
        border-radius: 25px;
    }
    .p-carousel-wrapper {
        padding: 0 30px;
    }
    .p-logos-strip {
        gap: 20px;
    }
    .p-logos-strip span {
        font-size: 14px;
    }
}

/* Success Modal Styling */
.p-modal-success {
    border-radius: 16px;
    overflow: hidden;
    border: none;
}
.p-modal-header {
    background: #0095D4;
    color: #fff;
    padding: 20px 45px;
    border: none;
    position: relative;
    text-align: center;
}
.p-modal-header .close {
    color: #fff;
    opacity: 0.8;
    text-shadow: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}
.p-modal-header .modal-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
    margin: 0;
    width: 100%;
}
.p-modal-text-top {
    font-size: 18px;
    color: #333;
    margin: 20px 0 10px;
}
.p-modal-promo-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}
.p-modal-promo-code {
    background: #FBDC2D;
    padding: 20px 40px;
    font-size: 36px;
    font-weight: 900;
    display: inline-block;
    border-radius: 12px;
    letter-spacing: 2px;
    margin: 10px 0 25px;
    border: 3px dashed #333;
    color: #333;
}
.p-modal-text-bottom {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    padding: 0 20px;
}
.p-modal-success .modal-footer {
    padding: 0 0 30px 0;
    display: flex;
    justify-content: center;
}
.p-modal-success .fm-btn {
    min-width: 180px;
    height: 46px;
}

