/* =========================================================
   DISTRIBUTOR LEAD FORM
========================================================= */

.distributor-section {
    width: 100%;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 10% 10%, rgba(243, 146, 15, 0.08), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(15, 91, 106, 0.08), transparent 30%),
        #f7faf9;
    position: relative;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.distributor-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 55px;
    border-radius: 28px;
    border: 1px solid rgba(15, 91, 106, 0.10);
    box-shadow:
        0 25px 70px rgba(15, 91, 106, 0.10),
        0 5px 20px rgba(0, 0, 0, 0.04);
    position: relative;
}


/* =========================================================
   TOP ACCENT
========================================================= */

.distributor-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 4px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        #f3920f,
        #0f5b6a
    );
    border-radius: 0 0 10px 10px;
}


/* =========================================================
   HEADER
========================================================= */

.distributor-header {
    text-align: center;
    margin-bottom: 42px;
}


.distributor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 17px;
    margin-bottom: 15px;

    background: rgba(243, 146, 15, 0.10);
    color: #f3920f;

    border: 1px solid rgba(243, 146, 15, 0.20);
    border-radius: 50px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.distributor-header h2 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;

    font-weight: 700;
    color: #123c47;
}


.distributor-header h2 span {
    color: #f3920f;
}


.distributor-header p {
    max-width: 620px;
    margin: 15px auto 0;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.8;

    color: #718083;
}


/* =========================================================
   FORM
========================================================= */

.distributor-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    width: 100%;
}


.form-group label {
    display: block;

    margin-bottom: 9px;

    color: #173f49;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
}


.form-group label span {
    color: #f3920f;
    margin-left: 2px;
}


/* =========================================================
   INPUT + SELECT
========================================================= */

.form-group input,
.form-group select {
    width: 100%;
    height: 54px;

    padding: 0 17px;

    border: 1px solid #dce6e7;
    border-radius: 12px;

    background: #fbfdfd;

    color: #173f49;

    font-family: "Poppins", sans-serif;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;

    box-sizing: border-box;
}


.form-group input::placeholder {
    color: #a6b2b4;
}


.form-group input:hover,
.form-group select:hover {
    border-color: #b9ced1;
}


.form-group input:focus,
.form-group select:focus {
    background: #ffffff;
    border-color: #0f5b6a;

    box-shadow:
        0 0 0 4px rgba(15, 91, 106, 0.08);
}


/* =========================================================
   TWO COLUMN ROW
========================================================= */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* =========================================================
   RADIO OPTIONS
========================================================= */

.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


.radio-grid.two {
    grid-template-columns: repeat(2, 1fr);
}


.radio-card {
    position: relative;

    margin: 0 !important;
    padding: 0 !important;

    cursor: pointer;
}


.radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


.radio-card span {
    width: 100%;
    min-height: 52px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 1px solid #dce6e7;
    border-radius: 12px;

    background: #fbfdfd;

    color: #536a6e;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;

    text-align: center;

    transition:
        all 0.3s ease;
}


/* HOVER */

.radio-card:hover span {
    border-color: #0f5b6a;
    color: #0f5b6a;
    transform: translateY(-2px);
}


/* SELECTED */

.radio-card input:checked + span {
    background: #0f5b6a;
    border-color: #0f5b6a;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(15, 91, 106, 0.18);

    transform: translateY(-2px);
}


/* =========================================================
   PHONE ERROR
========================================================= */

.phone-error {
    display: block;

    margin-top: 7px;

    color: #d62828;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   MONTH INPUT
========================================================= */

#purchaseMonth {
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.distributor-submit {
    width: 100%;
    min-height: 58px;

    margin-top: 8px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #0f5b6a,
        #123f4a
    );

    color: #ffffff;

    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.2px;

    cursor: pointer;

    position: relative;
    overflow: hidden;

    box-shadow:
        0 12px 28px rgba(15, 91, 106, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* BUTTON SHINE */

.distributor-submit::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.20),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}


.distributor-submit:hover::before {
    left: 140%;
}


.distributor-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(15, 91, 106, 0.25);
}


.distributor-submit:active {
    transform: translateY(0);
}


/* =========================================================
   WHATSAPP ICON
========================================================= */

.whatsapp-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.15);

    font-size: 17px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 768px) {

    .distributor-section {
        padding: 60px 16px;
    }

    .distributor-container {
        padding: 40px 28px;
        border-radius: 22px;
    }

    .distributor-header {
        margin-bottom: 32px;
    }

    .radio-grid {
        grid-template-columns: 1fr;
    }

    .radio-grid.two {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .distributor-section {
        padding: 45px 12px;
    }

    .distributor-container {
        padding: 35px 18px;
        border-radius: 18px;
    }

    .distributor-header h2 {
        font-size: 30px;
    }

    .distributor-header p {
        font-size: 13px;
        line-height: 1.7;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .radio-grid,
    .radio-grid.two {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select {
        height: 52px;
        font-size: 13px;
    }

    .distributor-submit {
        min-height: 55px;
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .distributor-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .distributor-container {
        padding: 30px 15px;
    }

    .distributor-header h2 {
        font-size: 27px;
    }

    .distributor-badge {
        font-size: 9px;
        letter-spacing: 1.3px;
    }

}

/* =====================================================
   CATALOGUE DOWNLOAD SECTION
===================================================== */

.catalogue-section {
    display: none;
    max-width: 850px;
    margin: 45px auto 0;
    padding: 45px 35px;
    text-align: center;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(8, 116, 127, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    animation: catalogueReveal 0.7s ease forwards;
}

.catalogue-section.show {
    display: block;
}

.catalogue-success-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08747F;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 12px 30px rgba(8, 116, 127, 0.25);
}

.catalogue-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: rgba(8, 116, 127, 0.08);
    color: #08747F;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.catalogue-section h2 {
    margin: 14px 0 8px;
    font-size: 38px;
    font-weight: 800;
    color: #222222;
}

.catalogue-section > p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: #777777;
    line-height: 1.7;
    font-size: 15px;
}


/* DOWNLOAD CARDS */

.catalogue-downloads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    text-align: left;
}

.catalogue-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    text-decoration: none !important;
    background: #fffaf5;
    border: 1px solid rgba(8, 116, 127, 0.12);
    border-radius: 18px;
    transition: all 0.35s ease;
    overflow: hidden;
}

.catalogue-card:hover {
    transform: translateY(-6px);
    background: #08747F;
    box-shadow: 0 18px 35px rgba(8, 116, 127, 0.22);
}


/* PDF ICON */

.catalogue-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #08747F;
    color: #ffffff;
    font-size: 23px;
    transition: 0.35s ease;
}

.catalogue-card:hover .catalogue-icon {
    background: #ffffff;
    color: #08747F;
}


/* TEXT */

.catalogue-info {
    flex: 1;
}

.catalogue-info h3 {
    margin: 0 0 5px;
    color: #222222;
    font-size: 16px;
    font-weight: 800;
    transition: 0.35s ease;
}

.catalogue-info span {
    color: #888888;
    font-size: 13px;
    transition: 0.35s ease;
}

.catalogue-card:hover .catalogue-info h3,
.catalogue-card:hover .catalogue-info span {
    color: #ffffff;
}


/* DOWNLOAD ARROW */

.catalogue-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(8, 116, 127, 0.1);
    color: #08747F;
    transition: 0.35s ease;
}

.catalogue-card:hover .catalogue-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}


/* ANIMATION */

@keyframes catalogueReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .catalogue-section {
        margin: 30px 15px 0;
        padding: 35px 20px;
        border-radius: 22px;
    }

    .catalogue-section h2 {
        font-size: 30px;
    }

    .catalogue-downloads {
        grid-template-columns: 1fr;
    }

    .catalogue-card {
        padding: 17px;
    }

}

@media (max-width: 400px) {

    .catalogue-section {
        padding: 30px 15px;
    }

    .catalogue-section h2 {
        font-size: 26px;
    }

    .catalogue-info h3 {
        font-size: 14px;
    }

}