/* ==========================================================
   DOMATEN Service Banner
   Version: 2.0
   Author: DOMATEN
   ========================================================== */

/* ===========================
   Brand Variables
=========================== */

:root{
    --dsb-bg:#0F0F10;
    --dsb-card:#17181B;
    --dsb-gold:#D4AF37;
    --dsb-gold-light:#E4C767;
    --dsb-white:#FFFFFF;
    --dsb-text:#C9CCD3;
    --dsb-border:rgba(212,175,55,.18);

    --dsb-radius:18px;
    --dsb-transition:.35s ease;
}


/* ===========================
   Banner
=========================== */

.domaten-service-banner{

    position:relative;

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

    padding:36px;

    margin:0 0 40px;

    overflow:hidden;

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

    background:linear-gradient(
        145deg,
        #16171A,
        #101113
    );

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

    box-shadow:
        0 18px 40px rgba(0,0,0,.28),
        inset 0 0 0 1px rgba(255,255,255,.02);

    transition:all var(--dsb-transition);

}


.domaten-service-banner:hover{

    transform:translateY(-3px);

    border-color:rgba(212,175,55,.35);

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

}



/* ===========================
   Gold Accent
=========================== */

.domaten-service-banner::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:5px;
    height:100%;

    background:linear-gradient(
        to bottom,
        var(--dsb-gold),
        #8E6A18
    );

}



/* ===========================
   Background Illustration
=========================== */

.domaten-banner-bg{

    position:absolute;

    right:-35px;
    bottom:-25px;

    width:260px;

    opacity:.055;

    pointer-events:none;

    user-select:none;

}



/* ===========================
   Icon Box
=========================== */

.domaten-service-icon{

    width:82px;
    height:82px;

    flex-shrink:0;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.25);

    background:rgba(212,175,55,.05);

    display:flex;

    align-items:center;

    justify-content:center;

    backdrop-filter:blur(10px);

}


.domaten-service-icon img{

    width:42px;
    height:42px;

}



/* ===========================
   Content
=========================== */

.domaten-service-content{

    position:relative;
    z-index:2;

}


.domaten-service-title{

    margin:0;

    color:var(--dsb-white);

    font-size:32px;

    font-weight:700;

    line-height:1.2;

}


.domaten-service-divider{

    width:80px;

    height:3px;

    margin:16px 0 22px;

    border-radius:30px;

    background:linear-gradient(
        to right,
        var(--dsb-gold),
        transparent
    );

}


.domaten-service-description{

    max-width:620px;

    color:var(--dsb-text);

    font-size:17px;

    line-height:1.8;

}



/* ===========================
   Fade Animation
=========================== */

@keyframes domatenFade{

    from{

        opacity:0;
        transform:translateY(16px);

    }

    to{

        opacity:1;
        transform:none;

    }

}


.domaten-service-banner{

    animation:domatenFade .6s ease;

}



/* ===========================
   Tablet
=========================== */

@media (max-width:992px){

.domaten-service-banner{

    padding:30px;

    gap:24px;

}

.domaten-service-title{

    font-size:28px;

}

}



/* ===========================
   Mobile
=========================== */

@media (max-width:767px){

.domaten-service-banner{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

    padding:24px;

}

.domaten-banner-bg{

    display:none;

}

.domaten-service-icon{

    width:68px;
    height:68px;

}

.domaten-service-icon img{

    width:34px;
    height:34px;

}

.domaten-service-title{

    font-size:24px;

}

.domaten-service-description{

    font-size:15px;

    line-height:1.7;

}

}