
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-start: #f5f6fa;
    --bg-end: #dde3f0;
    --bg-white: #ffffff;
    --bg-abu:  #edf0f9;
    --bg-blue: #c7d5f2;

    --brand-navy: #002A54;
    --brand-orange: #E67E22;
    --brand-light: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-main: #333333;
    --line-color: #98a1ab;

    --brand-navy: #153268;
    --brand-navy-light: #2a529e;
    --brand-orange: #f28b1e;
    --price-red: #a03b1e;
    --price-red-light: #c22f2f;
    --bg-gradient: linear-gradient(to bottom, #ffffff 0%, #e6eff7 100%);

    --card-bg: #ffffff;
    --card-border: #e8e8e8;
    --card-border-active: #f0c367;
    --card-shadow: 0 15px 20px rgba(0, 0, 0, 0.06);
    --card-shadow-active: 0 15px 40px rgba(220, 160, 40, 0.25);

    --btn-gold-1: #cb9633;
    --btn-gold-2: #ffd486;
    --btn-gold-3: #cb9633;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html,
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-body);
    background: linear-gradient(to bottom, var(--bg-start) 0%, var(--bg-end) 100%);
}

.section-product{
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-abu) 100%);
}

.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0;
}

.container img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}

.antioksidan-section *,

.antioksidan-section *::before,

.antioksidan-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.antioksidan-section {
    font-family: 'Inter', sans-serif;
    background-color: var(--brand-light);
    color: var(--text-main);
    /* overflow-x: hidden; */
    background-image: url('https://evolife.co.id/wp-content/uploads/2026/08/Group-14210-1-1.png');
    background-size: cover;
    background-position: center center;
    background-attachment: attachment;
    background-repeat: no-repeat;
}

.antioksidan-section h1,
.antioksidan-section h2,
.antioksidan-section h3,
.antioksidan-section h4,
.antioksidan-section h5,
.antioksidan-section h6 {
    font-family: 'Poppins', sans-serif;
}

.antioksidan-section .antioksidan-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

.antioksidan-section .header-title {
    color: var(--brand-navy);
    font-size: 3.7rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: -2px;
}

.antioksidan-section .title-divider {
    max-width: 80%;
    height: auto;
    margin-bottom: 70px;
}

/* Radial Layout */
.antioksidan-section .radial-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: 1350px;
    /* Fixed height to allow absolute positioning */
    margin: 20px auto 90px auto;
    /* Large bottom margin reserves document space for the expanding cards to prevent sticking */
}

.antioksidan-section .center-bottle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 437px;
    height: 678px;
}

.antioksidan-section .center-bottle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.15));
}

/* Wrapper for absolute positioning and connecting lines */
.antioksidan-section .card-wrapper {
    position: absolute;
    width: 230px;
    /* No z-index here so it DOES NOT create a stacking context */
}

/* The connecting lines (Desktop only) */
.antioksidan-section .card-wrapper::before {
    content: "";
    position: absolute;
    left: var(--line-start-x);
    top: var(--line-start-y);
    width: var(--line-length);
    height: 1px;
    background-color: #d6a23c;
    transform-origin: left center;
    transform: rotate(var(--line-angle));
    z-index: 1;
    pointer-events: none;
}

/* The actual card */
.antioksidan-section .card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 10px 0px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 20;
    /* Ensure card is above the bottle and lines */
    background-clip: padding-box;
}

.antioksidan-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 126, 34, 0.2);
    /* Soft orange border on hover */
}

.antioksidan-section .card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--brand-orange);
    box-shadow: 1px 2px 5px rgb(0 0 0 / 34%);
    padding: 2px;
    margin-bottom: 15px;
    background-color: white;
    /* Prevent transparent pngs from blending weirdly */
}

.antioksidan-section .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
    /* Shift padding to header so the underline space doesn't skew flex alignment */
}

.antioksidan-section .card-title {
    color: var(--brand-orange);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    position: relative;
    min-width: 0;
    /* allow flex text wrapping without overflowing */
    word-wrap: break-word;
}

.antioksidan-section .card-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--brand-orange);
    border-radius: 2px;
}

.antioksidan-section .toggle-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--brand-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
}

.antioksidan-section .toggle-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--brand-orange);
    stroke-width: 3;
    fill: none;
    transition: stroke 0.3s ease;
}

/* Accordion Content */
.antioksidan-section .card-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    padding-top: 20px;
}

.antioksidan-section .card-content {
    overflow: hidden;
    text-align: center;
}

.antioksidan-section .card-text {
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0px 10px 10px;
}

/* Active State (Expanded Accordion) */
.antioksidan-section .card-wrapper.active .card {
    z-index: 30;
    /* Elevate the expanded card above the others */
}

.antioksidan-section .card-wrapper.active .card-content-wrapper {
    grid-template-rows: 1fr;
}

.antioksidan-section .card-wrapper.active .toggle-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .antioksidan-section .header-title {
        font-size: 1.5rem;
        margin-bottom: 0px;
        padding: 0 10px;
        letter-spacing: 0;
    }

    .antioksidan-section .center-bottle img{
        width: auto;
        height: 220px;
    }

    .antioksidan-section .title-divider {
        margin-bottom: 50px;
    }

    .antioksidan-section .radial-container {
        width: 100vw;
        /* Force exact viewport width */
        max-width: 100vw;
        margin: 0 auto 40px auto;
        left: 50%;
        transform: translateX(-50%);
        /* Iron-clad centering */
    }

    .antioksidan-section .center-bottle {
        width: 120px;
        /* Slightly larger bottle */
        height: 185px;
    }

    .antioksidan-section .card-wrapper {
        width: 115px;
        /* Slightly wider cards */
    }

    /* Adjust the connector line origin for smaller card */
    .antioksidan-section .card-wrapper::before {
        top: 31px;
        /* 10 padding + 21 half-height */
        left: 52.5px;
        /* Center horizontally */
    }

    .antioksidan-section .card {
        padding: 7px 2px;
        /* More padding */
        border-radius: 10px;
    }
    .antioksidan-section .card-content-wrapper{
        padding-top: 5px;
    }

    .antioksidan-section .card-image {
        width: 42px;
        height: 42px;
        margin-bottom: 6px;
        padding: 1px;
    }

    .antioksidan-section .card-header {
        padding-bottom: 8px;
        /* Extra bottom space before expansion */
        gap: 4px;
    }

    .antioksidan-section .card-title {
        font-size: 0.55rem;
    }

    .antioksidan-section .card-title::after {
        bottom: -3px;
        width: 12px;
        height: 2px;
    }

    .antioksidan-section .toggle-icon {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .antioksidan-section .toggle-icon svg {
        width: 8px;
        height: 8px;
        stroke-width: 1.5;
    }

    .antioksidan-section .card-text {
        font-size: 0.45rem;
        padding-top: 0 3px;
    }
}

.cointaner {
    width: 100%;
    height: 100%;
}

/* ####
###### section product
#### */
.section-product .logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.section-product .logo img {
    width: auto;
    height: 120px;
}

.section-product .header-section {
    text-align: center;
    margin-bottom: 40px;
}

.section-product .main-title {
    font-family: var(--font-heading);
    font-size: 6.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    /* Navy linear gradient text */
    background: linear-gradient(to right, var(--brand-navy), var(--brand-navy-light));
    -webkit-background-clip: text;
    background-clip: text; /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: -2px;
}

.section-product .subtitle {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

/* Card Container */
.section-product .cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Product Card */
.section-product .product-card {
    background: linear-gradient(to bottom, #f4f7fb 0%, #ffffff 320px);
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 16px;
    width: 100%;
    max-width: 330px;
    padding: 30px 15px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-product .product-card.active {
    background: linear-gradient(to bottom, #fdf6e6 0%, #ffffff 320px);
    background-color: #ffffff;
    border-color: #eab75c;
    box-shadow: 0 15px 45px rgba(200, 140, 30, 0.35);
}

/* Ribbon Image */
.section-product .ribbon-img {
    position: absolute;
    top: -23px;
    right: -55px;
    width: 240px; /* Adjust size based on your PNG */
    height: auto;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

/* Checkbox */
.section-product .checkbox {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.section-product .product-card .checkbox {
    background-color: #d8d8d8; /* Unchecked gray */
}

.section-product .product-card.active .checkbox {
    background-color: #6fc575; /* Checked green */
}

.section-product .checkbox svg {
    width: 14px;
    height: 14px;
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Product Image */
.section-product .product-img {
    width: 100%;
    max-width: 300px;
    height: 300px; /* Fixed height normalizes different image aspect ratios */
    object-fit: contain; /* Prevents stretching, centers the image in the box */
    margin-top: 20px;
    margin-bottom: 25px;
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.15));
}

/* Product Title */
.section-product .product-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    line-height: 35px;
    font-weight: 800;
    color: var(--brand-navy);
    text-align: center;
    margin-bottom: 30px;
    min-height: 70px;
}
.section-product .product-title .product-subtitle {
    font-size: 1.7rem;
}

/* Price Section */
.section-product .price-section {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-product .price-row-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-product .normal-price-block, .hemat-block {
    display: flex;
    flex-direction: column;
}

.section-product .hemat-block {
    text-align: right;
    border-left: 2px solid #eaeaea;
    padding-left: 15px;
}

.section-product .price-label {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 0;
    font-weight: 800;
    color: #333;
}

.section-product .price-label.red {
    color: var(--price-red-light);
}

.section-product .price-label.black {
    font-family: var(--font-heading);
    color: #333;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 10px;
    margin-top: 10px;
    letter-spacing: -1px;
}

.section-product .normal-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.section-product .normal-price-currency {
    font-size: 1rem;
}

.section-product .normal-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 3px;
    background-color: var(--price-red-light);
    transform: translateY(-50%);
}

.section-product .hemat-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--price-red-light);
}

.section-product .special-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Expand to card edges */
    margin: 0 -15px -30px -15px;
    padding: 20px 15px 50px 15px;
    border-radius: 0 0 14px 14px;
    background: transparent;
    position: relative;
}

/* Padded divider line */
.section-product .special-price-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background-color: #eaeaea;
}

.section-product .product-card.active .special-price-block {
    background: linear-gradient(to bottom, #fdf6e6 0%, #f4f1eb 100%); /* Same gradient fade as the top */
}

.section-product .special-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(
        180deg,
        #C21A1A 0%,
        #A80E0E 45%,
        #7D0808 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-product .special-price-currency {
    font-size: 1.8rem;
    margin-right: -5px;
    position: relative;
    top: -6px;
}

/* Action Buttons */
.section-product .action-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin:auto;
    max-width: 380px;
}

.section-product .btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 18px 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-product .btn:hover {
    transform: translateY(-2px);
}

.section-product .btn-primary {
    font-family: var(--font-heading);
    background: linear-gradient(to right, var(--btn-gold-1), var(--btn-gold-2), var(--btn-gold-3));
    color: #222;
    box-shadow: 5px 4px 8px 0px rgb(181, 176, 166);
    font-size: 1.5rem;
    font-weight: 600;
}
.section-form{
    padding: 15px 20px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    border-radius: 20px;
    margin: 0px 20px 30px 20px;
}
.section-form .con-label{
    display: flex;
    align-items: center;
}
.section-form .con-label img{
    height: 35px;
    margin-right: 15px;
}
.section-form .form-group {
    margin: 0 0 10px;
    display: flex;   
    align-items: center;
}
.section-form .form-group label {
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    color: #0b2a1a;
    display: inline-block;
    width: 160px;
}
.section-form .form-control {
    padding: 13px 10px;
    width: 100%;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-size: 18px;
    margin-left: 20px;
}
.section-form .btn-primary {
    font-family: var(--font-body);
    background: linear-gradient(179deg, #76bc11, #204502);
    color: white;
    border: none;
    box-shadow: 5px 4px 8px 0px rgb(181, 176, 166);
    font-size: 20px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    width: 100%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}

.section-product .btn-secondary {
    background: linear-gradient(to bottom, #fcfafa, #d0d0d0);
    color: #222;
    box-shadow: 5px 4px 8px 0px rgb(181, 176, 166);
    font-size: 1.5rem;
    font-weight: 600;
}

.section-product .btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 768px) {
    .section-product{
        padding: 15px;
    }
    .section-product .logo {
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
    }
    .section-product .logo img {
        height: 60px;
    }
    .section-product .header-section {
        margin-bottom: 20px;
    }
    .section-product .main-title {
        font-size: 3rem;
    }
    .section-product .subtitle {
        font-size: 0.95rem;
        letter-spacing: 0px;
    }
    .section-product .cards-container {
        gap: 12px;
        margin-bottom: 30px;
        flex-wrap: nowrap; /* Keep cards side-by-side */
    }
    .section-product .product-card {
        padding: 15px 10px;
        border-radius: 12px;
        width: 50%;
        max-width: none;
    }
    .section-product .ribbon-img {
        width: 130px;
        top: -12px;
        right: -30px;
        /* left: 70px; */
    }
    .section-product .checkbox {
        top: 12px;
        left: 12px;
        width: 18px;
        height: 18px;
    }
    .section-product .checkbox svg {
        width: 11px;
        height: 11px;
    }
    .section-product .product-img {
        height: 150px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .section-product .product-title {
        font-size: 1rem;
        margin-bottom: 0px;
        min-height: 40px;
        line-height: 20px;
    }
    .section-product .product-title .product-subtitle{
        font-size: 0.85rem;
    }
    .section-product .price-row-top {
        padding-top: 15px;
        margin-bottom: 10px;
    }
    .section-product .price-label {
        font-size: 0.55rem;
        margin-bottom: 2px;
    }
    .section-product .price-label.black {
        font-size: 0.70rem;
        margin-bottom: 5px;
        font-weight: 700;
        letter-spacing: 0px;
    }
    .section-product .normal-price {
        font-size: 0.85rem;
    }
    .section-product .hemat-price {
        font-size: 0.85rem;
    }
    .section-product .special-price-block {
        margin: 0 -10px -15px -10px;
        padding: 12px 10px 15px 10px;
        border-radius: 0 0 10px 10px;
    }
    .section-product .hemat-block{
        padding-left: 8px;
    }
    .section-product .special-price-block::before {
        left: 12px;
        right: 12px;
    }
    .section-product .special-price {
        font-size: 1.4rem;
    }
    .section-product .special-price-currency {
        font-size: 1rem;
    }
    .section-product .action-section {
        gap: 10px;
    }
    .section-product .btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    .section-product .btn-primary, .btn-secondary {
        font-size: 1rem;
        max-width: 75%;
        margin: auto;
    }
    .section-product .btn svg {
        width: 22px;
        height: 22px;
    }
}


/* ##########
##### section faq
########## */
.section-faq{
    padding-top: 100px;
    background: linear-gradient(to bottom, var(--bg-abu) 0%, var(--bg-blue) 100%);
}
.section-faq .page-title {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.section-faq .faq-container {
    width: 100%;
    background-color: rgba(244, 249, 254, 0.65);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(30, 50, 120, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(6px);
}

.section-faq .faq-item {
    background-color: rgba(248, 252, 255, 0.904);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.section-faq .faq-item:hover {
    box-shadow: 0 4px 20px rgba(30, 50, 120, 0.08);
}

.section-faq .faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: align-items 0.35s;
}

.section-faq .faq-item.open .faq-header {
    align-items: flex-start;
}

.section-faq .faq-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    min-width: 88px;
    min-height: 88px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-faq .faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.section-faq .faq-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.section-faq .faq-question {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    padding-top: 4px;
    margin-bottom: 0;
}

.section-faq .faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease;
    color: var(--brand-navy);
}

.section-faq .faq-chevron svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-faq .faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.section-faq .faq-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.section-faq .faq-item.open .faq-body-wrapper {
    grid-template-rows: 1fr;
}

.section-faq .faq-body-inner {
    overflow: hidden;
}

.section-faq .faq-body-content {
    padding-top: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-body);
    font-weight: 500;
}

.section-faq .faq-body-content strong {
    color: var(--brand-navy);
    font-weight: 700;
}

.section-faq .faq-body-content ul {
    padding-left: 18px;
    margin-top: 8px;
}

.section-faq .faq-body-content ul li {
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .section-faq {
        padding: 60px 12px 30px;
    }

    .section-faq .page-title {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }

    .section-faq .faq-container {
        gap: 8px;
        padding: 12px;
        border-radius: 18px;
    }

    .section-faq .faq-header {
        padding: 14px 15px;
        gap: 12px;
    }

    .section-faq .faq-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }

    .section-faq .faq-question {
        font-size: 0.85rem;
    }

    .section-faq .faq-body-content {
        font-size: 0.85rem;
        padding-top: 5px;
    }
}

/* =====
========= modal
===== */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow-y: auto;
}

.custom-modal.show {
    display: flex;
    align-items: baseline;
}

.custom-modal-content {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalShow 0.2s ease;
}

.custom-modal-header {
    position: relative;
}

.custom-modal-header h3 {
    margin: 0;
    font-size: 18px;
}

.custom-modal-body {
    padding: 20px;
}

.custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px;
    border-top: 1px solid #eee;
}

.custom-modal-header .btn-close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    border: 0;
    background: #f1f1f1;
    padding: 8px 14px;
    border-radius: 7px;
    cursor: pointer;
}

.custom-modal-header .btn-close-modal {
    background: transparent;
    font-size: 28px;
    padding: 0;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.header-form::before{
    content: "";
    position: absolute;
    top: 20px;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    width: 86%;
    height: 1.5px;
    clip-path: polygon(0 50%, 2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%);
    background: linear-gradient(to right, transparent 0%, #0a311c 5%, #0a311c 95%, transparent 100%);
}
.header-form{
    position: relative;
    margin-bottom: 20px;
}
.header-form h2{
    font-family: var(--font-heading);
    text-align: center;
    margin: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #0a311c;
    background: white;
    position: relative;
    z-index: 2;
    width: 60%;
    margin: auto;
}
.custom-modal-header img{
    
    width: 100%;
    height: auto;
    border-radius: 30px 30px 0px 0px;
}

@media (max-width: 768px) {
    .section-form {
        padding: 10px 15px;
    }

    .header-form::before{
        width: 100%;
    }
    .header-form{
        margin-bottom: 15px;
    }
    .header-form h2{
        font-size: 24px;
        margin-top: 10px;
        width: 70%;
    }
    .section-form .con-label img{
        height: 20px;
        margin-right: 5px;
    }
    .section-form .form-group label{
        font-size: 14px;
        width: 120px;
    }
    .section-form .btn-primary{
        font-size: 16px;
        padding: 10px 15px;
    }
    .section-form .form-control{
        padding: 13px 10px;
        font-size: 16px;
        margin-left: 10px;
    }
    .custom-modal.show{
        align-items: center;
    }
    .custom-modal-content{
        width: 95%;
    }
    }
}