/* =========================
   GLOBAL
========================= */

body{
    font-family:Arial, sans-serif;
    background:#f8f9fa;
    color:#222;
    overflow-x:hidden;
}

/* =========================
   HEADER
========================= */

.main-header{

    position:sticky;
    top:0;
    z-index:9999;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(12px);
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

/* WRAPPER */

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:stretch;
}

/* LEFT */

.header-left{
    display:flex;
    align-items:center;
    padding-right:40px;
}

/* LOGO */

.main-logo{
    display:flex;
    align-items:center;
    height:100%;
}

.main-logo img{
    height:120px;
    object-fit:contain;
    transition:.3s;
}

/* RIGHT */

.header-right{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* =========================
   HEADER TOP
========================= */

.header-top{
    display:flex;
    justify-content:flex-end;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
}

/* CONTACT */

.header-contact{
    display:flex;
    gap:12px;
}

/* CONTACT ITEM */

.header-contact a{

    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    background:#ff0000;
    border:1px solid #eee;
    border-radius:12px;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

/* ICON */

.header-contact i{

    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#2759a8;
    color:#fff;
    border-radius:50%;
    font-size:14px;
    transition:.3s;
}

/* HOVER */

.header-contact a:hover{

    background:#2759a8;

    border-color:#0000ff;

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(214,40,40,.2);
}

.header-contact a:hover i{

    background:#fff;

    color:#2759a8;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    padding:14px 0;
    position:relative;
}

/* NAV */

.navbar-nav{
    align-items:center;
}

/* ITEM */

.navbar-nav .nav-item{
    position:relative;
}

/* BORDER */

.navbar-nav .nav-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-2px;
    top:50%;

    transform:translateY(-50%);

    width:1px;
    height:24px;

    background:#e5e5e5;
}

/* LINK */

.navbar-nav .nav-link{

    padding:12px 20px !important;
    color:#222;
    font-weight:600;
    border-radius:10px;
    transition:.3s;
    margin-left:10px;
}

/* HOVER */

.navbar-nav .nav-link:hover{
    background:#2759a8;
    color:#fff;
}

/* ACTIVE */

.navbar-nav .nav-link.active{
    background:#2759a8;
    color:#fff;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    border: 1px solid #093a88;
    border-radius:16px;
    background: #2759a8;
    padding:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dropdown-item{
    padding:12px 16px;
    border-radius:10px;
    color: #2759a8;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover{
    background:red;
    color:#f3f3f1;
}

/* =========================
   MOBILE BUTTON
========================= */

.navbar-toggler{
    border:none;
    padding:0;
    font-size:30px;
    box-shadow:none !important;
}

/* =========================
   BUTTON
========================= */

.btn-primary-custom{
    display:inline-block;
    padding:12px 24px;
    background:#2759a8;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#b71c1c;
    color:#fff;
    transform:translateY(-2px);
}

/* =========================
   SIDEBAR
========================= */

.left-menu{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.left-title{
    background:#2759a8;
    color:#fff;
    padding:16px;
    font-weight:700;
}

.left-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}

.left-menu ul li a{
    display:flex;
    justify-content:space-between;
    padding:14px 16px;
    color:#222;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.left-menu ul li a:hover{
    background:#f8f9fa;
    padding-left:22px;
}

/* =========================
   HERO
========================= */

.hero-item{
    position:relative;
    border-radius:22px;
    overflow:hidden;
}

.hero-item img{
    width:100%;
    height:500px;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
}

.hero-content{
    color:#fff;
    padding:50px;
    max-width:600px;
}

.hero-content h1{
    font-size:48px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    margin:20px 0;
}

/* =========================
   SECTION
========================= */

/* =========================
   SECTION TITLE
========================= */

.section-title{

    position:relative;
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 32px 14px 22px;
    margin-bottom:35px;
    background:linear-gradient(
        135deg,
        #2759a8,
        #b71c1c
    );

    color:#fff;
    font-size:30px;
    font-weight:700;
    border-radius:0 18px 18px 0;
    box-shadow:0 10px 25px rgba(214,40,40,.2);
    overflow:hidden;
}

/* ARROW */

.section-title::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;

    background:#fff;

    opacity:.2;
}

/* TRIANGLE */

.section-title::after{

    content:"";
    position:absolute;

    right:-22px;
    top:0;
    border-top:31px solid transparent;
    border-bottom:31px solid transparent;
    border-left:22px solid #b71c1c;
}

/* ICON STYLE */

.section-title i{
    font-size:24px;
    color:#fff;
}

/* =========================
   SERVICES
========================= */

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,95,115,.18);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* =========================
   SERVICE CONTENT
========================= */

.service-content{

    position:relative;
    padding:24px;
    background:linear-gradient(
        135deg,
        #2759a8,
        #2788bb
    );

    color:#fff;
    overflow:hidden;
}

/* GLOW */

.service-content::before{

    content:"";
    position:absolute;
    top:-50px;
    right:-50px;
    width:120px;
    height:120px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

/* TITLE */

.service-content h3{

    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
    position:relative;
    z-index:2;
}

.service-content h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    position:relative;
    z-index:2;
}

/* TEXT */

.service-content p{
    margin:0;
    color:rgba(255,255,255,.9);
    line-height:1.7;
    position:relative;
    z-index:2;
}

.service-content a, a:link{

    color: white;
    text-decoration: none;
}

.service-content a:hover{

    color: rgb(243, 210, 88);
    text-decoration: none;
}

/* =========================
   WHY
========================= */

.why-card{

    background:#fff;
    padding:40px 20px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
    transition:.3s;
}

.why-card:hover{

    transform:translateY(-5px);
}

.why-card i{

    font-size:42px;
    color:#2759a8;
}

/* =========================
   WORKFLOW
========================= */

.workflow-item{

    background:#fff;
    padding:30px 20px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
    transition:.3s;
}

.workflow-item:hover{
    transform:translateY(-5px);
}

.workflow-item i{
    font-size:42px;
    color:#2759a8;
}

/* =========================
   CTA
========================= */

/* =========================
   CTA
========================= */

.cta-section{
    padding:90px 0;
}

/* BOX */

.cta-box{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #d62828,
        #9d0208
    );

    border-radius:30px;

    padding:70px 60px;

    color:#fff;

    box-shadow:
        0 25px 60px rgba(214,40,40,.25);

    z-index:1;
}

/* SHAPE */

.cta-shape{

    position:absolute;

    top:-120px;
    right:-120px;

    width:320px;
    height:320px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    z-index:-1;
}

/* CONTENT */

.cta-content{
    position:relative;
    z-index:2;
}

/* BADGE */

.cta-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#2759a8;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50px;
    margin-bottom:22px;
    font-size:14px;
    font-weight:600;
    backdrop-filter:blur(10px);
}

/* TITLE */

.cta-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:20px;
}

/* TEXT */

.cta-content p{
    font-size:18px;
    color:rgba(255,255,255,.9);
    line-height:1.8;
    margin-bottom:30px;
    max-width:700px;
}

/* FEATURES */

.cta-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

/* FEATURE */

.cta-feature{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#fff;
}

.cta-feature i{

    color:#ffd166;
}

/* ACTION */

.cta-action{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    height:100%;
}

/* BUTTON */

.cta-button{

    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:20px 30px;
    background:#2759a8;
    color:#ffffff;
    border-radius:20px;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* BUTTON HOVER */

.cta-button:hover{

    transform:translateY(-5px) scale(1.02);

    background:#fff;

    color:#9d0208;
}

/* HOTLINE */

.cta-hotline{

    margin-top:20px;

    font-size:18px;

    color:rgba(255,255,255,.92);
}

.cta-hotline strong{

    font-size:24px;

    color:#fff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .cta-box{

        padding:50px 30px;

        border-radius:24px;
    }

    .cta-content h2{

        font-size:36px;
    }

    .cta-content p{

        font-size:16px;
    }

    .cta-action{

        align-items:flex-start;
    }

    .cta-button{

        font-size:20px;
    }
}

@media(max-width:576px){

    .cta-box{
        padding:40px 22px;
    }

    .cta-content h2{

        font-size:28px;
    }

    .cta-features{

        flex-direction:column;

        gap:12px;
    }

    .cta-button{

        width:100%;

        font-size:18px;

        padding:18px;
    }

    .cta-hotline{

        font-size:16px;
    }

    .cta-hotline strong{

        font-size:20px;
    }
}

/* =========================
   FOOTER
========================= */

/* =========================
   FOOTER
========================= */

.footer{

    background:#0f1115;

    color:#fff;

    position:relative;

    overflow:hidden;
}

/* TOP */

.footer-top{

    padding:80px 0 50px;

    border-bottom:1px solid rgba(255,255,255,.08);
}

/* WIDGET */

.footer-widget h4{

    font-size:20px;

    margin-bottom:25px;

    font-weight:700;

    position:relative;
}

.footer-widget h4::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:50px;
    height:3px;

    background:#d62828;

    border-radius:10px;
}

/* LOGO */

.footer-logo{

    height:80px;

    margin-bottom:20px;

    object-fit:contain;

    filter:brightness(1.1);
}

/* TEXT */

.footer-widget p{

    color:#bfc4ce;

    line-height:1.8;

    margin-bottom:25px;
}

/* LIST */

.footer-widget ul{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-widget ul li{

    margin-bottom:14px;
}

/* LINKS */

.footer-widget ul li a{

    color:#bfc4ce;

    text-decoration:none;

    transition:.3s;

    display:inline-flex;

    align-items:center;

    gap:8px;
}

.footer-widget ul li a::before{

    content:"›";

    color:#d62828;

    font-size:18px;
}

/* HOVER */

.footer-widget ul li a:hover{

    color:#fff;

    transform:translateX(6px);
}

/* SOCIAL */

.footer-social{

    display:flex;

    gap:12px;
}

.footer-social a{

    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{

    background:#d62828;
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(214,40,40,.25);
}

/* CONTACT */

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-contact-item{

    display:flex;
    align-items:flex-start;
    gap:14px;
    color:#bfc4ce;
}

.footer-contact-item i{

    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(214,40,40,.12);
    color:#d62828;
    border-radius:12px;
    flex-shrink:0;
}

/* BOTTOM */

.footer-bottom{

    padding:22px 0;

    background:#0b0d11;
}

/* CONTENT */

.footer-bottom-content{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom-content p{

    margin:0;

    color:#8f96a3;
}

/* BOTTOM LINKS */

.footer-bottom-links{

    display:flex;

    gap:20px;
}

.footer-bottom-links a{

    color:#8f96a3;

    text-decoration:none;

    transition:.3s;
}

.footer-bottom-links a:hover{

    color:#fff;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer-top{
        padding:60px 0 40px;
    }

    .footer-logo{
        height:65px;
    }

    .footer-widget{
        margin-bottom:10px;
    }

    .footer-bottom-content{

        flex-direction:column;

        text-align:center;
    }

    .footer-bottom-links{

        justify-content:center;

        flex-wrap:wrap;
    }
}

/* =========================
   TABLET + MOBILE
========================= */

@media(max-width:991px){

    /* WRAPPER */

    .header-wrapper{

        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:10px;
        padding:10px 0;
    }

    /* LEFT */

    .header-left{

        padding-right:0;
        flex:0 0 auto;
    }

    /* LOGO */

    .main-logo img{
        height:50px;
    }

    /* RIGHT */

    .header-right{

        flex:1;
        display:flex;
        flex-direction:row;
        align-items:center;
        justify-content:space-between;
    }

    /* TOP */

    .header-top{
        border:none;
        padding:0;
        flex:1;
    }

    /* CONTACT */

    .header-contact{

        display:flex;
        flex-direction:column;
        gap:4px;
        color: red;
        text-align:left;
        padding-left:10px;
    }

    .header-contact a{

        background:none;
        border:none;
        padding:0;
        color: #2759a8;
        font-size:12px;
        box-shadow:none;
        border-radius:0;
    }

    .header-contact a:hover{

        background:none;

        color:red;

        transform:none;

        box-shadow:none;
    }

    .header-contact i{

        width:auto;
        height:auto;

        background:none;

        color:#2759a8;

        font-size:12px;
    }

    /* NAVBAR */

    .navbar{

        padding:0;

        flex:0 0 auto;

        position:relative;
    }

    /* MOBILE MENU */

    .navbar-collapse{

        position:absolute;
        top:calc(100% + 12px);
        right:0;
        width:320px;
        max-width:calc(100vw - 20px);
        background:#fff;
        border-radius:22px;
        padding:20px;
        box-shadow:
            0 20px 45px rgba(0,0,0,.12);

        animation:menuFade .25s ease;
    }

    /* SHOW */

    .navbar-collapse.show{
        transform:translateX(0);
        opacity:1;
        visibility:visible;
    }

    /* NAV */

    .navbar-nav{
        width:100%;
        align-items:stretch;
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .navbar-nav .nav-item::after{
        display:none;
    }

    /* LINK */

    .navbar-nav .nav-link{
        display:block;
        width:100%;
        padding:14px 16px !important;
        margin:0 0 10px 0;
        border-radius:12px;
        border:1px solid #eee;
        background:#fff;
        font-size:15px;
    }

    .navbar-nav .nav-link:hover{
        background:#2759a8;
        border-color:#0000ff;
        color:#fff;
    }

    /* DROPDOWN */

    .dropdown-menu{
        position:static !important;
        transform:none !important;
        border:none;
        box-shadow:none;
        padding:0 0 0 10px;
        margin-top:5px;
        background: transparent;
    }

    .dropdown-item{
        padding:10px 14px;
        border-radius:10px;
        color: #2759a8;
    }

    .dropdown-item:link{
        color: #2759a8;
    }

    /* HERO */

    .hero-content{
        padding:30px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-item img{
        height:400px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .hero-item img{
        height:300px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .section-title{
        font-size:26px;
    }

    .cta-box{
        padding:40px 20px;
    }

    .header-contact a{
        font-size:11px;
    }

    .navbar-collapse{
        width:230px;
    }
}


/* =========================
   PARTNERS
========================= */

.partner-section{
    background:#fff;
    overflow:hidden;
    padding:70px 0;
}

/* SLIDER */

.partner-slider{
    position:relative;
    overflow:hidden;
    padding:12px 0;
}

/* TRACK */

.partner-track{

    display:flex;
    align-items:center;
    gap:24px;
    width:max-content;
    animation:partnerScroll 35s linear infinite;
}

/* PAUSE ON HOVER */

.partner-slider:hover .partner-track{
    animation-play-state:paused;
}

/* ITEM */

.partner-item{

    width:180px;
    height:115px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.8);
    border:1px solid rgba(0,0,0,.06);
    border-radius:18px;
    padding:10px;
    backdrop-filter:blur(10px);
    transition:.3s;
    flex-shrink:0;
    box-shadow:0 5px 20px rgba(0,0,0,.03);
}

/* IMAGE */
.partner-item img{

    max-width:100%;
    max-height:60px;
    object-fit:contain;
    transition:.35s;
}

/* HOVER */

.partner-item:hover{

    transform:translateY(-3px) scale(1.02);
    border-color:#d62828;
    box-shadow:0 10px 30px rgba(214,40,40,.08);
}

.partner-item:hover img{

    transform:scale(1.05);
}

/* ANIMATION */

@keyframes partnerScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .partner-item{

        width:140px;
        height:80px;

        padding:15px;
    }

    .partner-item img{
        max-height:45px;
    }

    .partner-track{
        gap:16px;
    }
}


/* =========================
   COMPANY HERO
========================= */

.company-hero{
    height:100%;
}

/* BOX */

.company-hero-box{

    position:relative;
    height:100%;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #ffffff,
        #fafafa
    );

    border-radius:30px;
    padding:10px 20px 45px 20px;
    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    isolation:isolate;
}

/* GLOW */

.company-glow{

    position:absolute;

    top:-120px;
    right:-120px;

    width:320px;
    height:320px;

    background:radial-gradient(
        rgba(214,40,40,.12),
        transparent 70%
    );

    pointer-events:none;

    z-index:-1;
}

/* BADGE */

.company-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#2759a8;
    color:#fbf9f9;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    margin-bottom:24px;
    border:1px solid rgba(214,40,40,.12);
}

/* TITLE */

.company-info h1{
    font-size:18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:600;
    margin-bottom:14px;
    color:#333;
}

/* DESC */

.company-desc{

    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
    max-width:560px;
}

/* META */

.company-meta{

    display:flex;
    flex-direction:column;
    gap:18px;
}

/* ITEM */

.meta-item{

    display:flex;
    align-items:center;
    gap:14px;
    font-weight:600;
    color:#333;
}

/* ICON */

.meta-item i{

    width:20px;
    height:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#d62828;
    color:#fff;
    border-radius:14px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(214,40,40,.2);
}

/* CHART */

.company-chart{

    position:relative;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

/* IMAGE */

.company-chart img{
    width:100%;
    max-height:420px;
    object-fit:contain;
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .company-hero-box{
        padding:35px 25px;
    }

    .company-info h1{
        font-size:32px;
    }

    .company-desc{
        font-size:16px;
        margin-bottom:28px;
    }

    .company-chart{
        margin-top:10px;
    }
}

@media(max-width:576px){

    .company-hero-box{
        padding:28px 20px;
        border-radius:24px;
    }

    .company-info h1{

        font-size:28px;
    }

    .company-badge{
        font-size:12px;
    }

    .meta-item{
        align-items:flex-start;
    }

    .meta-item i{
        width:40px;
        height:40px;
        font-size:14px;
    }
}


/* =========================
   ABOUT PAGE
========================= */

.about-content{

    background:#fff;
    padding:50px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

/* IMAGE */

.about-image{
    overflow:hidden;
    border-radius:22px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.about-image:hover img{
    transform:scale(1.05);
}

/* TEXT */

.about-text h3{
    font-size:34px;
    font-weight:800;
    margin-bottom:25px;
}

.about-text p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* GALLERY */

.gallery-item{
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.4s;
}

.gallery-item:hover img{

    transform:scale(1.06);
}

/* MAP */

.map-box{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:450px;
    border:0;
}


/* =========================
   CONTACT FORM COMPACT
========================= */

.contact-form-card{
    position:relative;
    background:rgba(255,255,255,.78);
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    padding:10px;
    box-shadow:
        0 5px 15px rgba(0,0,0,.05);
    height:100%;
}

/* TITLE */

.form-title{
    margin-bottom:10px;
}

.form-title span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:5px 8px;
    background:rgba(214,40,40,.1);
    color:#d62828;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:12px;
}

.form-title h3{
    font-size:20px;
    font-weight:800;
    color:#111;
    margin-bottom:0;
}

/* GROUP */

.form-group-custom label{
    display:block;
    font-size:13px;
    font-weight:700;
    margin-bottom:4px;
    color:#222;
}

/* INPUT */

.input-custom,
.textarea-custom{
    display:flex;
    align-items:flex-start;
    gap:4px;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:14px;
    padding:1px 1px;
    transition:.3s;
}

/* ICON */

.input-custom i,
.textarea-custom i{
    color:#d62828;
    font-size:16px;
    margin-top:1px;
}

/* FIELD */

.input-custom input,
.textarea-custom textarea{
    width:100%;
    border:none;
    outline:none;
    background:none;
    font-size:14px;
    color:#222;
    resize:none;
}

/* TEXTAREA */

.textarea-custom textarea{

    min-height:70px;
}

/* PLACEHOLDER */

.input-custom input::placeholder,
.textarea-custom textarea::placeholder{

    color:#999;
}

/* FOCUS */

.input-custom:focus-within,
.textarea-custom:focus-within{

    border-color:#d62828;

    box-shadow:
        0 0 0 4px rgba(214,40,40,.08);
}

/* BUTTON */

.submit-btn-custom{
    width:100%;
    border:none;
    border-radius:16px;
    padding:5px 10px;
    background:linear-gradient(
        135deg,
        #d62828,
        #9d0208
    );

    color:#fff;
    font-size:15px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    transition:.35s;
    box-shadow:
        0 10px 25px rgba(214,40,40,.22);
}

/* HOVER */

.submit-btn-custom:hover{
    transform:translateY(-2px);
    box-shadow:
        0 15px 30px rgba(214,40,40,.28);
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .contact-form-card{
        margin-top:10px;
        padding:22px;
    }

    .form-title h3{

        font-size:22px;
    }
}

@media(max-width:576px){

    .contact-form-card{
        padding:18px;
        border-radius:20px;
    }

    .form-title h3{
        font-size:20px;
    }

    .submit-btn-custom{
        padding:14px;
        font-size:15px;
    }
}


/* =========================
   PRODUCT DETAIL COMPACT
========================= */

.product-detail-section{
    height:100%;
}

/* BOX */

.product-detail-box{

    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #ffffff,
        #fafafa
    );

    border-radius:24px;

    padding:28px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    height:100%;
}

/* GLOW */

.product-detail-glow{

    position:absolute;

    top:-100px;
    right:-100px;

    width:260px;
    height:260px;

    background:radial-gradient(
        rgba(214,40,40,.08),
        transparent 70%
    );

    pointer-events:none;
}

/* =========================
   GALLERY
========================= */

.product-gallery{
    position:relative;
}

/* MAIN IMAGE */

.product-main-image{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
        0 8px 25px rgba(0,0,0,.04);

    margin-bottom:14px;
}

.product-main-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.35s;
}

/* THUMB */

.thumb-wrapper{

    display:flex;

    align-items:center;

    gap:10px;
}

.thumb-list{

    display:flex;

    gap:10px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    flex:1;
}

.thumb-list::-webkit-scrollbar{
    display:none;
}

/* ITEM */

.thumb-item{

    min-width:72px;

    height:72px;

    border-radius:14px;

    overflow:hidden;

    cursor:pointer;

    border:2px solid transparent;

    transition:.3s;

    background:#fff;

    flex-shrink:0;
}

.thumb-item.active{

    border-color:#d62828;
}

.thumb-item img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* NAV */

.thumb-nav{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:
        0 5px 12px rgba(0,0,0,.06);

    transition:.3s;
}

.thumb-nav:hover{

    background:#d62828;

    color:#fff;
}

/* =========================
   PRODUCT INFO
========================= */

.product-info{
    position:relative;
    z-index:2;
}

/* BADGE */

.product-badge{

    display:inline-block;

    padding:8px 14px;

    background:rgba(214,40,40,.1);

    color:#d62828;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    margin-bottom:14px;
}

/* TITLE */

.product-info h1{

    font-size:30px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:16px;

    color:#111;
}

/* DESC */

.product-desc{

    font-size:15px;

    line-height:1.7;

    color:#555;

    margin-bottom:20px;
}

/* PRICE */

.product-price{

    font-size:30px;

    font-weight:800;

    color:#d62828;

    margin-bottom:22px;
}

/* META */

.product-meta{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:24px;
}

/* ITEM */

.product-meta-item{

    display:flex;

    align-items:center;

    gap:12px;
}

.product-meta-item i{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#d62828;

    color:#fff;

    flex-shrink:0;

    box-shadow:
        0 8px 18px rgba(214,40,40,.18);
}

.product-meta-item span{

    display:block;

    font-size:12px;

    color:#888;
}

.product-meta-item strong{

    font-size:14px;

    color:#222;
}

/* BUTTONS */

.product-buttons{

    display:flex;

    gap:12px;

    flex-wrap:wrap;
}

/* PRIMARY */

.btn-product-primary{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 22px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #d62828,
        #9d0208
    );

    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s;
    box-shadow:
        0 10px 25px rgba(214,40,40,.22);
}

.btn-product-primary:hover{

    transform:translateY(-2px);

    color:#fff;
}

/* OUTLINE */

.btn-product-outline{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:13px 22px;
    border-radius:14px;
    border:2px solid #d62828;
    background:linear-gradient(
        135deg,
        #d62828,
        #9d0208
    );
    color:#d62828;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.btn-product-outline:hover{

    transform:translateY(-2px);
    color:#fff;
}


/* =========================
   MAIN IMAGE NAV
========================= */

.product-main-image{

    position:relative;
}

/* NAV BUTTON */

.main-image-nav{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:46px;
    height:46px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    backdrop-filter:blur(8px);

    color:#fff;

    display:flex;

    align-items:center;
    justify-content:center;

    z-index:5;

    opacity:0;

    transition:.35s;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);
}

/* LEFT */

.main-prev{
    left:16px;
}

/* RIGHT */

.main-next{
    right:16px;
}

/* SHOW WHEN HOVER */

.product-main-image:hover .main-image-nav{

    opacity:1;
}

/* HOVER */

.main-image-nav:hover{

    background:#d62828;

    transform:
        translateY(-50%)
        scale(1.08);
}

/* ICON */

.main-image-nav i{

    font-size:22px;
}

/* MOBILE */

@media(max-width:576px){

    .main-image-nav{

        width:40px;
        height:40px;
    }

    .main-image-nav i{

        font-size:18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .product-detail-box{
        padding:22px;
    }

    .product-info h1{
        font-size:26px;
    }

    .product-price{
        font-size:26px;
    }

    .product-main-image img{
        height:280px;
    }
}

@media(max-width:576px){

    .product-detail-box{
        padding:18px;
        border-radius:20px;
    }

    .product-info h1{
        font-size:24px;
    }

    .product-main-image img{
        height:220px;
    }

    .thumb-item{
        min-width:62px;
        height:62px;
    }

    .product-buttons{
        flex-direction:column;
    }

    .btn-product-primary,
    .btn-product-outline{

        width:100%;
        justify-content:center;
    }
}