/* MI Tampilan Awal
:root {
            --header-height: 80px;
            --green: #177c1c;
            --green-dark: #145f18;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
        }

        * {
            box-sizing: border-box;
        }

        /* ===== HEADER ===== */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #fff;
            min-height: var(--header-height);
            box-shadow: 0 2px 8px rgba(0,0,0,.05);
        }

        .header .header-container {
            min-height: var(--header-height);
            padding-left: 16px;
            padding-right: 16px;
        }

        .logo img {
            height: 58px;
            width: auto;
            object-fit: contain;
        }

        .navmenu ul {
            display: flex;
            align-items: center;
            gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navmenu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        .btn-login-nav {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--green);
            padding: 10px 18px;
            border-radius: 8px;
            color: var(--green);
            background: #fff;
            font-weight: 600;
            white-space: nowrap;
            transition: all .25s ease;
        }

        .btn-login-nav:hover {
            background: var(--green);
            color: #fff;
        }

        .nav-login-item {
            margin-left: 8px;
        }

        .hero-library {
            position: relative;
            min-height: 100vh;
            padding: 170px 20px 140px;
            background: url('../assets/img/education/mi10.png') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-library::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 120, 60, 0.30),
                rgba(0, 120, 60, 0.18),
                rgba(255, 255, 255, 0.08)
            );
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 900px;
            padding: 20px;
            margin-top: -10px;
        }

        .title-top {
            font-size: 26px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #1b5e20;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .title-main {
            font-size: 80px;        /* lebih besar */
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #177c1c;         /* hijau utama */
            line-height: 1.1;
        }


        /* ===== FLOATING LOGO BAR ===== */
        .floating-logo-bar {
            position: absolute;
            top: -10px; 
            left: 0;
            width: 100%;
            z-index: 900;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }
        
        .floating-logo-inner {
            width: fit-content;          
            background: #ffffff;
            padding: 20px 40px;
            border-radius: 12px;
        
            display: flex;
            align-items: center;
            gap: 32px;                   
        
            box-shadow: 0 14px 35px rgba(0,0,0,.15);
            pointer-events: auto;
        }

        .floating-logo-inner img {
            height: 58px;
            width: auto;
            object-fit: contain;
        }

        /* =========================================================
           PERBAIKAN TAMPILAN: LIBRARY CARD - ABOUT - VISI MISI - PENGUMUMAN
           Tempel di paling bawah <style>
        ========================================================= */
        :root {
            --school-green: #177c1c;
            --school-green-dark: #0f3d2e;
            --school-green-soft: #eafaf1;
            --school-gold: #f5b301;
            --school-blue: #2563eb;
            --school-text: #183b2b;
            --school-muted: #64748b;
            --school-border: #e2e8f0;
            --school-shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
        }
        
        /* =========================
           SECTION CARD PROGRAM
        ========================= */
        
        .library-cards {
            position: relative;
            z-index: 10;
            margin-top: -90px !important;
            padding: 30px 20px 90px !important;
            background:
                radial-gradient(circle at top left, rgba(23, 124, 28, 0.12), transparent 34%),
                radial-gradient(circle at bottom right, rgba(245, 179, 1, 0.14), transparent 32%),
                linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f7fbf8 45%, #ffffff 100%);
            overflow: hidden;
        }
        
        .library-cards::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            right: -120px;
            top: 20px;
            border-radius: 50%;
            background: rgba(23, 124, 28, 0.08);
            pointer-events: none;
        }
        
        .library-cards::after {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            left: -95px;
            bottom: 10px;
            border-radius: 50%;
            background: rgba(245, 179, 1, 0.10);
            pointer-events: none;
        }
        
        .card-container {
            position: relative;
            z-index: 2;
            max-width: 1160px !important;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 28px !important;
        }
        
        .lib-card {
            position: relative;
            min-height: 390px;
            padding: 30px 26px !important;
            border-radius: 30px !important;
            background: rgba(255, 255, 255, 0.92) !important;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: var(--school-shadow) !important;
            text-align: left !important;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            isolation: isolate;
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        }
        
        .lib-card::before {
            content: "";
            position: absolute;
            inset: 0;
            opacity: 0;
            z-index: -2;
            transition: 0.35s ease;
        }
        
        .lib-card::after {
            content: "";
            position: absolute;
            width: 155px;
            height: 155px;
            top: -58px;
            right: -58px;
            border-radius: 50%;
            z-index: -1;
            transition: 0.35s ease;
        }
        
        .card-1::before {
            background: linear-gradient(135deg, rgba(23, 124, 28, 0.13), rgba(255, 255, 255, 0));
        }
        
        .card-2::before {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0));
        }
        
        .card-3::before {
            background: linear-gradient(135deg, rgba(245, 179, 1, 0.15), rgba(255, 255, 255, 0));
        }
        
        .card-1::after {
            background: rgba(23, 124, 28, 0.13);
        }
        
        .card-2::after {
            background: rgba(37, 99, 235, 0.13);
        }
        
        .card-3::after {
            background: rgba(245, 179, 1, 0.16);
        }
        
        .lib-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 75px rgba(15, 23, 42, 0.16) !important;
            border-color: rgba(23, 124, 28, 0.35);
        }
        
        .lib-card:hover::before {
            opacity: 1;
        }
        
        .lib-card:hover::after {
            transform: scale(1.2);
        }
        
        .card-logo {
            width: 84px !important;
            height: 84px !important;
            object-fit: contain;
            padding: 12px !important;
            margin: 0 0 24px !important;
            border-radius: 24px !important;
            background: linear-gradient(135deg, #ffffff, #f1f5f9) !important;
            border: 1px solid var(--school-border);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10) !important;
        }
        
        .lib-card h3 {
            font-size: 24px !important;
            line-height: 1.3;
            margin-bottom: 14px !important;
            color: var(--school-text) !important;
            font-weight: 900 !important;
            text-transform: capitalize;
        }
        
        .lib-card h3::after {
            content: "";
            display: block;
            width: 46px;
            height: 4px;
            margin-top: 12px;
            border-radius: 999px;
            background: var(--school-green);
        }
        
        .card-2 h3::after {
            background: var(--school-blue);
        }
        
        .card-3 h3::after {
            background: var(--school-gold);
        }
        
        .lib-card p {
            color: var(--school-muted) !important;
            font-size: 15px !important;
            line-height: 1.85 !important;
            margin-bottom: 28px !important;
            text-align: justify;
            flex: 1;
        }
        
        .btn-card {
            width: 100%;
            min-height: 50px;
            padding: 0 20px !important;
            border-radius: 16px !important;
            background: linear-gradient(135deg, var(--school-green), var(--school-green-dark)) !important;
            color: #ffffff !important;
            font-size: 15px !important;
            font-weight: 800 !important;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            box-shadow: 0 14px 30px rgba(23, 124, 28, 0.28);
            transition: 0.3s ease;
        }
        
        .btn-card:hover {
            transform: translateY(-3px);
            color: #ffffff !important;
            box-shadow: 0 20px 42px rgba(23, 124, 28, 0.38);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ===== TABLET ===== */
        @media (max-width: 991.98px) {
            .card-container {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .library-cards {
                margin-top: -80px;
            }

            .floating-logo-inner img {
                height: 56px;
            }
        }

        /* ===== MOBILE ===== */
        @media (max-width: 767.98px) {
            :root {
                --header-height: 72px;
            }

            .header .header-container {
                min-height: var(--header-height);
                padding-left: 12px;
                padding-right: 12px;
            }

            .logo img {
                height: 46px;
            }

            .hero-library {
                min-height: auto;
                padding: 130px 16px 100px;
            }

            .hero-content {
                margin-top: 20px;
                padding: 20px 16px;
            }

            .title-top {
                font-size: 12px;
                line-height: 1.5;
                letter-spacing: 1px;
            }

            .title-main {
                font-size: 32px;
                line-height: 1.15;
            }

            .floating-logo-bar {
                width: calc(100% - 24px);
            }

            .floating-logo-inner {
                padding: 10px 12px;
                border-radius: 0 0 14px 14px;
                gap: 10px;
                justify-content: flex-start;
                overflow-x: auto;
                overflow-y: hidden;
                white-space: nowrap;
                scrollbar-width: none;
            }

            .floating-logo-inner::-webkit-scrollbar {
                display: none;
            }

            .floating-logo-inner img {
                flex: 0 0 auto;
                height: 34px;
            }
        

            .library-cards {
                margin-top: -40px;
                padding: 0 16px 56px;
            }

            .card-container {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .lib-card {
                padding: 24px 18px;
                border-radius: 16px;
            }

            .lib-card h3 {
                font-size: 20px;
            }

            .lib-card p {
                font-size: 14px;
                margin-bottom: 18px;
            }

            .btn-card {
                width: 100%;
                padding: 12px 18px;
            }
        }

        /* ===== SMALL MOBILE ===== */
        @media (max-width: 420px) {
            .floating-logo-inner img {
                height: 36px;
            }

            .title-main {
                font-size: 30px;
            }

            .title-top {
                font-size: 12px;
            }
        }

        @media (max-width: 1199.98px) {
            .navmenu ul {
                gap: 0;
            }

            .nav-login-item {
                margin-left: 0;
            }

            .btn-login-nav {
                width: 100%;
                justify-content: center;
                margin-top: 8px;
            }
        }
        
        /*MI*/
        .hero-library-mi {
            position: relative;
            min-height: 100vh;
            background: url('/assets/img/education/mi10.webp') center / cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        
        /* konten */
        .hero-library-mi .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            transform: translateY(-90px);
            color: #fff;
        }
        
        .hero-row {
            position: relative;
            padding-top: 80px;
        }
        
        /* JUDUL DI TENGAH */
        .hero-title-center {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            text-align: center;
        }
        
        .hero-title-center h1 {
            font-size: 40px;
            font-weight: 700;
            color: #1f5f3a;
            margin: 0;
        }
        
        /* garis bawah */
        .hero-title-center h1::after {
            content: "";
            display: block;
            width: 90px;
            height: 4px;
            background-color: #1f9d55;
            margin: 10px auto 0;
            border-radius: 2px;
        }
        
        /* DESKRIPSI */
        .hero-description {
            font-size: 16px;
            line-height: 1.8;
            color: #374151;
        }
        
        /* RESPONSIVE */
        @media (max-width: 991px) {
            .hero-title-center {
                position: static;
                transform: none;
                margin-bottom: 30px;
            }
        
            .hero-row {
                padding-top: 0;
            }
        }
        
        /* ========== PRESTASI CARD ========== */
        .prestasi-card {
            width: 100%;
            max-width: 360px;        
            background: #ffffff;
            border-radius: 1rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        /* ========== GAMBAR (1080 x 1350) ========== */
        .prestasi-img-wrapper {
            width: 100%;
            aspect-ratio: 4 / 5;    
            overflow: hidden;
            background: #f1f3f5;
        }
        
        .prestasi-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;     
            display: block;
        }
        
        /* ========== KONTEN ========== */
        .prestasi-card .p-4 {
            padding: 1.25rem;
        }
        
        .prestasi-card h5 {
            font-weight: 700;
            color: #198754;
            margin-bottom: 0.5rem;
        }
        
        .prestasi-card p {
            margin: 0;
            color: #555;
            font-size: 0.95rem;
        }
        
        .logo-img {
            height: 40px;
            margin-top: -4px; 
        }
        
        .logo-text {
            font-size: 14px;
            margin-top: 2px;
            margin-bottom: 0;
            transform: translateY(-4px); 
            color: #2e7d32;
        }
        
        @media (max-width: 768px) {
            .logo {
                align-self: flex-start;
                padding-top: 6px;
            }
        
            .logo-img {
                height: 40px;
                margin-top: -6px;
            }
        
            .logo-text {
                transform: translateY(-6px);
            }
        }
        
        /* =========================
           SECTION TENTANG SEKOLAH
        ========================= */
        
        .about-wrapper {
            position: relative;
            padding: 95px 0 !important;
            background:
                linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%) !important;
            overflow: hidden;
        }
        
        .about-wrapper::before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            right: -160px;
            top: 60px;
            border-radius: 50%;
            background: rgba(23, 124, 28, 0.07);
        }
        
        .about-wrapper::after {
            content: "";
            position: absolute;
            width: 240px;
            height: 240px;
            left: -100px;
            bottom: 40px;
            border-radius: 50%;
            background: rgba(245, 179, 1, 0.10);
        }
        
        .about-wrapper .container {
            position: relative;
            z-index: 2;
        }
        
        .about-title {
            font-size: 40px !important;
            line-height: 1.25;
            font-weight: 900 !important;
            color: var(--school-text) !important;
            margin-bottom: 8px;
        }
        
        .about-line {
            width: 90px !important;
            height: 5px !important;
            background: linear-gradient(90deg, var(--school-green), var(--school-gold)) !important;
            margin: 14px auto 0 !important;
            border-radius: 999px !important;
        }
        
        .about-description {
            font-size: 16px !important;
            line-height: 2 !important;
            color: #334155 !important;
            text-align: justify;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(226, 232, 240, 0.95);
            border-radius: 28px;
            padding: 30px;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
        }
        
        .about-wrapper .btn-success {
            border: none !important;
            border-radius: 999px !important;
            padding: 12px 26px !important;
            font-weight: 800 !important;
            background: linear-gradient(135deg, var(--school-green), var(--school-green-dark)) !important;
            box-shadow: 0 14px 30px rgba(23, 124, 28, 0.25);
            transition: 0.3s ease;
        }
        
        .about-wrapper .btn-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 42px rgba(23, 124, 28, 0.34);
        }
        
        #aboutCarousel {
            border-radius: 30px !important;
            overflow: hidden !important;
            border: 8px solid #ffffff;
            box-shadow: 0 25px 65px rgba(15, 23, 42, 0.16) !important;
        }
        
        #aboutCarousel img {
            height: 390px;
            object-fit: cover;
            border-radius: 22px !important;
            transition: transform 0.6s ease;
        }
        
        #aboutCarousel:hover img {
            transform: scale(1.04);
        }
        
        /* ===== KOLOM GAMBAR ===== */
        .about-media {
            transform: translateY(-80px); /* supaya sejajar paragraf pertama */
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
        
            .about-title-center {
                position: static;
                transform: none;
                margin-bottom: 30px;
            }
        
            .about-row {
                padding-top: 0;
            }
        
            .about-media {
                transform: none;
                margin-top: 30px;
            }
        }
        
        /* ===== FIX HERO MOBILE ===== */
        @media (max-width: 767.98px) {
        
            /* Hilangkan 4 logo di mobile */
            .floating-logo-bar {
                display: none !important;
            }
            .hero-library-mi {
                min-height: 520px;
                background-image: url('../assets/img/education/mi10-mobile.webp') !important;
                background-size: cover !important;
                background-position: center top !important;
                background-repeat: no-repeat !important;
            }
            .library-cards {
                margin-top: 0 !important;
            }
            
            /* ABOUT SECTION */
            .about-wrapper {
                padding: 42px 0 36px !important;
                background: #ffffff;
            }
        
            .about-wrapper .container {
                padding-left: 18px !important;
                padding-right: 18px !important;
            }
        
            .about-wrapper .text-center.mb-5 {
                margin-bottom: 24px !important;
            }
        
            .about-title {
                font-size: 25px !important;
                line-height: 1.3 !important;
                max-width: 310px;
                margin: 0 auto !important;
            }
        
            .about-line {
                width: 58px !important;
                height: 3px !important;
                margin-top: 10px !important;
            }
        
            .about-description {
                font-size: 14px !important;
                line-height: 1.75 !important;
                text-align: left !important;
                margin-bottom: 14px !important;
                color: #374151 !important;
            }
        
            .about-wrapper .btn {
                width: 100%;
                max-width: 180px;
                display: block;
                margin: 18px auto 26px !important;
                padding: 10px 16px !important;
                border-radius: 10px !important;
            }
        
            #aboutCarousel {
                margin-top: 10px !important;
                border-radius: 18px !important;
                overflow: hidden !important;
            }
        
            #aboutCarousel img {
                height: 260px !important;
                object-fit: cover !important;
                object-position: center !important;
                border-radius: 18px !important;
            }
        
            /* SECTION UMUM */
            section:not(#hero).section {
                padding-top: 44px !important;
                padding-bottom: 44px !important;
            }
        
            .section-title {
                padding-left: 16px !important;
                padding-right: 16px !important;
                margin-bottom: 26px !important;
            }
        
            .section-title h2 {
                font-size: 24px !important;
                line-height: 1.3 !important;
            }
        
            .section-title p {
                font-size: 14px !important;
                line-height: 1.6 !important;
            }arana-alt-card {
                border-radius: 18px !important;
                overflow: hidden !important;
            }
        
            .sarana-image img {
                height: 230px !important;
                object-fit: cover !important;
            }
        
            .sarana-content {
                padding: 22px 18px !important;
            }
        
            .sarana-content h4 {
                font-size: 18px !important;
            }
        
            .sarana-content p {
                font-size: 14px !important;
                line-height: 1.7 !important;
                text-align: left !important;
            }
        
            /* GURU / STAFF */
            .faculty .container-fluid {
                padding-left: 16px !important;
                padding-right: 16px !important;
            }
        
            .faculty-card {
                border-radius: 18px;
                overflow: hidden;
                background: #fff;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                transition: 0.3s ease;
            }

            .faculty-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 18px 45px rgba(0,0,0,0.12);
            }
        
            .faculty-image {
                aspect-ratio: 4 / 5;
                overflow: hidden;
                border-radius: 16px;
            }

            .faculty-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top center;
            }
        
            .faculty-info {
                padding: 18px 16px !important;
            }
        
            .faculty-info h3 {
                font-size: 17px !important;
                line-height: 1.35 !important;
            }
        
            .faculty-info .position,
            .faculty-info .department,
            .faculty-info .education {
                font-size: 13px !important;
                line-height: 1.5 !important;
            }
        
            .carousel-indicators.guru-indicators {
                position: relative !important;
                margin-top: 20px !important;
                bottom: auto !important;
            }
        
            /* FOOTER */
            .footer {
                text-align: center;
            }
        
            .footer .footer-top {
                padding-left: 18px !important;
                padding-right: 18px !important;
            }
        
            .footer .logo {
                justify-content: center !important;
            }
        
            .footer-contact p {
                font-size: 13px !important;
                line-height: 1.6 !important;
            }
        }

        /* =========================
        PEOPLE SECTION
        ========================= */

        .people-section {
            position: relative;
            padding: 90px 0;
            background:
                radial-gradient(circle at top left, rgba(23, 124, 28, 0.08), transparent 34%),
                linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
            overflow: hidden;
        }

        .people-section-soft {
            background:
                radial-gradient(circle at top right, rgba(245, 179, 1, 0.10), transparent 32%),
                linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
        }

        .people-heading {
            max-width: 760px;
            margin: 0 auto 46px;
        }

        .people-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            padding: 8px 18px;
            border-radius: 999px;
            background: rgba(23, 124, 28, 0.10);
            color: #177c1c;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .people-heading h2 {
            margin: 0;
            color: #1f5f3a;
            font-size: 38px;
            line-height: 1.2;
            font-weight: 900;
        }

        .people-heading h2::after {
            content: "";
            display: block;
            width: 72px;
            height: 4px;
            margin: 16px auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #177c1c, #f5b301);
        }

        .people-heading p {
            max-width: 620px;
            margin: 18px auto 0;
            color: #64748b;
            font-size: 16px;
            line-height: 1.7;
        }

        .people-swiper {
            position: relative;
            padding: 10px 6px 20px;
        }

        .people-swiper .swiper-wrapper {
            align-items: stretch;
        }

        .people-swiper .swiper-slide {
            height: auto;
        }

        .people-card {
            height: 100%;
            overflow: hidden;
            border-radius: 28px;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .people-card:hover {
            transform: translateY(-8px);
            border-color: rgba(23, 124, 28, 0.28);
            box-shadow: 0 28px 70px rgba(15, 23, 42, 0.15);
        }

        .people-photo {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 4.45;
            padding: 18px 18px 0;
            background:
                linear-gradient(180deg, #eef7f0 0%, #ffffff 100%);
            overflow: hidden;
        }

        .people-photo img {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 22px 22px 0 0;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.45s ease;
        }

        .people-card:hover .people-photo img {
            transform: scale(1.04);
        }

        .people-photo::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 0;
            height: 45%;
            border-radius: 0 0 22px 22px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 61, 46, 0.22) 100%);
            pointer-events: none;
        }

        .people-social {
            position: absolute;
            left: 50%;
            bottom: 16px;
            z-index: 3;
            display: flex;
            gap: 8px;
            transform: translateX(-50%) translateY(12px);
            opacity: 0;
            transition: 0.3s ease;
        }

        .people-card:hover .people-social {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .people-social a {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #ffffff;
            color: #177c1c;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
            transition: 0.25s ease;
        }

        .people-social a:hover {
            background: #177c1c;
            color: #ffffff;
            transform: translateY(-3px);
        }

        .people-body {
            min-height: 185px;
            padding: 24px 22px 26px;
            text-align: center;
        }

        .people-body h3 {
            min-height: 48px;
            margin: 0 0 10px;
            color: #1f2937;
            font-size: 18px;
            line-height: 1.35;
            font-weight: 850;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .people-role {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(23, 124, 28, 0.10);
            color: #177c1c;
            font-size: 13px;
            line-height: 1;
            font-weight: 800;
        }

        .people-subject {
            display: table;
            margin: 0 auto 12px;
            padding: 7px 14px;
            border-radius: 999px;
            background: #fff3d6;
            color: #2f8f55;
            font-size: 13px;
            line-height: 1;
            font-weight: 800;
        }

        .people-body p {
            max-width: 260px;
            margin: 0 auto;
            color: #64748b;
            font-size: 14px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .people-control {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 34px;
        }

        .people-nav {
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 999px;
            background: #177c1c;
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 14px 30px rgba(23, 124, 28, 0.25);
            transition: 0.25s ease;
        }

        .people-nav:hover {
            background: #0f3d2e;
            transform: translateY(-3px);
        }

        .people-pagination {
            position: static !important;
            width: auto !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .people-pagination .swiper-pagination-bullet {
            width: 9px;
            height: 9px;
            margin: 0 5px !important;
            background: #8fa79a;
            opacity: 0.7;
        }

        .people-pagination .swiper-pagination-bullet-active {
            width: 28px;
            border-radius: 999px;
            background: #1f5f3a;
            opacity: 1;
        }

        @media (max-width: 991.98px) {
            .people-section {
                padding: 70px 0;
            }

            .people-heading h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 767.98px) {
            .people-section {
                padding: 52px 0;
            }

            .people-heading {
                margin-bottom: 30px;
                padding: 0 14px;
            }

            .people-heading h2 {
                font-size: 26px;
            }

            .people-heading p {
                font-size: 14px;
            }

            .people-photo {
                padding: 14px 14px 0;
            }

            .people-body {
                min-height: auto;
                padding: 20px 18px 22px;
            }

            .people-body h3 {
                font-size: 17px;
            }

            .people-social {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            .people-control {
                margin-top: 24px;
            }
        }

        /* =========================
        PROMO SECTION GLOBAL
        ========================= */

        .promo-section-head {
            max-width: 820px;
            margin: 0 auto 54px;
        }

        .promo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            padding: 8px 18px;
            border-radius: 999px;
            background: rgba(23, 124, 28, 0.10);
            color: #177c1c;
            font-size: 13px;
            font-weight: 800;
        }

        .promo-section-head h2 {
            margin: 0;
            color: #1f5f3a;
            font-size: 40px;
            line-height: 1.2;
            font-weight: 900;
        }

        .promo-section-head h2::after {
            content: "";
            display: block;
            width: 82px;
            height: 4px;
            margin: 18px auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #177c1c, #f5b301);
        }

        .promo-section-head p {
            max-width: 720px;
            margin: 20px auto 0;
            color: #475569;
            font-size: 17px;
            line-height: 1.75;
        }

        .promo-main-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 48px;
            padding: 0 24px;
            border-radius: 999px;
            background: linear-gradient(135deg, #177c1c, #0f3d2e);
            color: #ffffff;
            font-size: 15px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 16px 35px rgba(23, 124, 28, 0.25);
            transition: 0.25s ease;
        }

        .promo-main-btn:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 22px 44px rgba(23, 124, 28, 0.34);
        }

        .promo-empty {
            padding: 26px;
            border-radius: 20px;
            background: #ffffff;
            color: #64748b;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        }

        /* =========================
        BERITA
        ========================= */

        .promo-news-section {
            position: relative;
            padding: 95px 0;
            background:
                radial-gradient(circle at top left, rgba(23, 124, 28, 0.08), transparent 34%),
                linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
            overflow: hidden;
        }

        .promo-news-featured {
            position: relative;
            display: block;
            height: 100%;
            min-height: 520px;
            overflow: hidden;
            border-radius: 34px;
            text-decoration: none;
            box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
        }

        .promo-news-featured img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }

        .promo-news-featured:hover img {
            transform: scale(1.05);
        }

        .promo-news-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 42px;
            background: linear-gradient(180deg, rgba(15, 61, 46, 0.05) 0%, rgba(15, 61, 46, 0.86) 100%);
            color: #ffffff;
        }

        .promo-news-overlay span {
            width: fit-content;
            margin-bottom: 14px;
            padding: 7px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(8px);
            font-size: 13px;
            font-weight: 800;
        }

        .promo-news-overlay h3 {
            max-width: 720px;
            margin: 0 0 12px;
            color: #ffffff;
            font-size: 32px;
            line-height: 1.25;
            font-weight: 900;
        }

        .promo-news-overlay p {
            max-width: 680px;
            margin: 0 0 20px;
            color: rgba(255, 255, 255, 0.88);
            font-size: 16px;
            line-height: 1.7;
        }

        .promo-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            font-weight: 800;
        }

        .promo-news-side {
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .promo-news-intro {
            padding: 30px;
            border-radius: 28px;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
        }

        .promo-news-intro span,
        .promo-news-mini-body span {
            color: #177c1c;
            font-size: 13px;
            font-weight: 850;
        }

        .promo-news-intro h3 {
            margin: 8px 0 10px;
            color: #183b2b;
            font-size: 24px;
            line-height: 1.35;
            font-weight: 900;
        }

        .promo-news-intro p {
            margin: 0;
            color: #64748b;
            font-size: 15px;
            line-height: 1.7;
        }

        .promo-news-mini {
            display: grid;
            grid-template-columns: 128px 1fr;
            gap: 18px;
            padding: 16px;
            border-radius: 24px;
            background: #ffffff;
            color: inherit;
            text-decoration: none;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
            transition: 0.25s ease;
        }

        .promo-news-mini:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 58px rgba(15, 23, 42, 0.13);
        }

        .promo-news-thumb {
            height: 112px;
            overflow: hidden;
            border-radius: 18px;
        }

        .promo-news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .promo-news-mini-body h4 {
            margin: 6px 0 8px;
            color: #0f172a;
            font-size: 17px;
            line-height: 1.35;
            font-weight: 900;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .promo-news-mini-body p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
            line-height: 1.55;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* =========================
        PRESTASI
        ========================= */

        .promo-achievement-section {
            position: relative;
            padding: 95px 0;
            background:
                radial-gradient(circle at top right, rgba(245, 179, 1, 0.10), transparent 32%),
                linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
            overflow: hidden;
        }

        .promo-achievement-swiper {
            padding: 8px 4px 18px;
        }

        .promo-achievement-card {
            display: block;
            height: 100%;
            overflow: hidden;
            border-radius: 30px;
            background: #ffffff;
            color: inherit;
            text-decoration: none;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 22px 58px rgba(15, 23, 42, 0.10);
            transition: 0.28s ease;
        }

        .promo-achievement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 72px rgba(15, 23, 42, 0.16);
        }

        .promo-achievement-image {
            position: relative;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            background: #f1f5f9;
        }

        .promo-achievement-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .promo-achievement-card:hover img {
            transform: scale(1.04);
        }

        .promo-achievement-label {
            position: absolute;
            left: 18px;
            top: 18px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.94);
            color: #177c1c;
            font-size: 13px;
            font-weight: 850;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
        }

        .promo-achievement-body {
            padding: 24px 24px 26px;
        }

        .promo-achievement-body span {
            color: #177c1c;
            font-size: 13px;
            font-weight: 850;
        }

        .promo-achievement-body h3 {
            min-height: 62px;
            margin: 8px 0 18px;
            color: #183b2b;
            font-size: 22px;
            line-height: 1.35;
            font-weight: 900;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .promo-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #177c1c;
            font-size: 14px;
            font-weight: 850;
        }

        /* =========================
        SARANA PRASARANA
        ========================= */

        .promo-facility-section {
            position: relative;
            padding: 95px 0;
            background:
                radial-gradient(circle at top left, rgba(23, 124, 28, 0.08), transparent 34%),
                linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
            overflow: hidden;
        }

        .promo-facility-swiper {
            padding: 8px 4px 18px;
        }

        .promo-facility-card {
            height: 100%;
            overflow: hidden;
            border-radius: 30px;
            background: #ffffff;
            border: 1px solid rgba(226, 232, 240, 0.95);
            box-shadow: 0 22px 58px rgba(15, 23, 42, 0.10);
            transition: 0.28s ease;
        }

        .promo-facility-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 72px rgba(15, 23, 42, 0.16);
        }

        .promo-facility-image {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #eafaf1;
        }

        .promo-facility-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }

        .promo-facility-card:hover .promo-facility-image img {
            transform: scale(1.05);
        }

        .promo-facility-tag {
            position: absolute;
            left: 18px;
            bottom: 18px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.95);
            color: #177c1c;
            font-size: 13px;
            font-weight: 850;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
        }

        .promo-facility-body {
            position: relative;
            padding: 36px 26px 28px;
        }

        .promo-facility-icon {
            position: absolute;
            top: -26px;
            left: 26px;
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 999px;
            background: #ffffff;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
        }

        .promo-facility-icon img {
            width: 34px;
            height: 34px;
            object-fit: contain;
        }

        .promo-facility-body h3 {
            margin: 0 0 14px;
            color: #1f5f3a;
            font-size: 24px;
            line-height: 1.25;
            font-weight: 900;
        }

        .promo-facility-body p {
            min-height: 68px;
            margin: 0 0 18px;
            color: #64748b;
            font-size: 15px;
            line-height: 1.7;
        }

        .promo-facility-note {
            display: inline-flex;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(23, 124, 28, 0.10);
            color: #177c1c;
            font-size: 13px;
            font-weight: 800;
        }

        /* =========================
        SWIPER CONTROL
        ========================= */

        .promo-swiper-control {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-top: 34px;
        }

        .promo-swiper-btn {
            width: 44px;
            height: 44px;
            border: 0;
            border-radius: 999px;
            background: #177c1c;
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 14px 30px rgba(23, 124, 28, 0.25);
            transition: 0.25s ease;
        }

        .promo-swiper-btn:hover {
            background: #0f3d2e;
            transform: translateY(-3px);
        }

        .achievement-pagination,
        .facility-pagination {
            position: static !important;
            width: auto !important;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .achievement-pagination .swiper-pagination-bullet,
        .facility-pagination .swiper-pagination-bullet {
            width: 9px;
            height: 9px;
            margin: 0 5px !important;
            background: #8fa79a;
            opacity: 0.7;
        }

        .achievement-pagination .swiper-pagination-bullet-active,
        .facility-pagination .swiper-pagination-bullet-active {
            width: 28px;
            border-radius: 999px;
            background: #1f5f3a;
            opacity: 1;
        }

        /* =========================
        RESPONSIVE
        ========================= */

        @media (max-width: 991.98px) {
            .promo-news-section,
            .promo-achievement-section,
            .promo-facility-section {
                padding: 72px 0;
            }

            .promo-section-head h2 {
                font-size: 32px;
            }

            .promo-news-featured {
                min-height: 430px;
            }
        }

        @media (max-width: 767.98px) {
            .promo-news-section,
            .promo-achievement-section,
            .promo-facility-section {
                padding: 54px 0;
            }

            .promo-section-head {
                margin-bottom: 32px;
                padding: 0 12px;
            }

            .promo-section-head h2 {
                font-size: 26px;
            }

            .promo-section-head p {
                font-size: 14px;
                line-height: 1.65;
            }

            .promo-news-featured {
                min-height: 380px;
                border-radius: 24px;
            }

            .promo-news-overlay {
                padding: 28px;
            }

            .promo-news-overlay h3 {
                font-size: 24px;
            }

            .promo-news-mini {
                grid-template-columns: 96px 1fr;
                gap: 14px;
                padding: 14px;
            }

            .promo-news-thumb {
                height: 92px;
            }

            .promo-news-intro {
                padding: 24px;
            }

            .promo-achievement-body h3,
            .promo-facility-body h3 {
                font-size: 20px;
            }

            .promo-main-btn {
                width: 100%;
            }
        }

        /* ===============================
        FOOTER PREMIUM MI AR-ROUDHOH
        ================================ */

        .ar-footer {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top left, rgba(25, 135, 84, 0.13), transparent 34%),
                radial-gradient(circle at bottom right, rgba(13, 110, 253, 0.10), transparent 32%),
                linear-gradient(135deg, #edf6f8 0%, #f7fbf8 48%, #e9f5ef 100%);
            color: #102a3a;
            padding-top: 58px;
        }

        .ar-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(25, 135, 84, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(25, 135, 84, 0.045) 1px, transparent 1px);
            background-size: 38px 38px;
            pointer-events: none;
        }

        .ar-footer-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(14px);
            pointer-events: none;
        }

        .ar-footer-glow-1 {
            width: 260px;
            height: 260px;
            left: -120px;
            top: 40px;
            background: rgba(25, 135, 84, 0.12);
        }

        .ar-footer-glow-2 {
            width: 320px;
            height: 320px;
            right: -150px;
            bottom: -120px;
            background: rgba(25, 135, 84, 0.10);
        }

        .ar-footer-top,
        .ar-footer-bottom {
            position: relative;
            z-index: 2;
        }

        .ar-footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .ar-footer-brand img {
            width: 54px;
            height: 54px;
            object-fit: contain;
            filter: drop-shadow(0 8px 16px rgba(15, 40, 30, 0.12));
        }

        .ar-footer-brand h3 {
            font-family: "Poppins", sans-serif;
            font-size: 25px;
            font-weight: 800;
            color: #082234;
            margin: 0;
            letter-spacing: -0.4px;
        }

        .ar-footer-brand span {
            display: block;
            margin-top: 3px;
            font-size: 13px;
            color: #5f6f66;
            font-weight: 600;
        }

        .ar-footer-desc {
            max-width: 360px;
            color: #596b62;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .ar-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .ar-footer-social a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #ffffff;
            color: #198754;
            border: 1px solid rgba(25, 135, 84, 0.18);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            box-shadow: 0 12px 26px rgba(15, 40, 30, 0.08);
            transition: all 0.3s ease;
        }

        .ar-footer-social a:hover {
            background: #198754;
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 16px 34px rgba(25, 135, 84, 0.22);
        }

        .ar-footer-links h4 {
            position: relative;
            font-family: "Poppins", sans-serif;
            font-size: 17px;
            font-weight: 800;
            color: #082234;
            margin-bottom: 18px;
            padding-bottom: 12px;
        }

        .ar-footer-links h4::after {
            content: "";
            position: absolute;
            width: 38px;
            height: 3px;
            left: 0;
            bottom: 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #198754, #20c997);
        }

        .ar-footer-links ul {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .ar-footer-links ul li {
            margin-bottom: 12px;
        }

        .ar-footer-links ul li a {
            position: relative;
            color: #53665d;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .ar-footer-links ul li a::before {
            content: "›";
            margin-right: 8px;
            color: #198754;
            font-weight: 800;
        }

        .ar-footer-links ul li a:hover {
            color: #198754;
            padding-left: 4px;
        }

        .ar-footer-cta {
            position: relative;
            overflow: hidden;
            padding: 26px;
            border-radius: 28px;
            background:
                linear-gradient(145deg, #ffffff 0%, #f4fff8 100%);
            border: 1px solid rgba(25, 135, 84, 0.16);
            box-shadow: 0 24px 60px rgba(15, 40, 30, 0.10);
        }

        .ar-footer-cta::before {
            content: "";
            position: absolute;
            width: 150px;
            height: 150px;
            right: -70px;
            top: -70px;
            border-radius: 50%;
            background: rgba(25, 135, 84, 0.11);
        }

        .ar-footer-cta-badge {
            position: relative;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 13px;
            border-radius: 999px;
            background: rgba(25, 135, 84, 0.10);
            color: #198754;
            font-size: 12px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .ar-footer-cta h4 {
            position: relative;
            z-index: 2;
            font-family: "Poppins", sans-serif;
            font-size: 20px;
            font-weight: 800;
            color: #082234;
            line-height: 1.35;
            margin-bottom: 10px;
        }

        .ar-footer-cta p {
            position: relative;
            z-index: 2;
            color: #5f6f66;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .ar-footer-contact {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 10px;
            margin-bottom: 20px;
        }

        .ar-footer-contact div {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #43574d;
            font-size: 14px;
            font-weight: 600;
        }

        .ar-footer-contact i {
            color: #198754;
            font-size: 16px;
            margin-top: 2px;
        }

        .ar-footer-action {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 10px;
        }

        .ar-footer-btn-primary {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 16px;
            border-radius: 15px;
            background: linear-gradient(135deg, #198754, #0f6840);
            color: #ffffff;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 15px 32px rgba(25, 135, 84, 0.24);
            transition: all 0.3s ease;
        }

        .ar-footer-btn-primary:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(25, 135, 84, 0.32);
        }

        .ar-footer-btn-wa {
            width: 48px;
            min-width: 48px;
            height: 48px;
            border-radius: 15px;
            background: #ffffff;
            color: #198754;
            border: 1px solid rgba(25, 135, 84, 0.18);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            text-decoration: none;
            box-shadow: 0 12px 26px rgba(15, 40, 30, 0.08);
            transition: all 0.3s ease;
        }

        .ar-footer-btn-wa:hover {
            background: #198754;
            color: #ffffff;
            transform: translateY(-3px);
        }

        .ar-footer-bottom {
            margin-top: 42px;
            padding-bottom: 28px;
        }

        .ar-footer-bottom-inner {
            border-top: 1px solid rgba(25, 135, 84, 0.16);
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            color: #40534a;
            font-size: 14px;
        }

        .ar-footer-bottom-inner strong {
            color: #082234;
        }

        .ar-footer-bottom-inner a {
            color: #198754;
            font-weight: 700;
            text-decoration: none;
        }

        .ar-footer-bottom-inner a:hover {
            color: #0f6840;
        }

        /* RESPONSIVE FOOTER */
        @media (max-width: 991px) {
            .ar-footer {
                padding-top: 46px;
            }

            .ar-footer-cta {
                padding: 24px;
            }

            .ar-footer-bottom-inner {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 575px) {
            .ar-footer-brand {
                align-items: flex-start;
            }

            .ar-footer-brand h3 {
                font-size: 22px;
            }

            .ar-footer-social {
                flex-wrap: wrap;
            }

            .ar-footer-action {
                flex-direction: column;
            }

            .ar-footer-btn-wa {
                width: 100%;
            }
        }