.faq-link {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
.faq-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #1d1d1d;
}

.faq-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.faq-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #e87524;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-heading h1 {
    margin: 0 0 15px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #202020;
}

.faq-heading p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid #dedede;
}

.faq-item:first-child {
    border-top: 1px solid #dedede;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 25px 5px;

    border: 0;
    background: transparent;

    color: #222;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;

    text-align: left;
    cursor: pointer;

    transition: color 0.25s ease;
}

.faq-question:hover {
    color: #e87524;
}

.faq-icon {
    flex: 0 0 auto;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #222;
    border-radius: 50%;

    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #e87524;
    border-color: #e87524;
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 55px 0 5px;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 25px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;

    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 20px;
    }

    .faq-heading {
        margin-bottom: 40px;
    }

    .faq-heading h1 {
        font-size: 36px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-question {
        padding: 21px 0;
        font-size: 16px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 19px;
    }

    .faq-answer {
        padding-right: 35px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 55px 16px;
    }

    .faq-heading h1 {
        font-size: 30px;
    }

    .faq-question {
        gap: 15px;
        font-size: 15px;
    }

    .faq-answer {
        padding-right: 20px;
    }
}
/* =========================================
   FAQ HERO
========================================= */

.faq-hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(38, 89, 145, 0.75) 0%,
            rgba(20, 43, 82, 0.45) 35%,
            transparent 65%
        ),
        linear-gradient(110deg, #0b142c 0%, #111f40 48%, #183f70 100%);

    color: #fff;
}

/* =========================================
   GRID BACKGROUND
========================================= */

.faq-hero-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);

    background-size: 48px 48px;

    pointer-events: none;
}

/* Soft glow on right */

.faq-hero::after {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: 80px;

    background: rgba(83, 145, 210, 0.18);

    filter: blur(80px);
    border-radius: 50%;

    pointer-events: none;
}

/* =========================================
   CONTAINER
========================================= */

.faq-hero-container {
    position: relative;
    z-index: 2;

    width: calc(100% - 40px);
    max-width: 1170px;

    margin: 0 auto;
    padding-top: 105px;
}

/* =========================================
   BREADCRUMB
========================================= */

.faq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 34px;

    font-size: 14px;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.95);
}

.faq-breadcrumb .slash {
    color: #ff8a3d;
    font-weight: 700;
}

/* =========================================
   MAIN CONTENT
========================================= */

.faq-hero-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(380px, 0.85fr);

    gap: 80px;

    align-items: center;
}

/* =========================================
   LEFT SIDE
========================================= */

.faq-hero-left {
    max-width: 650px;
    padding: 30px 0;
}

/* =========================================
   TAG
========================================= */

.faq-tag {
    display: inline-flex;
    align-items: center;

    padding: 10px 17px;

    margin-bottom: 24px;

    border-radius: 30px;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.7px;
}

/* =========================================
   HEADING
========================================= */

.faq-hero h1 {
    margin: 0;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 500;

    color: #ffffff;
}

.faq-hero h1 span {
    color: #ff8a3d;
}

/* =========================================
   DESCRIPTION
========================================= */

.faq-hero-left > p {
    max-width: 610px;

    margin: 27px 0 32px;

    font-size: 17px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.86);
}

/* =========================================
   BUTTONS
========================================= */

.faq-hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
}

.faq-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 140px;

    padding: 13px 22px;

    border-radius: 28px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.6px;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.faq-btn:hover {
    transform: translateY(-2px);
}

/* Orange button */

.faq-btn-primary {
    color: #fff;

    background: linear-gradient(135deg, #f36d21, #d93408);

    border: 1px solid #ff7d34;
}

.faq-btn-primary:hover {
    background: linear-gradient(135deg, #ff7e32, #e23d0b);
}

/* Outline button */

.faq-btn-secondary {
    color: #fff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.faq-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.65);
}

/* =========================================
   RIGHT CARD
========================================= */

.faq-hero-right {
    display: flex;

    justify-content: flex-end;
}

.faq-info-card {
    width: 100%;
    max-width: 495px;

    padding: 30px;

    border-radius: 28px;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.06)
    );

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 25px 60px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(12px);
}

/* =========================================
   CARD TITLE
========================================= */

.faq-card-heading {
    margin-bottom: 22px;

    font-size: 21px;
    font-weight: 700;
}

.faq-card-heading span {
    color: #fff;
}

.faq-card-heading strong {
    color: #ff8a3d;
    font-size: 32px;
}

.faq-info-card > p {
    margin: 0 0 27px;

    max-width: 400px;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.82);
}

/* =========================================
   STAT ROWS
========================================= */

.faq-stat {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 62px;

    padding: 0 17px;

    margin-top: 14px;

    border-radius: 13px;

    background: rgba(5, 23, 52, 0.48);
}

.faq-stat-number {
    color: #ff8a3d;

    font-size: 22px;

    font-weight: 700;
}

.faq-stat-label {
    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;

    font-weight: 500;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
    .faq-hero {
        min-height: auto;
    }

    .faq-hero-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .faq-hero-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-hero-left {
        max-width: 720px;
    }

    .faq-hero-right {
        justify-content: flex-start;
    }

    .faq-info-card {
        max-width: 600px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
    .faq-hero-container {
        width: calc(100% - 32px);

        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faq-breadcrumb {
        margin-bottom: 27px;

        font-size: 13px;
    }

    .faq-tag {
        padding: 8px 13px;

        font-size: 10px;

        margin-bottom: 18px;
    }

    .faq-hero h1 {
        font-size: 43px;

        line-height: 1.08;

        letter-spacing: -1.5px;
    }

    .faq-hero-left > p {
        margin-top: 20px;

        font-size: 15px;

        line-height: 1.65;
    }

    .faq-hero-buttons {
        flex-wrap: wrap;
    }

    .faq-btn {
        min-width: 125px;

        padding: 12px 18px;
    }

    .faq-info-card {
        padding: 22px;

        border-radius: 22px;
    }

    .faq-card-heading {
        font-size: 18px;
    }

    .faq-card-heading strong {
        font-size: 27px;
    }

    .faq-stat {
        min-height: 56px;
    }
}
