  /* =====================================================
           GLOBAL
        ===================================================== */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Poppins", sans-serif;
            background: #faf9f6;
            color: #171717;
        }

        a {
            text-decoration: none;
        }


        /* =====================================================
           PAGE HERO
        ===================================================== */

        .support-hero {
            background:
                linear-gradient(
                    135deg,
                    #111111 0%,
                    #1c1c1c 55%,
                    #28200e 100%
                );

            padding: 75px 20px 85px;
            position: relative;
            overflow: hidden;
        }


        .support-hero::before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            border: 1px solid rgba(212,175,55,0.18);
            top: -180px;
            right: -100px;
        }


        .support-hero::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            border: 1px solid rgba(212,175,55,0.12);
            bottom: -160px;
            left: -80px;
        }


        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            margin: auto;
            text-align: center;
        }


        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 16px;
            border: 1px solid rgba(212,175,55,0.4);
            border-radius: 50px;
            color: #e2c45c;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            background: rgba(212,175,55,0.06);
        }


        .hero-content h1 {
            color: #ffffff;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
        }


        .hero-content h1 span {
            color: #d4af37;
        }


        .hero-content p {
            max-width: 650px;
            margin: auto;
            color: #d5d5d5;
            font-size: 15px;
            line-height: 1.8;
        }


        /* =====================================================
           MAIN WRAPPER
        ===================================================== */

        .support-wrapper {
            max-width: 1180px;
            margin: -45px auto 70px;
            padding: 0 20px;
            position: relative;
            z-index: 5;
        }


        /* =====================================================
           SUPPORT CARDS
        ===================================================== */

        .support-card {
            height: 100%;
            background: #ffffff;
            border: 1px solid #eeeeee;
            border-radius: 16px;
            padding: 28px 24px;
            text-align: center;
            box-shadow:
                0 8px 30px rgba(0,0,0,0.05);

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


        .support-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212,175,55,0.5);
            box-shadow:
                0 14px 35px rgba(0,0,0,0.09);
        }


        .support-icon {
            width: 58px;
            height: 58px;
            margin: 0 auto 18px;

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

            border-radius: 15px;

            background: #faf5e4;
            color: #a47c00;

            font-size: 25px;
        }


        .support-card h5 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
        }


        .support-card p {
            color: #777777;
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 18px;
        }


        .support-action {
            display: inline-flex;
            align-items: center;
            gap: 7px;

            color: #9a7300;
            font-size: 13px;
            font-weight: 600;

            transition: 0.2s;
        }


        .support-action:hover {
            color: #171717;
        }


        /* =====================================================
           SECTION TITLE
        ===================================================== */

        .section-title {
            text-align: center;
            margin: 75px 0 35px;
        }


        .section-title .small-title {
            color: #a47c00;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
        }


        .section-title h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 10px;
        }


        .section-title p {
            color: #777777;
            font-size: 14px;
            max-width: 650px;
            margin: auto;
        }


        /* =====================================================
           QUICK HELP
        ===================================================== */

        .quick-help-card {
            background: #ffffff;
            border: 1px solid #eeeeee;
            border-radius: 15px;
            padding: 22px 20px;

            display: flex;
            align-items: center;
            gap: 15px;

            height: 100%;

            transition: 0.25s;
        }


        .quick-help-card:hover {
            border-color: rgba(212,175,55,0.5);
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            transform: translateY(-3px);
        }


        .quick-icon {
            width: 45px;
            height: 45px;

            flex-shrink: 0;

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

            border-radius: 12px;

            background: #f7f1df;
            color: #a47c00;

            font-size: 20px;
        }


        .quick-help-card h6 {
            font-size: 14px;
            font-weight: 600;
            margin: 0 0 4px;
        }


        .quick-help-card span {
            color: #777777;
            font-size: 12px;
        }


        /* =====================================================
           FAQ SEARCH
        ===================================================== */

        .faq-search {
            max-width: 650px;
            margin: 0 auto 30px;
            position: relative;
        }


        .faq-search input {
            width: 100%;
            height: 52px;

            border: 1px solid #dedede;
            border-radius: 12px;

            padding: 0 50px 0 18px;

            font-family: inherit;
            font-size: 13px;

            outline: none;

            background: #ffffff;

            transition: 0.2s;
        }


        .faq-search input:focus {
            border-color: #c9a63a;
            box-shadow:
                0 0 0 3px rgba(212,175,55,0.10);
        }


        .faq-search i {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);

            color: #999999;
            font-size: 18px;
        }


        /* =====================================================
           FAQ
        ===================================================== */

        .faq-container {
            max-width: 850px;
            margin: auto;
        }


        .faq-item {
            background: #ffffff;
            border: 1px solid #e9e9e9;
            border-radius: 12px;

            margin-bottom: 12px;

            overflow: hidden;

            transition: 0.2s;
        }


        .faq-item:hover {
            border-color: #dbc77e;
        }


        .faq-question {
            width: 100%;
            border: 0;
            background: #ffffff;

            padding: 20px 22px;

            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;

            text-align: left;

            color: #171717;

            font-family: inherit;
            font-size: 14px;
            font-weight: 600;

            cursor: pointer;
        }


        .faq-question i {
            color: #a47c00;
            font-size: 18px;
            flex-shrink: 0;

            transition: transform 0.25s;
        }


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

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


        .faq-answer-content {
            padding: 0 22px 20px;

            color: #707070;
            font-size: 13px;
            line-height: 1.8;
        }


        .faq-item.active .faq-answer {
            max-height: 300px;
        }


        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }


        /* =====================================================
           WHATSAPP CTA
        ===================================================== */

        .whatsapp-section {
            margin-top: 75px;
        }


        .whatsapp-box {
            background:
                linear-gradient(
                    135deg,
                    #151515,
                    #241f12
                );

            border-radius: 18px;

            padding: 42px 45px;

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

            gap: 30px;

            border: 1px solid rgba(212,175,55,0.18);
        }


        .whatsapp-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }


        .whatsapp-icon {
            width: 58px;
            height: 58px;

            border-radius: 50%;

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

            background: #25D366;
            color: #ffffff;

            font-size: 27px;

            flex-shrink: 0;
        }


        .whatsapp-content h4 {
            color: #ffffff;
            font-size: 20px;
            margin-bottom: 5px;
        }


        .whatsapp-content p {
            color: #bdbdbd;
            font-size: 13px;
            margin: 0;
        }


        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;

            background: #d4af37;
            color: #171717;

            padding: 12px 22px;

            border-radius: 9px;

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

            white-space: nowrap;

            transition: 0.25s;
        }


        .whatsapp-btn:hover {
            background: #e4c45a;
            color: #111111;
            transform: translateY(-2px);
        }


        /* =====================================================
           BOTTOM INFO
        ===================================================== */

        .support-note {
            text-align: center;
            margin-top: 40px;
            color: #888888;
            font-size: 12px;
        }


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

        @media (max-width: 991px) {

            .support-hero {
                padding: 60px 20px 75px;
            }

            .hero-content h1 {
                font-size: 34px;
            }

            .support-wrapper {
                margin-top: -35px;
            }

            .whatsapp-box {
                padding: 30px;
            }
        }


        @media (max-width: 767px) {

            .support-hero {
                padding: 50px 18px 65px;
            }

            .hero-content h1 {
                font-size: 29px;
            }

            .hero-content p {
                font-size: 13px;
            }

            .support-wrapper {
                padding: 0 14px;
                margin-top: -28px;
            }

            .support-card {
                padding: 24px 18px;
            }

            .section-title {
                margin-top: 55px;
            }

            .section-title h2 {
                font-size: 25px;
            }

            .whatsapp-box {
                flex-direction: column;
                align-items: flex-start;
                padding: 28px 22px;
            }

            .whatsapp-content {
                align-items: flex-start;
            }

            .whatsapp-btn {
                width: 100%;
            }
        }


        @media (max-width: 480px) {

            .hero-content h1 {
                font-size: 25px;
            }

            .hero-badge {
                font-size: 10px;
            }

            .section-title h2 {
                font-size: 22px;
            }

            .faq-question {
                padding: 17px 16px;
                font-size: 13px;
            }

            .faq-answer-content {
                padding: 0 16px 18px;
                font-size: 12px;
            }

            .whatsapp-content h4 {
                font-size: 17px;
            }
        }