/*==========================================================
STYLE.CSS
KOPERASI GLOBAL AKSES SEJAHTERA
VERSION 2.0
PART 01
FOUNDATION
==========================================================*/


/*==========================================================
ROOT
==========================================================*/

:root{

    --primary:#d90429;
    --primary-dark:#a1031f;
    --secondary:#ffb703;

    --bg:#070b13;
    --surface:#0d1320;
    --card:#121a29;
    --card-hover:#172235;

    --text:#ffffff;
    --text-muted:#b8c2d3;
    --text-soft:#7f8da3;

    --border:rgba(255,255,255,.08);

    --success:#16c784;
    --warning:#f59e0b;
    --danger:#ef4444;
    --info:#3b82f6;

    --shadow-sm:0 8px 25px rgba(0,0,0,.12);
    --shadow:0 20px 60px rgba(0,0,0,.25);
    --shadow-lg:0 40px 120px rgba(0,0,0,.45);

    --radius-xs:8px;
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:36px;
    --radius-full:999px;

    --blur:18px;

    --container:1320px;

    --transition:.35s cubic-bezier(.4,0,.2,1);

}


/*==========================================================
LIGHT MODE
==========================================================*/

body.light{

    --bg:#f4f7fb;

    --surface:#ffffff;

    --card:#ffffff;

    --card-hover:#fafafa;

    --text:#121826;

    --text-muted:#4b5563;

    --text-soft:#6b7280;

    --border:#e6eaf0;

    --shadow-sm:0 10px 30px rgba(15,23,42,.05);

    --shadow:0 18px 50px rgba(15,23,42,.08);

    --shadow-lg:0 30px 90px rgba(15,23,42,.12);

}


/*==========================================================
RESET
==========================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    scroll-padding-top:110px;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'DM Sans',sans-serif;

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

    transition:

        background .35s,

        color .35s;

}

img{

    max-width:100%;

    display:block;

}

svg{

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font:inherit;

    outline:none;

}

ul{

    list-style:none;

}

section{

    position:relative;

    padding:120px 0;

}

::selection{

    background:var(--primary);

    color:#fff;

}


/*==========================================================
TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4,
h5{

    color:var(--text);

    line-height:1.15;

    font-weight:800;

}

h1{

    font-size:clamp(52px,6vw,84px);

}

h2{

    font-size:clamp(36px,4vw,56px);

}

h3{

    font-size:26px;

}

h4{

    font-size:20px;

}

p{

    color:var(--text-muted);

}

small{

    color:var(--text-soft);

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

}

.section-header.center{

    text-align:center;

}

.section-header h2{

    margin:18px 0 22px;

}

.section-header h2 span{

    color:var(--primary);

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:var(--radius-full);

    background:rgba(217,4,41,.10);

    color:var(--primary);

    font-weight:700;

    font-size:13px;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.section-badge::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

}


/*==========================================================
LAYOUT
==========================================================*/

.container{

    width:min(100% - 40px,var(--container));

    margin:auto;

}

.page-wrapper{

    position:relative;

    overflow:hidden;

}


/*==========================================================
BUTTON
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 30px;

    border-radius:var(--radius-full);

    font-weight:700;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.25),
        transparent
    );

    opacity:0;

    transition:.35s;

}

.btn:hover::before{

    opacity:1;

}

.btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    box-shadow:0 18px 45px rgba(217,4,41,.28);

}

.btn-primary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    border:1px solid var(--border);

    background:transparent;

    color:var(--text);

}

.btn-outline:hover{

    border-color:var(--primary);

    color:var(--primary);

}

.btn-glass{

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(16px);

    color:#fff;

}

body.light .btn-glass{

    color:var(--text);

    background:rgba(255,255,255,.85);

}


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

.glass-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(var(--blur));

    border-radius:30px;

}

body.light .glass-card{

    background:rgba(255,255,255,.90);

    border:1px solid rgba(0,0,0,.05);

}

/*==========================================================
PRELOADER
==========================================================*/

#preloader{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:var(--bg);
    z-index:999999;
    transition:.5s ease;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
}

.loader-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.loader-ring{
    position:relative;
    width:90px;
    height:90px;

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

.loader-ring::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:50%;
    border:3px solid rgba(255,255,255,.12);
    border-top:3px solid var(--primary);
    animation:spin .9s linear infinite;
}

body.light .loader-ring::before{
    border:3px solid rgba(0,0,0,.10);
    border-top:3px solid var(--primary);
}

.loader-logo{
    position:absolute;
    width:42px;
    height:42px;

    object-fit:cover;
    object-position:center;

    border-radius:50%;
    background:#fff;
    padding:0;
    overflow:hidden;

    z-index:2;
}

.loader-wrapper h3{
    margin-top:18px;
    font-size:18px;
    font-weight:700;
    color:var(--text);
    letter-spacing:.5px;
}

.loader-wrapper p{
    margin-top:4px;
    font-size:13px;
    color:var(--text-muted);
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/*==========================================================
CURSOR
==========================================================*/

.cursor-dot{

    position:fixed;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

    pointer-events:none;

    z-index:99999;

}

.cursor-outline{

    position:fixed;

    width:40px;

    height:40px;

    border-radius:50%;

    border:1px solid rgba(217,4,41,.35);

    pointer-events:none;

    transition:transform .12s;

    z-index:99998;

}


/*==========================================================
SCROLL BAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--bg);

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        var(--primary),

        var(--primary-dark)

    );

    border-radius:999px;

}


/*==========================================================
SCROLL PROGRESS
==========================================================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    z-index:999999;

}


/*==========================================================
NOISE
==========================================================*/

.noise{

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.03;

    background-image:
    radial-gradient(circle at 20% 20%,#fff 1px,transparent 1px),
    radial-gradient(circle at 70% 80%,#fff 1px,transparent 1px);

    background-size:120px 120px;

    z-index:1;

}


/*==========================================================
ANIMATION
==========================================================*/

@keyframes spin{

    from{

        transform:rotate(0);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}


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

@media(max-width:992px){

    section{

        padding:100px 0;

    }

}

@media(max-width:768px){

    .container{

        width:min(100% - 30px,var(--container));

    }

    .btn{

        padding:15px 24px;

    }

    .cursor-dot,
    .cursor-outline{

        display:none;

    }

}

@media(max-width:576px){

    h1{

        font-size:46px;

    }

    h2{

        font-size:34px;

    }

}
/*==========================================================
PART 02
HEADER
==========================================================*/


/*==========================================================
SITE HEADER
==========================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:all .35s ease;

    background:transparent;

}

.site-header.scrolled{

    background:rgba(7,11,19,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

body.light .site-header.scrolled{

    background:rgba(255,255,255,.88);

    border-bottom:1px solid rgba(0,0,0,.06);

}


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

.header-container{

    width:min(100% - 40px,var(--container));

    margin:auto;

    height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}


/*==========================================================
LOGO
==========================================================*/

.brand{

    display:flex;

    align-items:center;

    gap:16px;

    flex-shrink:0;

}

.brand-logo{

    width:56px;

    height:56px;

    border-radius:18px;

    overflow:hidden;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

}

.brand:hover .brand-logo{

    transform:rotate(-5deg) scale(1.05);

}

.brand-logo img{

    width:42px;

}

.brand-content{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.brand-title{

    font-size:18px;

    font-weight:800;

    color:var(--text);

    letter-spacing:.04em;

}

.brand-content small{

    margin-top:5px;

    color:var(--text-soft);

    font-size:12px;

    letter-spacing:.12em;

}


/*==========================================================
NAVBAR
==========================================================*/

.navbar{

    margin-left:auto;

}

.navbar ul{

    display:flex;

    align-items:center;

    gap:12px;

}

.navbar a{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 18px;

    border-radius:999px;

    color:var(--text-muted);

    font-weight:600;

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--text);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:18px;

    right:18px;

    bottom:8px;

    height:2px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:center;

    transition:.35s;

}

.navbar a:hover::after,

.navbar a.active::after{

    transform:scaleX(1);

}

.navbar a.active{

    color:var(--primary);

}


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

.header-right{

    display:flex;

    align-items:center;

    gap:14px;

}


/*==========================================================
THEME BUTTON
==========================================================*/

.theme-toggle{

    position: relative;

    width: 52px;
    height: 52px;

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

    border-radius: 50%;

    cursor: pointer;

    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);

    color: #ffffff;

    transition: all .35s ease;

}
.theme-toggle .moon-icon{
    color:#ffffff;
}

.theme-toggle .sun-icon{
    color:#D90429;
}

body.light .theme-toggle .moon-icon{
    opacity:0;
    transform:rotate(180deg);
}

body.light .theme-toggle .sun-icon{
    opacity:1;
    transform:rotate(0);
}

body:not(.light) .theme-toggle .sun-icon{
    opacity:0;
    transform:rotate(-180deg);
}
/*==========================================================
REGISTER BUTTON
==========================================================*/

.header-right .btn{

    height:52px;

    padding-inline:28px;

}


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

.mobile-toggle{

    width:52px;

    height:52px;

    display:none;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:var(--text);

    transition:var(--transition);

}

body.light .mobile-toggle{

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

}

.mobile-toggle:hover{

    background:var(--primary);

    color:#fff;

}


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

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:340px;

    max-width:100%;

    height:100vh;

    background:var(--surface);

    z-index:1200;

    transition:.4s ease;

    display:flex;

    flex-direction:column;

    border-left:1px solid var(--border);

    box-shadow:-20px 0 80px rgba(0,0,0,.20);

}

.mobile-menu.show{

    right:0;

}

.mobile-menu-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:26px;

    border-bottom:1px solid var(--border);

}

.mobile-menu-header img{

    width:54px;

}

.mobile-menu-header button{

    width:46px;

    height:46px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    color:var(--text);

    transition:var(--transition);

}

.mobile-menu-header button:hover{

    background:var(--primary);

    color:#fff;

}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    padding:22px;

}

.mobile-menu nav a{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 20px;

    border-radius:16px;

    color:var(--text-muted);

    transition:var(--transition);

}

.mobile-menu nav a:hover{

    color:#fff;

    background:var(--primary);

    transform:translateX(8px);

}

.mobile-action{

    margin-top:auto;

    padding:24px;

    display:grid;

    gap:14px;

}


/*==========================================================
MENU OVERLAY
==========================================================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:1190;

}

.menu-overlay.show{

    opacity:1;

    visibility:visible;

}


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

@media(max-width:1200px){

    .navbar{
        display:none;
    }

    .header-right{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .header-right .btn{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

}

@media(max-width:768px){

    .header-container{

        width:min(100% - 30px,var(--container));

        height:78px;

    }

    .brand-logo{

        width:50px;

        height:50px;

    }

    .brand-logo img{

        width:36px;

    }

    .brand-title{

        font-size:16px;

    }

}

@media(max-width:480px){

    .mobile-menu{

        width:100%;

    }

}
/*==========================================================
PART 03
HERO SECTION
==========================================================*/

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

.hero{

    position:relative;

    width:100%;

    min-height:calc(100vh - 90px);

    margin-top:90px;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    isolation:isolate;

    background:#000;

}


/*==========================================================
VIDEO
==========================================================*/

.hero-video{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center center;

    opacity:1;

    z-index:1;

    pointer-events:none;

}


/*==========================================================
OVERLAY
==========================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.08);

    z-index:2;

}


/*==========================================================
GRADIENT
==========================================================*/

.hero-gradient{

    position:absolute;

    inset:0;

    z-index:3;

    background:

    radial-gradient(circle at 15% 20%,
    rgba(217,4,41,.12),
    transparent 40%),

    radial-gradient(circle at 85% 25%,
    rgba(255,183,3,.08),
    transparent 45%);

}


/*==========================================================
NOISE
==========================================================*/

.hero-noise{

    display:none;

}


/*==========================================================
LIGHT
==========================================================*/

.hero-light{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.75;

    z-index:4;

}

.hero-light-1{

    width:420px;

    height:420px;

    background:rgba(217,4,41,.20);

    top:-120px;

    left:-140px;

}

.hero-light-2{

    width:360px;

    height:360px;

    background:rgba(255,183,3,.15);

    right:-120px;

    bottom:-120px;

}


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

.hero-container{

    position:relative;
    z-index:10;

    width:min(92%,1400px);

    margin:auto;

    display:grid;

    grid-template-columns:55% 45%;

    align-items:center;

    gap:70px;

    height:calc(100vh - 88px);

}

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

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 26px;
    margin-bottom:24px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
}

.badge-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--primary);
    animation:pulse 2s infinite;
}

.hero-left h1{
    font-size:clamp(48px,5vw,72px);
    line-height:1.08;
    font-weight:900;
    margin-bottom:16px;
    letter-spacing:-1px;
}

.hero-left h1 span{
    display:block;
    color:var(--primary);
}

.hero-left p{
    font-size:19px;
    line-height:1.8;
    max-width:600px;
    margin-bottom:18px;
    opacity:.95;
}

.hero-highlight{
    display:flex;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
    margin-top:0;
}
/*==========================================
  HERO 3D TEXT
==========================================*/

.hero-badge{
    color:#fff;
    font-weight:700;
    -webkit-text-stroke:.3px rgba(0,0,0,.35);
    text-shadow:
        0 1px 0 rgba(255,255,255,.18),
        0 2px 4px rgba(0,0,0,.35);
}

.hero-left h1{

    color:#fff;

    font-weight:900;

    letter-spacing:1px;

    -webkit-text-stroke:1.5px rgba(0,0,0,.35);

    text-shadow:
        0 1px 0 rgba(255,255,255,.12),
        0 2px 0 rgba(0,0,0,.18),
        0 3px 0 rgba(0,0,0,.16),
        0 4px 10px rgba(0,0,0,.35),
        0 12px 30px rgba(0,0,0,.28);

}

.hero-left h1 span{

    color:#FFD54F;

    -webkit-text-stroke:1.5px rgba(0,0,0,.45);

    text-shadow:
        0 1px 0 rgba(255,255,255,.15),
        0 2px 0 rgba(0,0,0,.18),
        0 3px 0 rgba(0,0,0,.16),
        0 5px 12px rgba(0,0,0,.38),
        0 14px 35px rgba(0,0,0,.30);

}

.hero-left p{

    color:#fff;

    font-weight:500;

    -webkit-text-stroke:.25px rgba(0,0,0,.18);

    text-shadow:
        0 1px 3px rgba(0,0,0,.55);

}

.hero-action .btn{

    font-weight:700;

    text-shadow:
        0 1px 2px rgba(0,0,0,.45);

}

/*==========================================================
ACTION
==========================================================*/

.hero-action{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.btn-lg{

    min-width:220px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}


/*==========================================================
HIGHLIGHT
==========================================================*/

.hero-highlight{

    display:flex;

    gap:26px;

    flex-wrap:wrap;

}

.hero-highlight div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.hero-highlight i{

    color:#22c55e;

}


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

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:auto;
    transform: translateY(-40px);

}
.hero-phone img{
    width:340px;
    max-width:100%;
}

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

@media (max-width:768px){

    .hero{

        margin-top:70px;

        min-height:calc(100svh - 70px);

        padding:15px 0 20px;

        display:flex;

        align-items:center;

        overflow:hidden;

    }

    .hero-container{

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        text-align:center;

        height:100%;

        gap:20px;

    }

    .hero-left{

        order:1;

        width:100%;

    }

    .hero-right{

        order:2;

        width:100%;

    }

    .hero-badge{

        margin:0 auto 15px;

        font-size:11px;

        padding:8px 16px;

    }

    .hero-left h1{

        font-size:32px;

        line-height:1.15;

        margin-bottom:15px;

    }

    .hero-left p{

        max-width:100%;

        font-size:15px;

        line-height:1.65;

        margin:0 auto 20px;

    }

    .hero-action{

        display:flex;

        justify-content:center;

        flex-wrap:wrap;

        gap:12px;

        width:100%;

    }

    .hero-action .btn{

        width:100%;

        max-width:320px;

        justify-content:center;

    }

    .hero-highlight{

        display:flex;

        justify-content:center;

        flex-wrap:wrap;

        gap:12px;

        margin-top:20px;

        font-size:13px;

    }

    .hero-phone{

        width:180px;

        margin:auto;

        transform:none;

    }

    .hero-phone img{

        width:100%;

        height:auto;

    }

}

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

@media (max-width:576px){

    .hero{

        margin-top:65px;

        min-height:calc(100svh - 65px);

        padding:10px 0 15px;

    }

    .hero-left h1{

        font-size:28px;

    }

    .hero-left p{

        font-size:14px;

    }

    .hero-badge{

        font-size:10px;

    }

    .hero-action .btn{

        width:100%;

        max-width:none;

    }

    .hero-phone{

        display:none;

    }

}
/*==========================================================
PART 04
STATS SECTION
==========================================================*/


/*==========================================================
STATS SECTION
==========================================================*/

.stats-section{

    position:relative;

    padding:120px 0;

    background:var(--surface);

    overflow:hidden;

}

.stats-section::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(217,4,41,.05);

    top:-240px;

    left:-180px;

    filter:blur(80px);

}

.stats-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,183,3,.05);

    right:-160px;

    bottom:-220px;

    filter:blur(80px);

}


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

.stats-grid{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    z-index:2;

}


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

.stats-card{

    position:relative;

    padding:45px 30px;

    border-radius:30px;

    background:var(--card);

    border:1px solid var(--border);

    transition:var(--transition);

    overflow:hidden;

}

.stats-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(

        90deg,

        var(--primary),

        var(--secondary)

    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.stats-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

}

.stats-card:hover::before{

    transform:scaleX(1);

}


/*==========================================================
ICON
==========================================================*/

.stats-icon{

    width:78px;

    height:78px;

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    font-size:30px;

    box-shadow:

        0 18px 40px rgba(217,4,41,.25);

}


/*==========================================================
NUMBER
==========================================================*/

.stats-card h3{

    font-size:46px;

    font-weight:800;

    margin-bottom:10px;

}

.stats-card p{

    font-size:17px;

    color:var(--text-muted);

}


/*==========================================================
ABOUT SECTION
==========================================================*/

.about-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

}

.about-wrapper{

    display:grid;

    grid-template-columns:460px 1fr;

    gap:80px;

    align-items:center;

    margin-bottom:70px;

}


/*==========================================================
PHOTO
==========================================================*/

.about-photo{

    position:relative;

}

.about-photo-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

}

.about-photo-card img{

    width:100%;

    height:650px;

    object-fit:cover;

    transition:1s;

}

.about-photo-card:hover img{

    transform:scale(1.06);

}

.about-photo-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        transparent 40%,

        rgba(0,0,0,.75)

    );

}

.about-photo-info{

    position:absolute;

    left:30px;

    right:30px;

    bottom:30px;

    z-index:2;

}

.about-photo-info h3{

    margin-bottom:8px;

    color:#fff;

    font-size:34px;

}

.about-photo-info span{

    color:rgba(255,255,255,.80);

}


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

.about-content h2{

    margin:18px 0 25px;

}

.about-content h2 span{

    display:block;

    color:var(--primary);

}

.about-content p{

    font-size:18px;

    margin-bottom:35px;

    line-height:1.9;

}


/*==========================================================
FEATURE
==========================================================*/

.about-feature-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:40px 0;

}

.about-feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    border-radius:20px;

    background:var(--card);

    border:1px solid var(--border);

    transition:var(--transition);

}

.about-feature:hover{

    transform:translateY(-6px);

    border-color:rgba(217,4,41,.25);

}

.about-feature i{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    color:#fff;

    background:var(--primary);

}


/*==========================================================
STATISTIC
==========================================================*/

.about-stat-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.about-stat-card{

    padding:35px;

    text-align:center;

    border-radius:28px;

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.about-stat-card:hover{

    transform:translateY(-8px);

}

.about-stat-card h3{

    margin-bottom:10px;

    font-size:48px;

    color:var(--primary);

}

.about-stat-card span{

    color:var(--text-muted);

}


/*==========================================================
BUTTON
==========================================================*/

.about-content .btn{

    margin-top:10px;

}


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

@media(max-width:1200px){

    .about-wrapper{

        grid-template-columns:1fr;

    }

    .about-photo{

        max-width:480px;

        margin:auto;

    }

    .about-stat-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .about-feature-grid{

        grid-template-columns:1fr;

    }

    .about-stat-grid{

        grid-template-columns:1fr;

    }

    .about-content{

        text-align:center;

    }

    .about-photo-card img{

        height:auto;

    }

}

@media(max-width:576px){

    .about-content h2{

        font-size:32px;

    }

    .about-photo-info h3{

        font-size:28px;

    }

}
/*==========================================================
PART 05
BIDANG USAHA
==========================================================*/

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

.services-section{

    position:relative;
    padding:130px 0;
    background:var(--surface);
    overflow:hidden;

}

.services-section::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    left:-250px;
    top:-250px;
    border-radius:50%;
    background:rgba(217,4,41,.06);
    filter:blur(120px);

}

.services-section::after{

    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-250px;
    bottom:-250px;
    border-radius:50%;
    background:rgba(255,183,3,.05);
    filter:blur(120px);

}

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

.service-grid{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:30px;

    margin-top:70px;

    z-index:2;

}

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

.service-card{

    position:relative;

    overflow:hidden;

    display:flex;

    flex-direction:column;

    padding:38px;

    border-radius:30px;

    background:linear-gradient(
        180deg,
        #162033,
        #101723
    );

    border:1px solid rgba(255,255,255,.06);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:rgba(217,4,41,.25);

    box-shadow:0 35px 60px rgba(0,0,0,.35);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #d90429,
        #ffb703
    );

}

/*==========================================================
NUMBER
==========================================================*/

.service-number{

    position:absolute;

    top:28px;

    right:30px;

    font-size:56px;

    font-weight:800;

    color:rgba(255,255,255,.05);

    user-select:none;

}

/*==========================================================
ICON
==========================================================*/

.service-icon{

    width:86px;

    height:86px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #d90429,
        #b00020
    );

    color:#fff;

    font-size:34px;

    box-shadow:0 15px 35px rgba(217,4,41,.35);

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

}

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

.service-card h3{

    margin-bottom:18px;

    font-size:28px;

    color:#fff;

}

.service-card p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:25px;

}

/*==========================================================
LIST
==========================================================*/

.service-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.service-card ul li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

    color:rgba(255,255,255,.85);

}

.service-card ul li i{

    width:26px;

    height:26px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(217,4,41,.12);

    color:#ffb703;

    font-size:12px;

}

/*==========================================================
LINK
==========================================================*/

.service-card a{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.service-card a i{

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(6px);

}

/*==========================================================
SPECIAL CARD
==========================================================*/

.featured{

    border-color:rgba(217,4,41,.30);

    background:linear-gradient(
        180deg,
        rgba(217,4,41,.10),
        #101723
    );

}

.premium-card{

    border-color:rgba(255,183,3,.18);

}

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

@media(max-width:1200px){

    .service-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .services-section{

        padding:90px 0;

    }

    .service-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:32px 24px;

    }

    .service-icon{

        width:72px;

        height:72px;

        font-size:28px;

    }

    .service-number{

        font-size:42px;

    }

    .service-card h3{

        font-size:24px;

    }

}
/*==========================================================
LEGALITAS & KEPATUHAN
==========================================================*/

.advantage-section{

    position:relative;

    padding:130px 0;

    background:var(--surface);

    overflow:hidden;

}

.advantage-section::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-260px;
    left:-260px;

    border-radius:50%;

    background:radial-gradient(
        rgba(217,4,41,.08),
        transparent 70%
    );

}

.advantage-section::after{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    right:-250px;
    bottom:-250px;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,183,3,.06),
        transparent 70%
    );

}

.advantage-section .container{

    position:relative;
    z-index:2;

}


/*==========================================================
LEGAL GRID
==========================================================*/

.legal-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}


/*==========================================================
LEGAL CARD
==========================================================*/

.legal-card{

    position:relative;

    display:flex;

    flex-direction:column;

    text-decoration:none;

    padding:38px 30px;

    border-radius:30px;

    background:linear-gradient(
        180deg,
        #172033,
        #111827
    );

    border:1px solid rgba(255,255,255,.06);

    overflow:hidden;

    transition:.35s;

}

.legal-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

}

.legal-card:hover{

    transform:translateY(-10px);

    border-color:rgba(217,4,41,.25);

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.legal-card:hover .legal-icon{

    transform:rotate(-8deg) scale(1.08);

}


/*==========================================================
ICON
==========================================================*/

.legal-icon{

    width:78px;
    height:78px;

    margin-bottom:25px;

    border-radius:22px;

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

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:30px;

    box-shadow:0 15px 35px rgba(217,4,41,.30);

    transition:.35s;

}


/*==========================================================
TEXT
==========================================================*/

.legal-card h3{

    font-size:24px;

    margin-bottom:16px;

    color:#fff;

    line-height:1.4;

}

.legal-card p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    margin-bottom:30px;

    flex:1;

}

.legal-card span{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.legal-card:hover span{

    gap:16px;

}


/*==========================================================
VIDEO SECTION
==========================================================*/

.video-section{

    padding:130px 0;

    background:var(--body);

}

.video-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    min-height:620px;

    box-shadow:var(--shadow-lg);

}

.video-wrapper video{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

}

.video-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(9,14,24,.88) 15%,
        rgba(9,14,24,.45) 60%,
        rgba(9,14,24,.15) 100%
    );

    z-index:1;

}

.video-overlay{

    position:relative;

    z-index:2;

    max-width:620px;

    padding:90px;

    color:#fff;

}

.video-overlay h2{

    margin:22px 0;

    line-height:1.2;

    color:#fff;

}

.video-overlay h2 span{

    display:block;

    color:var(--primary);

}

.video-overlay p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.82);

    margin-bottom:40px;

}

.video-overlay .btn{

    padding:16px 34px;

    border-radius:999px;

    display:inline-flex;

    align-items:center;

    gap:14px;

    font-weight:700;

}


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

@media(max-width:1200px){

    .legal-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .advantage-section,
    .video-section{

        padding:90px 0;

    }

    .legal-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .video-wrapper{

        min-height:520px;

    }

    .video-overlay{

        padding:50px 35px;

        text-align:center;

    }

    .video-overlay h2{

        font-size:34px;

    }

    .video-overlay p{

        font-size:16px;

    }

}

@media(max-width:480px){

    .legal-card{

        padding:30px 24px;

        border-radius:24px;

    }

    .legal-icon{

        width:66px;
        height:66px;

        font-size:24px;

    }

    .video-wrapper{

        border-radius:24px;

        min-height:450px;

    }

    .video-overlay{

        padding:40px 24px;

    }

}

/*==========================================================
NEWS SECTION
==========================================================*/

.news-section{

    position:relative;

    padding:130px 0;

    background:var(--body);

    overflow:hidden;

}

.news-section::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-260px;
    right:-260px;

    border-radius:50%;

    background:radial-gradient(
        rgba(217,4,41,.08),
        transparent 70%
    );

}

.news-section .container{

    position:relative;

    z-index:2;

}


/*==========================================================
LAYOUT
==========================================================*/

.news-wrapper{

    display:grid;

    grid-template-columns:1.6fr .9fr;

    gap:40px;

    margin-top:70px;

    align-items:start;

}


/*==========================================================
FEATURED NEWS
==========================================================*/

.featured-news{

    border-radius:34px;

    overflow:hidden;

    background:var(--card);

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

    transition:.35s;

}

.featured-news:hover{

    transform:translateY(-8px);

}

.featured-news a{

    display:block;

    text-decoration:none;

    color:inherit;

}

.featured-image{

    position:relative;

    height:430px;

    overflow:hidden;

}

.featured-image::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        transparent,
        rgba(0,0,0,.55)
    );

    z-index:1;

}

.featured-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;

}

.featured-news:hover img{

    transform:scale(1.08);

}

.news-badge{

    position:absolute;

    top:25px;
    left:25px;

    z-index:2;

    padding:10px 18px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

}

.featured-content{

    padding:40px;

}

.featured-meta{

    display:flex;

    gap:25px;

    margin-bottom:18px;

    color:var(--text-muted);

    font-size:14px;

}

.featured-meta span{

    display:flex;

    align-items:center;

    gap:8px;

}

.featured-content h3{

    font-size:34px;

    line-height:1.35;

    margin-bottom:20px;

    color:var(--text);

}

.featured-content p{

    color:var(--text-muted);

    line-height:1.9;

    margin-bottom:35px;

}

.read-more{

    display:inline-flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.featured-news:hover .read-more{

    gap:18px;

}


/*==========================================================
NEWS LIST
==========================================================*/

.news-list{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.news-item{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:.35s;

}

.news-item:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.news-item a{

    display:flex;

    gap:22px;

    align-items:center;

    padding:22px;

    text-decoration:none;

    color:inherit;

}

.news-item img{

    width:150px;

    height:120px;

    border-radius:20px;

    object-fit:cover;

    transition:.5s;

    flex-shrink:0;

}

.news-item:hover img{

    transform:scale(1.08);

}

.news-item div{

    flex:1;

}

.small-category{

    display:inline-block;

    margin-bottom:14px;

    padding:6px 14px;

    border-radius:999px;

    background:rgba(217,4,41,.12);

    color:var(--primary);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

}

.news-item h4{

    font-size:22px;

    line-height:1.45;

    color:var(--text);

    margin-bottom:15px;

    transition:.35s;

}

.news-item:hover h4{

    color:var(--primary);

}

.news-item small{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--text-muted);

    font-size:14px;

}


/*==========================================================
BUTTON
==========================================================*/

.news-button{

    text-align:center;

    margin-top:70px;

}

.news-button .btn{

    padding:16px 36px;

    border-radius:999px;

    display:inline-flex;

    align-items:center;

    gap:14px;

    font-weight:700;

    transition:.35s;

}

.news-button .btn:hover{

    gap:20px;

}


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

@media(max-width:1200px){

    .news-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .news-section{

        padding:90px 0;

    }

    .featured-image{

        height:280px;

    }

    .featured-content{

        padding:30px;

    }

    .featured-content h3{

        font-size:28px;

    }

    .news-item a{

        flex-direction:column;

        align-items:flex-start;

    }

    .news-item img{

        width:100%;

        height:220px;

    }

}

@media(max-width:480px){

    .featured-content{

        padding:24px;

    }

    .featured-content h3{

        font-size:24px;

    }

    .featured-meta{

        flex-direction:column;

        gap:10px;

    }

    .news-item{

        border-radius:22px;

    }

    .news-item img{

        height:180px;

        border-radius:16px;

    }

    .news-item h4{

        font-size:19px;

    }

}
/*==========================================================
CTA
==========================================================*/

.cta-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

}

.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:36px;

    padding:90px;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    box-shadow:var(--shadow-lg);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-160px;

    top:-160px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-100px;

    bottom:-100px;

}

.cta-content{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

}

.cta-content h2{

    color:#fff;

    max-width:700px;

    margin-bottom:20px;

}

.cta-content p{

    color:rgba(255,255,255,.85);

    max-width:620px;

}

.cta-action{

    display:flex;

    gap:18px;

    flex-shrink:0;

}

.cta-action .btn{

    min-width:190px;

}

.cta-action .btn-outline{

    color:#fff;

    border-color:rgba(255,255,255,.35);

}

.cta-action .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}


/*==========================================================
ANIMATION
==========================================================*/

@keyframes ripple{

    from{

        transform:scale(1);

        opacity:.9;

    }

    to{

        transform:scale(1.6);

        opacity:0;

    }

}


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

@media(max-width:1200px){

    .news-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .cta-content{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media(max-width:768px){

    .news-grid{

        grid-template-columns:1fr;

    }

    .video-wrapper{

        min-height:420px;

    }

    .video-wrapper img{

        height:420px;

    }

    .cta-box{

        padding:60px 35px;

        text-align:center;

    }

    .cta-content{

        align-items:center;

    }

    .cta-action{

        flex-direction:column;

        width:100%;

    }

    .cta-action .btn{

        width:100%;

    }

}

@media(max-width:576px){

    .play-button{

        width:90px;

        height:90px;

        font-size:28px;

    }

    .news-body{

        padding:28px;

    }

}
/*==========================================================
FOOTER
==========================================================*/

.footer-section{

    position:relative;

    background:#0b1220;

    color:#fff;

    overflow:hidden;

}

.footer-section::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-260px;
    left:-260px;

    border-radius:50%;

    background:radial-gradient(
        rgba(217,4,41,.10),
        transparent 70%
    );

}

.footer-section::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    bottom:-260px;
    right:-260px;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,183,3,.06),
        transparent 70%
    );

}

.footer-section .container{

    position:relative;

    z-index:2;

}

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

.footer-cta{

    padding:100px 0 60px;

}

.footer-cta-box{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

    padding:70px;

    border-radius:36px;

    background:linear-gradient(
        135deg,
        #d90429,
        #7b0015
    );

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.cta-content{

    max-width:700px;

}

.cta-content h2{

    color:#fff;

    margin:20px 0;

    line-height:1.2;

}

.cta-content h2 span{

    display:block;

    color:#ffe082;

}

.cta-content p{

    color:rgba(255,255,255,.90);

    line-height:1.9;

    margin:0;

}

.cta-action{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta-action .btn{

    min-width:210px;

    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

}

.btn-light{

    background:#fff;

    color:#111827;

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#111827;

}

/*==========================================================
STATISTIC
==========================================================*/

.footer-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}

.stat-item{

    text-align:center;

    padding:30px;

    border-radius:26px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-item:hover{

    transform:translateY(-8px);

    border-color:rgba(217,4,41,.35);

}

.stat-item h3{

    font-size:42px;

    color:var(--primary);

    margin-bottom:12px;

}

.stat-item span{

    color:rgba(255,255,255,.75);

}

/*==========================================================
MAIN FOOTER
==========================================================*/

.footer-main{

    padding:90px 0 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:

        minmax(380px,2.6fr)

        minmax(220px,1.2fr)

        minmax(220px,1.2fr)

        minmax(320px,1.8fr);

    gap:60px;

    align-items:flex-start;

}

/*==========================================================
COLUMN
==========================================================*/

.footer-column{

    min-width:0;

}

.footer-column h4{

    font-size:21px;

    color:#fff;

    margin-bottom:28px;

}

.footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-column li{

    margin-bottom:16px;

}

/*==========================================================
ABOUT
==========================================================*/

.footer-about{

    padding-right:25px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:24px;

}

.footer-logo img{

    width:72px;

    height:auto;

}

.footer-logo h3{

    color:#fff;

    margin-bottom:4px;

    font-size:24px;

}

.footer-logo span{

    color:var(--primary);

    font-size:14px;

    letter-spacing:2px;

}

.footer-about p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

    margin-bottom:35px;

}

/*==========================================================
SOCIAL
==========================================================*/

.footer-social{

    display:flex;

    gap:14px;

    flex-wrap:wrap;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--primary);

    transform:translateY(-5px);

}

/*==========================================================
LINK
==========================================================*/

.footer-column a{

    display:inline-flex;

    align-items:center;

    color:rgba(255,255,255,.72);

    text-decoration:none;

    transition:.35s;

}

.footer-column a:hover{

    color:var(--primary);

    transform:translateX(6px);

}

/*==========================================================
CONTACT
==========================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-contact li{

    display:flex;

    gap:16px;

    align-items:flex-start;

    margin:0;

}

.footer-contact i{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    background:rgba(217,4,41,.15);

    color:var(--primary);

    flex-shrink:0;

}

.footer-contact span{

    color:rgba(255,255,255,.72);

    line-height:1.8;

}

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

.footer-bottom{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:28px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    margin:0;

    color:#bdbdbd;

    font-size:15px;

    line-height:1.8;

}

.footer-bottom strong{

    color:#ffffff;

    font-weight:700;

}

.footer-bottom .separator{

    margin:0 12px;

    color:rgba(255,255,255,.35);

}

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

@media(max-width:1200px){

    .footer-cta-box{

        flex-direction:column;

        text-align:center;

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:45px;

    }

    .footer-stats{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-cta{

        padding:80px 0 50px;

    }

    .footer-cta-box{

        padding:45px 30px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

    }

    .footer-about{

        padding-right:0;

    }

    .footer-stats{

        grid-template-columns:1fr 1fr;

        gap:20px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}

@media(max-width:480px){

    .footer-stats{

        grid-template-columns:1fr;

    }

    .cta-content h2{

        font-size:32px;

    }

    .cta-action{

        width:100%;

    }

    .cta-action .btn{

        width:100%;

        min-width:100%;

    }

    .stat-item{

        padding:26px;

    }

}
/*==========================================================
FOOTER LIGHT MODE
==========================================================*/

body.light .footer-section{

    background:#f8fafc;

    color:var(--text);

}

body.light .footer-main{

    background:#f8fafc;

}

body.light .footer-column h4,
body.light .footer-logo h3,
body.light .footer-bottom strong{

    color:var(--text);

}

body.light .footer-logo span{

    color:var(--primary);

}

body.light .footer-about p,
body.light .footer-column a,
body.light .footer-contact span,
body.light .footer-bottom{

    color:var(--text-muted);

}

body.light .footer-column a:hover{

    color:var(--primary);

}

body.light .footer-social a{

    background:#ffffff;

    border:1px solid #e5e7eb;

    color:var(--text);

}

body.light .footer-social a:hover{

    background:var(--primary);

    color:#fff;

}

body.light .stat-item{

    background:#ffffff;

    border:1px solid #e5e7eb;

}

body.light .footer-contact i{

    background:rgba(217,4,41,.08);

}

body.light .footer-bottom{

    border-top:1px solid #e5e7eb;

}

body.light .footer-section::before,
body.light .footer-section::after{

    opacity:.35;

}
/*==========================================================
BACK TO TOP
==========================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-dark)

    );

    color:#fff;

    box-shadow:0 20px 50px rgba(217,4,41,.28);

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    transform:translateY(-8px);

}


/*==========================================================
DARK MODE ICON
==========================================================*/

.theme-toggle{

    position:relative;

    overflow:hidden;

}

.theme-toggle i{

    position:absolute;

    transition:.35s;

}

.theme-toggle .fa-sun{

    opacity:0;

    transform:rotate(-180deg);

}

body.light .theme-toggle .fa-moon{

    opacity:0;

    transform:rotate(180deg);

}

body.light .theme-toggle .fa-sun{

    opacity:1;

    transform:rotate(0);

}



/*==========================================================
UTILITY
==========================================================*/

.text-primary{

    color:var(--primary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.rounded-xl{

    border-radius:32px;

}

.shadow-xl{

    box-shadow:var(--shadow-lg);

}

.border{

    border:1px solid var(--border);

}

.glass{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

}

body.light .glass{

    background:#fff;

}


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

@media(max-width:1200px){

    .footer-container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        flex-wrap:wrap;

        justify-content:center;

    }

    .back-to-top{

        right:20px;

        bottom:20px;

    }

}

@media(max-width:576px){

    .footer-newsletter form{

        border-radius:20px;

    }

    .footer-newsletter button{

        width:58px;

    }

}
/*==========================================================
LAYANAN RESPONSIVE
==========================================================*/

@media (max-width:768px){

    .services-grid{

        display:grid;

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:16px;

    }

    .service-card{

        min-height:260px;
        padding:22px 16px;
        border-radius:22px;

    }

    .service-icon{

        width:64px;
        height:64px;
        border-radius:18px;
        font-size:26px;
        margin-bottom:18px;

    }

    .service-number{

        font-size:16px;
    }

    .service-title{

        font-size:22px;
        line-height:1.25;
        margin-bottom:12px;

    }

    .service-description{

        font-size:14px;
        line-height:1.7;

    }

}
.mobile-action{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:30px;
}

.mobile-action .btn{
    width:100%;
    justify-content:center;
}

.mobile-theme-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.mobile-theme-toggle .sun-icon{
    display:none;
}

body.light .mobile-theme-toggle .moon-icon{
    display:none;
}

body.light .mobile-theme-toggle .sun-icon{
    display:inline-block;
}
.mobile-theme{
    display:none;
}

@media (max-width:992px){

    .desktop-theme{
        display:none;
    }

    .mobile-theme{
        display:flex;
        width:46px;
        height:46px;
        border-radius:50%;
        align-items:center;
        justify-content:center;
        margin-right:12px;
    }

}
/*=========================================================
    HERO VIDEO CARD
=========================================================*/

.hero-video-card{

    position:relative;

    width:100%;

    padding:28px;

    border-radius:32px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(30px);

    -webkit-backdrop-filter:blur(30px);

    box-shadow:

        0 30px 80px rgba(0,0,0,.35);

    overflow:hidden;

}

.hero-video-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        linear-gradient(

            135deg,

            rgba(255,255,255,.06),

            transparent 45%

        );

    pointer-events:none;

}

/*=========================================================
    HEADER
=========================================================*/

.hero-video-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:24px;

}

.video-profile{

    display:flex;

    align-items:center;

    gap:18px;

}

.video-profile-icon{

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    color:#fff;

    font-size:1.5rem;

    background:linear-gradient(
        135deg,
        #E6002D,
        #B80024
    );

}

.video-profile h4{

    margin:0;

    color:#fff;

    font-size:1.45rem;

    font-weight:700;

}

.video-profile small{

    display:block;

    margin-top:6px;

    color:rgba(255,255,255,.70);

    font-size:.95rem;

}

.video-option{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    border-radius:50%;

    color:#fff;

    background:rgba(255,255,255,.08);

    cursor:pointer;

    transition:.35s;

}

.video-option:hover{

    background:#E6002D;

}

/*=========================================================
    VIDEO
=========================================================*/

.hero-video-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:26px;

    background:#000;

}

.hero-profile-video{

    display:block;

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    border-radius:26px;

}

/*=========================================================
    FOOTER
=========================================================*/

.hero-video-footer{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:24px;

}

.video-feature{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.video-feature:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.08);

}

.video-feature i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    color:#E6002D;

    font-size:1.25rem;

    background:rgba(230,0,45,.12);

}

.video-feature strong{

    display:block;

    color:#fff;

    font-size:1rem;

    margin-bottom:4px;

}

.video-feature small{

    color:rgba(255,255,255,.65);

    font-size:.88rem;

}

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

@media(max-width:992px){

    .hero-video-footer{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .hero-video-card{

        padding:20px;

    }

    .hero-video-header{

        flex-direction:column;

        align-items:flex-start;

        gap:18px;

    }

    .video-profile{

        width:100%;

    }

    .video-option{

        align-self:flex-end;

    }

}