:root{

    --primary:#000000;
    --primary-light:#1F1F1F;
    /*
    --accent:#BC9804;
    --accent-dark:#9B7D03;
    --accent-light:#D4AF37;
    */
    --accent:#C9A227;
    --accent-dark:#A88412;
    --accent-light:#DDBB4B;

    --bg:#FFFFFF;
    --surface:#F5F5F5;
    --card:#FFFFFF;

    --text:#1A1A1A;
    --text-light:#6B7280;

    --border:#E5E7EB;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

    --radius:20px;
    --transition:.3s ease;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

.section{
    padding:100px 0;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.wa-float{

    position:fixed;

    right:24px;
    bottom:24px;

    width:64px;
    height:64px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    /* GLASS EFFECT */
    background:
    linear-gradient(
        135deg,
        rgba(37,211,102,.95),
        rgba(18,140,126,.92)
    );

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.18);

    box-shadow:
    0 12px 30px rgba(37,211,102,.35);

    z-index:9999;

    transition:var(--transition);

    overflow:hidden;
}

/* ICON */
.wa-float i{

    font-size:32px;
    color:#fff;

    transition:var(--transition);

}

/* GLOW EFFECT */
.wa-float::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,255,255,.35),
        transparent 60%
    );

    pointer-events:none;
}

/* HOVER */
.wa-float:hover{

    transform:
    translateY(-5px)
    scale(1.05);

    box-shadow:
    0 18px 40px rgba(37,211,102,.45);

}

/* ICON HOVER */
.wa-float:hover i{

    transform:scale(1.08);

}

/* ACTIVE */
.wa-float:active{

    transform:scale(.96);

}

/* MOBILE */
@media(max-width:576px){

    .wa-float{

        width:58px;
        height:58px;

        right:18px;
        bottom:18px;

    }

    .wa-float i{
        font-size:28px;
    }

}
/* =========================================================
   END WHATSAPP FLOATING BUTTON
========================================================= */

/* =========================================================
   HEADER
========================================================= */
.header{
    position:fixed;

    /*top:18px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 40px);
    max-width:1280px;
    border-radius:14px;*/
    
    top:0;
    left:0;
    width:100%;

    /*
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.28);
    box-shadow:
    0 10px 40px rgba(15,23,42,.08);
    */
    background:transparent;
    z-index:1000;
    padding:10px 0;
    
    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        padding .35s ease;
}

/* HEADER AFTER SCROLL */
.header.scrolled{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.28);

    box-shadow:
    0 10px 40px rgba(15,23,42,.08);
}
/* =========================================================
   NAVBAR
========================================================= */

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

/* =========================================================
   NAVIGATION MENU
========================================================= */

.nav-menu{
    display:flex;
    align-items:center;
    gap:36px;
}

/* NAV LINK */
.nav-link{
    position:relative;

    font-size:15px;
    font-weight:600;

    color:#fff;
    /*color:var(--text);*/
    /*transition:var(--transition);*/
    transition:
        color .35s ease,
}

/* HOVER LINE */
.nav-link::after{
    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    border-radius:10px;

    background:var(--accent);

    transition:var(--transition);
}

/* HOVER */
.nav-link:hover{
    /*color:var(--accent);*/
    /*color:var(--primary);*/
    color:#fff;
}

.nav-link:hover::after{
    width:100%;
}

/* ACTIVE */
.nav-link.active{
    /*color:var(--accent);*/
    /*color:var(--primary);*/
    color:#fff;
}

.nav-link.active::after{
    width:100%;
}

/* NORMAL LINK AFTER SCROLL */
.header.scrolled .nav-link{
    color:var(--text);
}

/* ACTIVE LINK AFTER SCROLL */
.header.scrolled .nav-link.active{
    color:var(--primary);
}
/* =========================================================
   LOGO
========================================================= */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

/* LOGO ICON */
.logo-icon{
    width:50px;
    height:50px;

    /*border-radius:50%;*/

    /*background:#fff;*/
    /*background:var(--primary);*/
    /*padding:10px;*/
    padding:0px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    /*box-shadow: 0 0 30px rgba(255,255,255,.30);*/
    /*box-shadow: 0 10px 20px rgba(0,74,173,.35);*/
    /* GLASS EFFECT */
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.95),
        rgba(255,255,255,.75)
    );
    
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    /* SOFT BORDER */
    border:
    1px solid rgba(255,255,255,.45);

    /* PREMIUM SHADOW */
    /*box-shadow:
    0 10px 30px rgba(0,74,173,.18),
    0 4px 12px rgba(255,255,255,.25) inset;*/
    
    box-shadow:
    0 10px 25px rgba(0,0,0,.12),
    0 0 12px rgba(188,152,4,.08),
    0 4px 12px rgba(255,255,255,.25) inset;

    transition:all .35s ease;
}

/* LIGHT REFLECTION */
.logo-icon::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,255,255,.55),
        transparent 60%
    );

    pointer-events:none;
}

/* LOGO IMAGE */
.logo-icon img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:transform .35s ease;
}

/* HOVER */
.logo:hover .logo-icon{
    
    transform:
    translateY(-3px)
    scale(1.04);

    box-shadow:
    0 18px 35px rgba(0,0,0,.18),
    0 0 20px rgba(188,152,4,.12),
    0 4px 12px rgba(255,255,255,.30) inset;
}

/* IMAGE HOVER */
.logo:hover .logo-icon img{

    transform:scale(1.03);
}

/* LOGO TEXT */
.logo-text{ 
    display:flex; 
    flex-direction:column; 
}

.logo-text h3{
    font-size:24px;
    line-height:1;

    /*color:#fff;*/
    /*color:var(--text);*/
    color:var(--accent);
    
    letter-spacing:.5px;
    margin:0;
    
    transition:color .35s ease;
}

/* LOGO AFTER SCROLL */
.header.scrolled .logo-text h3{
    /*color:var(--text);*/
    color:var(--accent);
}

.logo-text span{
    font-size:13px;
    color:#fff;
    /*color:var(--primary);*/
    letter-spacing:.5px;
    line-height:1;
    margin-top:2px;
    transition:color .35s ease;
}

.header.scrolled .logo-text span{
    color:var(--primary);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */
.menu-btn{
display:none;
background:none;
border:none;
font-size:24px;
cursor:pointer;
/*color:var(--text);*/
color:#fff;
/* transition:var(--transition);*/
transition:
        color .35s ease,
        transform .25s ease;
}

.header.scrolled .menu-btn{
    color:var(--text);
}

/*
.menu-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}

.header.scrolled .menu-btn:hover{
    color:var(--primary);
}
*/

/* ICON */
/*
.menu-toggle i{
    font-size:20px;
    color:var(--primary);

    transition:var(--transition);
}
*/

/* HOVER */
/*
.menu-toggle:hover{
    transform:translateY(-2px);
}*/

/* ACTIVE BUTTON */
/*
.menu-toggle.active{
    background:var(--primary);
}*/

/*
.menu-toggle.active i{
    color:#fff;
}*/

/* =========================================================
   RESPONSIVE
========================================================= */
/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media(max-width:992px){

    /* BUTTON */
    .menu-btn{
        display:block;
    }

    /* MENU */
    .nav-menu{

        position:absolute;

        /*top:100%;*/
        top:calc(100% + 24px);
        left:0;

        width:100%;

        /*background:#fff;*/
        /* GLASS EFFECT */ 
        /*
        background:rgba(255,255,255,.95); 
        border: 1px solid rgba(255,255,255,.25);
        */
        background:
        rgba(10,10,10,.82);
    
        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);

        border-radius:24px;

        padding:30px;

        flex-direction:column;
        align-items:flex-start;

        gap:24px;

        box-shadow:
        0 20px 40px rgba(15,23,42,.08);

        z-index:999;

        /* ANIMATION */
        opacity:0;
        visibility:hidden;

        transform:translateY(10px);

        transition:.35s ease;

        display:flex;
    }
    
    .header.scrolled .nav-menu{
        background:rgba(255,255,255,.95); 
        border: 1px solid rgba(255,255,255,.25);
    }

    /* SHOW */
    .nav-menu.show{

        opacity:1;
        visibility:visible;

        transform:translateY(0);

    }

    /* MOBILE LINK */
    .nav-link{
        font-size:16px;
    }

}

/* DESKTOP */
@media(min-width:993px){

    .menu-btn{
        display:none;
    }

}

@media(max-width:576px){

    .header{
        padding:14px 0;
    }

    .logo-icon{
        width:52px;
        height:52px;

        /*padding:8px;*/
    }

    .logo-text h3{
        font-size:20px;
    }

    .logo-text span{
        font-size:12px;
    }

}
/* =========================================================
   END HEADER
========================================================= */

/* =========================================================
   HERO SECTION
========================================================= */
/* =========================================================
   HERO BASE (SUITMEDIA STYLE)
========================================================= */

.hero{
    position:relative;
    /*min-height:100vh;*/
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#fff;    
    /* FIX HEADER OVERLAP */
    padding-top:140px; /* <- ini kuncinya */
    padding-bottom:100px; /* <- ini kuncinya */
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;

    transform:scale(1.05);
}

/* =========================================================
   OVERLAY (IMPORTANT SUITMEDIA STYLE)
========================================================= */
.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:
    radial-gradient(
        circle at center,
        transparent 40%,
        rgba(0,0,0,.20) 100%
    ),
    linear-gradient(
        90deg,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.88) 30%,
        rgba(0,0,0,.72) 55%,
        rgba(0,0,0,.45) 100%
    );
}
/* =========================================================
   WRAPPER
========================================================= */

.hero-wrapper{
    position:relative;
    z-index:3;
}

/* =========================================================
   CONTENT
========================================================= */

.hero-content{
    max-width:650px;
}

/* TITLE (SUITMEDIA STYLE = STRONG TYPOGRAPHY) */
/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;
    margin-bottom:18px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    color:#fff;

    font-size:14px;
    font-weight:600;

    letter-spacing:.3px;

    position:relative;
    overflow:hidden;
}

/* glow kecil */

.hero-badge::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform:translateX(-120%);
    transition:all .8s ease;
}

.hero-badge:hover::before{
    transform:translateX(120%);
}

.hero-content h1{
    font-size:44px;
    line-height:1.1;

    color:#fff;

    letter-spacing:-1px;

    margin-bottom:18px;
}

/* DESCRIPTION */

.hero-desc{
    font-size:18px;
    /*color:var(--text-light);*/
    color:rgba(255,255,255,.75);

    margin-bottom:14px;
}

/* =========================================================
   BUTTONS (CLEAN CORPORATE)
========================================================= */

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap; /* penting biar responsif tetap aman */
    margin-bottom:35px;
    
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 22px;
    border-radius:14px;

    font-weight:600;
    font-size:15px;

    transition:all .25s ease;

    white-space:nowrap;
    
    position:relative;
    overflow:hidden;
}

.btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-150%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );

    transform:skewX(-20deg);

    transition:all .6s ease;
}

.btn:hover::before{
    left:150%;
}
/* PRIMARY */
.btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    box-shadow:
        0 10px 25px rgba(0,0,0,.35),
        0 0 12px rgba(255,255,255,.08),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:all .3s ease;
}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
        0 16px 40px rgba(0,0,0,.45),
        0 0 18px rgba(255,255,255,.12),
        inset 0 1px 0 rgba(255,255,255,.12);

}

/* SECONDARY */
.btn-secondary{

    background:linear-gradient(
        135deg,
        var(--accent),
        var(--accent-dark)
    );

    color:#fff;

    box-shadow:
        0 12px 30px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.20);

    transition:all .3s ease;
}

.btn-secondary:hover{

    transform:translateY(-3px);

    box-shadow:
        0 18px 45px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.30);

    filter:brightness(1.05);
}
/* OUTLINE */

.btn-outline{
    background:#fff;
    border:1px solid var(--border);

    color:var(--text);
}

.btn-outline:hover{
    transform:translateY(-2px);
    background:#f8fafc;
}

/* =========================================================
   STATS (VERY CLEAN)
========================================================= */

.hero-stats{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.stat-card{
    padding:18px 20px;

    /*border-radius:16px;*/
    border-radius:10px;

    /* GLASS EFFECT */
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.18);

    /* soft shadow (bukan shadow keras) */
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    min-width:160px;

    transition:all .3s ease;

    position:relative;
    overflow:hidden;
}

.stat-card:hover{
    transform:translateY(-5px);

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.stat-card h3{
    font-size:18px;
    color:#ffffff;
    margin-bottom:4px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    /*.hero-overlay{
        background:rgba(255,255,255,.85);
    }*/

    .hero-content{
        text-align:center;
        margin:auto;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }
}

@media(max-width:576px){

    .hero{
        min-height:auto;
        padding-top:140px;
        padding-bottom:80px;
    }

    .hero-content h1{
        font-size:26px;
    }
    
    .hero-desc{
    font-size:16px;
    }
    .hero-buttons{
        flex-direction:row;   /* IMPORTANT */
        flex-wrap:nowrap;
        justify-content:center;
    }

    .btn{
        width:auto !important;
        flex:1;              /* bikin 2 tombol tetap balance */
    }
    /*.stat-card{
        width:100%;
    }*/
    
    /* HERO STATS */
    .hero-stats{
        display:flex;
        gap:10px;
        flex-wrap:nowrap;
    }

    .stat-card{
        flex:1;

        min-width:0;

        padding:12px 10px;

        text-align:center;
    }

    .stat-card h3{
        font-size:14px;
    }
}
/* =========================================================
   END HERO SECTION
========================================================= */

/* =========================================================
   ABOUT SECTION
========================================================= */
.about{
    position:relative;
    overflow:hidden;
    padding:80px 0;

    background:#fff;

    border-top:1px solid rgba(0,0,0,.04);
}

/* =========================================================
   BACKGROUND GLOW
========================================================= */
.about::before{
    content:'';

    position:absolute;
    top:0;
    left:50%;

    transform:translateX(-50%);

    width:1000px;
    height:300px;

    background:
    radial-gradient(
        ellipse at center,
        rgba(0,0,0,.025) 0%,
        rgba(0,0,0,.01) 35%,
        transparent 75%
    );

    pointer-events:none;
}

.about::after{
    display:none;
}
/* =========================================================
   GRID
========================================================= */

.about-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;
}

/* =========================================================
   ABOUT VISUAL
========================================================= */

.about-visual{
    position:relative;
}

/* =========================================================
   IMAGE WRAPPER
========================================================= */

.about-image{
    position:relative;

    border-radius:28px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.72),
        rgba(255,255,255,.35)
    );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.65);

    box-shadow:
        0 20px 60px rgba(15,23,42,.10),
        inset 0 1px 0 rgba(255,255,255,.55);

    transition:all .4s ease;
}

/* LIGHT REFLECTION */

.about-image::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        120deg,
        rgba(255,255,255,.18),
        transparent 40%
    );

    z-index:2;

    pointer-events:none;
}

/* IMAGE */

.about-image img{
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    transition:transform .5s ease;
}

/* HOVER */

.about-image:hover{
    transform:translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);
}

.about-image:hover img{
    transform:scale(1.03);
}

/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content{
    max-width:560px;
}

/* =========================================================
   SUBTITLE
========================================================= */

/* =========================================================
   ABOUT SUBTITLE
========================================================= */
/* SUBTITLE */
.about .section-subtitle{

    position:relative;

    display:inline-flex;
    align-items:center;

    padding:12px 20px;

    margin-bottom:22px;

    border-radius:999px;

    background:
    rgba(0,0,0,.92);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;
    /* color:var(--accent); */

    font-size:14px;
    font-weight:600;

    letter-spacing:.5px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.08);

    overflow:hidden;

    transition:all .3s ease;
}

/* SHINE EFFECT */
.about .section-subtitle::before{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:50%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform:skewX(-20deg);

    transition:left .7s ease;
}

/* HOVER */
.about .section-subtitle:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 28px rgba(0,0,0,.15);

    border-color:
    rgba(255,255,255,.12);
}

.about .section-subtitle:hover::before{

    left:150%;
}
/* =========================================================
   TITLE
========================================================= */

.about-content h2{
    font-size:32px;
    line-height:1.15;
    color:var(--text);
    /*font-weight:800;*/
    margin-bottom:10px;
    letter-spacing:-1px;
}

/* =========================================================
   PARAGRAPH
========================================================= */

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:0px;
}

/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.about-highlight{
    position:relative;

    margin-top:28px;

    padding:18px 22px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        rgba(0,74,173,.05),
        rgba(37,99,235,.03)
    );

    border:1px solid rgba(0,74,173,.08);

    box-shadow:
        0 10px 30px rgba(15,23,42,.04);

    color:var(--text);

    font-weight:500;

    line-height:1.8;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .about{
        padding:90px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-content{
        max-width:100%;
    }

    .about-content h2{
        font-size:32px;
    }

}

@media(max-width:768px){

    .about{
        text-align:center;
    }

    .about-content h2{
        font-size:32px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-highlight{
        padding:18px;
    }

}

@media(max-width:576px){

    .about{
        padding:60px 0;
    }

    .about-grid{
        gap:40px;
    }

    .about-content h2{
        font-size:26px;
        line-height:1.3;
    }

    .about .section-subtitle{
        font-size:13px;
        padding:8px 16px;
    }

    .about-highlight{
        font-size:14px;
        line-height:1.7;
    }

}
/* =========================================================
   END ABOUT SECTION
========================================================= */

/* =========================================================
   SERVICES SECTION
========================================================= */
.services{
    position:relative;
    overflow:hidden;

    padding:80px 0;

    background:#F8F9FB;

    border-top:1px solid rgba(0,0,0,.04);
    border-bottom:1px solid rgba(0,0,0,.04);
}
/* =========================================================
   BACKGROUND EFFECT
========================================================= */
.services::before{
    content:'';

    position:absolute;
    top:0;
    left:50%;

    transform:translateX(-50%);

    width:1000px;
    height:300px;

    background:
    radial-gradient(
        ellipse at center,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.008) 35%,
        transparent 75%
    );

    pointer-events:none;
}

.services::after{
    display:none;
}
/* =========================================================
   CONTAINER
========================================================= */

.services .container{
    position:relative;
    z-index:2;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.services-header{
    max-width:760px;

    margin:0 auto 60px;

    text-align:center;
}

/* =========================================================
   SUBTITLE
========================================================= */
.services-header .section-subtitle{

    position:relative;

    display:inline-flex;
    align-items:center;

    padding:12px 20px;

    margin-bottom:22px;

    border-radius:999px;

    background:
    rgba(0,0,0,.92);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:14px;
    font-weight:600;

    letter-spacing:.5px;

    overflow:hidden;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.08);

    transition:all .3s ease;
}

.services-header .section-subtitle::before{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:50%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform:skewX(-20deg);

    transition:left .7s ease;
}

.services-header .section-subtitle:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 28px rgba(0,0,0,.15);

    border-color:
    rgba(255,255,255,.12);
}

.services-header .section-subtitle:hover::before{
    left:150%;
}
/* =========================================================
   TITLE
========================================================= */

.services-header h2{
    font-size:32px;
    line-height:1.15;
    color:var(--text);
    /*font-weight:800;*/
    margin-bottom:10px;
    letter-spacing:-1px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.services-header p{
    font-size:16px;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:0px;
}

/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid{
    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:28px;
}

/* =========================================================
   SERVICE CARD
========================================================= */
.service-card{

    position:relative;

    padding:38px;

    border-radius:30px;

    background:#fff;

    border:
    1px solid rgba(0,0,0,.06);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    overflow:hidden;

    transition:all .35s ease;
}

/* TOP GLOW */
.service-card::before{

    content:'';

    position:absolute;

    top:-100px;
    right:-100px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,0,0,.04),
        transparent 70%
    );

    pointer-events:none;

    transition:all .4s ease;
}

/* HOVER */
.service-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.12);

    border-color:
    rgba(0,0,0,.08);
}

/* =========================================================
   SERVICE TOP
========================================================= */

.service-top{
    display:flex;
    align-items:center;
    gap:22px;

    margin-bottom:24px;
}

/* =========================================================
   SERVICE ICON
========================================================= */
.service-icon{

    width:72px;
    height:72px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    box-shadow:
    0 12px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.10);

    position:relative;

    overflow:hidden;

    transition:all .35s ease;
}

/* ICON SHINE */

.service-icon::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:translateX(-120%);

    transition:all .8s ease;
}

.service-card:hover .service-icon::before{
    transform:translateX(120%);
}

/* ICON */

.service-icon i{
    font-size:30px;
    color:#fff;
}

/* =========================================================
   SERVICE HEADING
========================================================= */

.service-heading{
    flex:1;
}

/* =========================================================
   LABEL
========================================================= */

.service-label{
    display:block;

    margin-top:6px;

    /*color:var(--primary);*/
    color:#7a7a7a;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;

    /*text-transform:uppercase;*/
}

/* =========================================================
   TITLE
========================================================= */

.service-card h3{
    font-size:24px;
    line-height:1.2;

    font-weight:700;

    letter-spacing:-1px;

    color:var(--text);

    margin-bottom:0;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.service-card p{
    font-size:16px;
    line-height:1.9;

    color:var(--text-light);
}

.service-desc{
    margin:18px 0 16px;
    color:#666;
    line-height:1.7;
    font-size:15px;
}

.service-list{
    margin:10px 0 0;
    padding:0;
    list-style:none;
}

.service-list li{
    position:relative;
    padding-left:18px;
    margin-bottom:6px;

    color:#555;
    font-size:15px;
    line-height:1.7;
}

.service-list li::before{
    content:'';
    position:absolute;

    left:0;
    top:10px;

    width:5px;
    height:5px;

    border-radius:50%;

    background:#9a9a9a; /* abu-abu */
}

/* =========================================================
   BRAND PARTNERS
========================================================= */

.services-brand{

    margin-top:50px;

    padding-top:40px;

    border-top:
    1px solid rgba(0,0,0,.08);
}

.brand-grid{

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:18px;
}

.brand-item{

    background:#fff;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:12px;

    overflow:hidden;

    transition:.3s ease;
}

.brand-item:hover{
    background:#C9A227;
}

.brand-item img{

    width:100%;
    height:100%;

    max-width:80%;

    object-fit:contain;

    filter:grayscale(100%);
    opacity:.75;

    transition:.3s ease;
}

.brand-item:hover img{
    filter:none;
    opacity:1;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .services{
        padding:90px 0;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-header h2{
        font-size:38px;
    }

    .brand-grid{

        grid-template-columns:
        repeat(4,1fr);
    }
}

@media(max-width:576px){

    .services{
        padding:70px 0;
    }

    .services-header{
        margin-bottom:50px;
    }

    .services-header h2{
        font-size:30px;
    }

    .services-header p{
        font-size:15px;
    }

    .service-card{
        padding:28px;
        border-radius:24px;
    }

    .service-top{
        gap:18px;
        margin-bottom:20px;
    }

    .service-icon{
        width:64px;
        height:64px;

        border-radius:18px;
    }

    .service-icon i{
        font-size:26px;
    }

    .service-card h3{
        font-size:24px;
    }

    .service-card p{
        font-size:15px;
    }

   .services-brand{

        margin-top:40px;

        padding-top:30px;
    }

    .brand-grid{

        grid-template-columns:
        repeat(3,1fr);

        gap:12px;
    }

    .brand-item{

        height:65px;

        padding:12px;

        border-radius:16px;
    }

    .brand-item img{

        max-height:28px;
    }
}

 /* =========================================================
   END SERVICES SECTION
========================================================= */

/* =========================================================
   PORTFOLIO SECTION
========================================================= */

.portfolio{
    position:relative;
    overflow:hidden;
    padding:60px 0;

    background:
    radial-gradient(
        circle at top left,
        rgba(0,74,173,.05),
        transparent 28%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(252,163,17,.05),
        transparent 30%
    ),
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );
}

.portfolio .container{
    position:relative;
    z-index:2;
}

/* HEADER */
/* =========================================================
   PORTFOLIO HEADER
========================================================= */
.portfolio-header{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}
/*
.portfolio-header h2{
    font-size:32px;
    line-height:1.15;
    color:var(--text);
    margin-bottom:10px;
    letter-spacing:-1px;
}

.portfolio-header p{
    font-size:16px;
    line-height:1.9;
    color:var(--text-light);
}
*/

/* =========================================================
   SUBTITLE
========================================================= */

.portfolio-header .section-subtitle{

    position:relative;

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    margin-bottom:22px;

    border-radius:16px;

    /* GLASS EFFECT */
    background:
    linear-gradient(
        135deg,
        rgba(0,74,173,.10),
        rgba(37,99,235,.06)
    );

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:
    1px solid rgba(0,74,173,.12);

    box-shadow:
    0 10px 30px rgba(0,74,173,.08),
    inset 0 1px 0 rgba(255,255,255,.45);

    color:var(--primary);

    font-size:14px;
    font-weight:700;

    letter-spacing:.5px;

    overflow:hidden;

    transition:all .35s ease;
}

/* SHINE EFFECT */

.portfolio-header .section-subtitle::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-20deg);

    transition:all .8s ease;
}

/* HOVER */

.portfolio-header .section-subtitle:hover{

    transform:translateY(-2px);

    box-shadow:
    0 16px 40px rgba(0,74,173,.12),
    inset 0 1px 0 rgba(255,255,255,.55);

    border-color:
    rgba(0,74,173,.18);
}

.portfolio-header .section-subtitle:hover::before{
    left:140%;
}

/* =========================================================
   TITLE
========================================================= */

.portfolio-header h2{

    font-size:32px;
    line-height:1.15;

    color:var(--text);

    margin-bottom:10px;

    letter-spacing:-1px;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.portfolio-header p{

    font-size:16px;
    line-height:1.9;

    color:var(--text-light);

    margin-bottom:0;

    max-width:680px;
    margin-left:auto;
    margin-right:auto;
}

/* GRID */

.portfolio-grid{
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:28px;
}

/* CARD */

.portfolio-card{
    position:relative;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.92),
        rgba(255,255,255,.72)
    );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.75);

    box-shadow:
    0 20px 60px rgba(15,23,42,.07);

    overflow:hidden;

    transition:all .35s ease;
}

.portfolio-card:hover{

    transform:translateY(-8px);

    border-color:
    rgba(0,74,173,.10);

    box-shadow:
    0 30px 80px rgba(15,23,42,.12);
}

/* IMAGE */
/*
.portfolio-image{
    height:240px;
    overflow:hidden;
}

.portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .5s ease;
}
*/
.portfolio-image{
    height:240px;

    padding:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.portfolio-image img{

    width:100%;
    height:100%;

    object-fit:contain;

    transition:transform .5s ease;
}
.portfolio-card:hover .portfolio-image img{
    transform:scale(1.05);
}

/* CONTENT */

.portfolio-content{
    padding:28px;
}

.portfolio-category{

    display:inline-block;

    margin-bottom:14px;

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    letter-spacing:.5px;
}

.portfolio-content h3{

    font-size:24px;
    line-height:1.2;

    color:var(--text);

    margin-bottom:14px;
}

.portfolio-content p{

    font-size:15px;
    line-height:1.9;

    color:var(--text-light);

    margin-bottom:20px;
}

/* TAGS */

.portfolio-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.portfolio-tags span{

    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(0,74,173,.08);

    color:var(--primary);

    font-size:13px;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:992px){

    .portfolio-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .portfolio{
        padding:70px 0;
    }

    .portfolio-header{
        margin-bottom:50px;
    }

    .portfolio-header h2{
        font-size:30px;
    }

    .portfolio-header p{
        font-size:15px;
    }

    .portfolio-content{
        padding:24px;
    }

    .portfolio-content h3{
        font-size:22px;
    }

}
/* =========================================================
   END PORTFOLIO SECTION
========================================================= */

/* =========================================================
   CONTACT SECTION
========================================================= */
.contact{
    position:relative;
    overflow:hidden;

    padding:80px 0;

    background:#FCFCFC;

    border-top:1px solid rgba(0,0,0,.04);
}
/* =========================================================
   BACKGROUND EFFECT
========================================================= */
.contact::before{
    content:'';

    position:absolute;
    top:0;
    left:50%;

    transform:translateX(-50%);

    width:1000px;
    height:300px;

    background:
    radial-gradient(
        ellipse at center,
        rgba(0,0,0,.02) 0%,
        rgba(0,0,0,.008) 35%,
        transparent 75%
    );

    pointer-events:none;
}

.contact::after{
    display:none;
}
/* =========================================================
   CONTAINER
========================================================= */

.contact .container{
    position:relative;
    z-index:2;
}

/* =========================================================
   GRID
========================================================= */

.contact-grid{
    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:40px;

    align-items:center;
}

/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info{
    max-width:520px;
}

/* SUBTITLE */
.contact-info .section-subtitle{

    display:inline-flex;
    align-items:center;

    padding:12px 20px;

    margin-bottom:22px;

    border-radius:999px;

    background:
    rgba(0,0,0,.92);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;
    /*color:var(--accent);*/

    font-size:14px;
    font-weight:600;

    letter-spacing:.5px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.08);

    transition:all .3s ease;
}
/* SHINE EFFECT */
.contact-info .section-subtitle::before{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:50%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.20),
        transparent
    );

    transform:skewX(-20deg);

    transition:left .7s ease;
}

/* HOVER */
.contact-info .section-subtitle:hover{

    transform:
    translateY(-2px);

    box-shadow:
    0 12px 28px rgba(0,0,0,.15);

    border-color:
    rgba(255,255,255,.12);
}

.contact-info .section-subtitle:hover::before{

    left:150%;
}
/* =========================================================
   TITLE
========================================================= */

.contact-info h2{
    font-size:32px;
    line-height:1.15;
    color:var(--text);
    /*font-weight:800;*/
    margin-bottom:10px;
    letter-spacing:-1px;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.contact-info p{
    font-size:16px;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:0px;
}

/* =========================================================
   CONTACT IMAGE
========================================================= */
/* =========================================================
   CONTACT IMAGE
========================================================= */

.contact-image{
    position:relative;

    margin-top:28px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:visible;

    transition:all .4s ease;
}

/* IMAGE */

.contact-image img{
    width:350px;
    height:350px;

    object-fit:cover;

    border-radius:44px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

    transition:
        transform .5s ease,
        box-shadow .4s ease;
}

.contact-image:hover img{

    transform:
        translateY(-6px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.12);
}
/* =========================================================
   FORM WRAPPER
========================================================= */

.contact-form-wrap{
    position:relative;

    padding:38px;

    border-radius:30px;

    background:#fff;

    border:
    1px solid rgba(0,0,0,.06);

    box-shadow:
    0 25px 70px rgba(0,0,0,.08);

    overflow:hidden;
}

/* SOFT SHADOW EFFECT */

.contact-form-wrap::before{
    content:'';

    position:absolute;

    top:-100px;
    right:-100px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(0,0,0,.04),
        transparent 70%
    );

    pointer-events:none;
}

/* =========================================================
   FORM
========================================================= */

.contact-form{
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;

    gap:18px;
}

/* =========================================================
   INPUT
========================================================= */

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border-radius:18px;

    border:
    1px solid rgba(0,0,0,.08);

    background:#fff;

    font-size:15px;

    color:var(--text);

    outline:none;

    transition:all .3s ease;
}

/* TEXTAREA */

.contact-form textarea{
    min-height:150px;
    resize:none;
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus{

    background:#fff;

    border-color:
    rgba(0,0,0,.15);

    box-shadow:
    0 0 0 4px rgba(0,0,0,.04);
}

/* PLACEHOLDER */

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#9CA3AF;
}

/* =========================================================
   CONTACT BUTTON
========================================================= */

.contact-form .btn{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 22px;

    border:none;
    outline:none;

    cursor:pointer;

    border-radius:18px;

    font-size:15px;
    font-weight:600;

    color:#fff;
    /*color:var(--accent);*/
    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    box-shadow:
    0 12px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.10);

    transition:all .3s ease;

    position:relative;
    overflow:hidden;
}

/* SHINE EFFECT */

.contact-form .btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:50%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.12),
        transparent
    );

    transform:skewX(-20deg);

    transition:left .7s ease;
}

/* HOVER */

.contact-form .btn:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 18px 40px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.contact-form .btn:hover::before{
    left:150%;
}

/* ACTIVE */

.contact-form .btn:active{
    transform:scale(.98);
}

/* ICON */

.contact-form .btn i{
    font-size:20px;
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .contact-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .contact{
        padding:70px 0;
    }

    .contact-info{
        text-align:center;
        margin:auto;
    }

    .contact-info h2{
        font-size:30px;
    }
    
    .contact-image{
        margin-top:28px;
        border-radius:24px;
    }

    .contact-form-wrap{
        padding:28px;
        border-radius:24px;
    }

}
/* =========================================================
   END CONTACT SECTION
========================================================= */

/* =========================================================
   FOOTER
========================================================= */

.footer{
    background:
    linear-gradient(
        180deg,
        #111111 0%,
        #050505 100%
    );
    color:#E5E7EB;
    padding-top:60px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:'';
    position:absolute;
    inset:0;

    /*
    background:radial-gradient(
        circle at 20% 10%,
        rgba(255,255,255,.05),
        transparent 40%
    );
    */
    background:
    radial-gradient(
        circle at top right,
        rgba(188,152,4,.08),
        transparent 35%
    );
    pointer-events:none;
    
    

}

/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap:60px;
}

/* COLUMN */
.footer-col h4{
    font-size:20px;
    margin-bottom:25px;
    color:#fff;
    position:relative;
}

/* SMALL LINE */
.footer-col h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:3px;
    border-radius:10px;
    background:var(--accent);
}

/* BRAND */
.footer-brand{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:25px;
}

.footer-logo{
    width:60px;
    height:60px;

    /*border-radius:50%;*/

    /*background:#fff;*/
    background:#000;

    /*padding:10px;*/

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    /*box-shadow: 0 0 20px rgba(255,255,255,.65);*/
    box-shadow:
    0 10px 25px rgba(0,0,0,.18);
}

/* HOVER */
.footer-logo:hover{
    transform:
    translateY(-3px)
    scale(1.04);
    /*box-shadow: 0 0 20px rgba(255,255,255,.95);*/
    box-shadow:
    0 15px 35px rgba(0,0,0,.25),
    0 0 12px rgba(201,162,39,.15);
}

/* IMAGE */
.footer-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* BRAND TEXT */
.footer-brand h3{
    font-size:22px;
    color:var(--accent);
    margin-bottom:-8px;
}

.footer-brand span{
    font-size:14px;
    /*color:#94A3B8;*/
    color:#fff;
    line-height:1;
}

/* DESCRIPTION */
.footer-desc{
    /*color:#CBD5E1;*/
    /*color:#fff;*/
    color:rgba(255,255,255,.78);
    font-size:15px;
    max-width:400px;
    text-align:left;
    padding-right:40px;
}

/* INFO */
.footer-info{
    display:flex;
    /*align-items:flex-start;*/
    align-items:center;
    gap:14px;
    /*margin-bottom:10px;*/
    margin-bottom:4px;
}

.footer-info i{
    width:42px;
    height:42px;
    border-radius:50%;
    color:#fff;
    /*background:rgba(255,255,255,.05);*/
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
}

.footer-info p{
    /*color:#CBD5E1;*/
    
    /*color:#fff;*/
    color:rgba(255,255,255,.78);
    font-size:15px;
    line-height:1.8;
}

.footer-info:hover p{
    color:#fff;
}

.footer-info:hover{
    color:#fff;
    transform:translateX(5px);
}

.footer-info:hover i{
    /*background:var(--primary);*/
    /*color:#fff;
    box-shadow: 0 10px 20px rgba(0,74,173,.35);*/
    color:#fff;
    box-shadow:
        0 10px 20px rgba(201,162,39,.25);
}

/* CONTACT */
.footer-contact{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:0px;
    /*color:#CBD5E1;*/
    
    /*color:#fff;*/
    color:rgba(255,255,255,.78);
    transition:var(--transition);
}

.footer-contact i{
    width:42px;
    height:42px;
    border-radius:50%;
    color:#fff;
    /*background:rgba(255,255,255,.05);*/
    display:flex;
    align-items:center;
    justify-content:center;
    transition:var(--transition);
}

.footer-contact:hover{
    color:#fff;
    transform:translateX(5px);
}

.footer-contact:hover i{
    /*background:var(--primary);
    color:#fff;*/
    /*box-shadow: 0 10px 20px rgba(0,74,173,.35);*/
    color:#fff;
    box-shadow:
        0 10px 20px rgba(201,162,39,.25);
}

/* SOCIAL */
.footer-social{
    display:flex;
    gap:14px;
    margin-top:18px;
}

.footer-social a{
    width:44px;
    height:44px;
    border-radius:50%;

    background:rgba(255,255,255,.05);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:16px;

    transition:var(--transition);
}

.footer-social a:hover{
    background:var(--accent);
    color:#fff;
    transform:translateY(-4px);
    box-shadow:
        0 10px 20px rgba(201,162,39,.25);
}

/* BOTTOM */
.footer-bottom{
    border-top:
    1px solid rgba(255,255,255,.08);

    margin-top:40px;
    padding:18px 0;

    text-align:center;
}

.footer-bottom p{
    /*color:#94A3B8;*/
    /*color:var(--accent);*/
    color:rgba(255,255,255,.78);
    font-size:14px;
}

/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

}


@media(max-width:576px){

    .footer{
        padding-top:70px;
    }

    .footer-brand{
        align-items:flex-start;
    }

    .footer-brand h3{
        font-size:20px;
    }

    .footer-logo{
        width:54px;
        height:54px;
        font-size:24px;
    }

    .footer-social{
        flex-wrap:wrap;
    }

}
/* =========================================================
   END FOOTER
========================================================= */