﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.full-width {
    width: 100%;
}

body {
    min-height: 100vh;
    font-family: 'Noto Sans Thai', 'Lato', sans-serif;
    color: white;
    background: linear-gradient( 180deg, #08090c 0%, #0d0f14 100% );
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient( 180deg, #34d8ff 0%, #0ea5ff 45%, #2563eb 100% );
    /*background: linear-gradient(180deg, #808285 0%, #747578 45%, #f6f8fb 100%);*/
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(52,216,255,.15), 0 0 25px rgba(14,165,255,.08);
}

#main-content {
    margin-top: 80px;
}


@media(max-width:960px) {

    #main-content {
        margin-top: 60px;
    }
}

@media(max-width:480px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}



/********************************
* Navbar
********************************/
.navbar {
    z-index: 1050;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0.6rem 1rem;
    background: linear-gradient( 180deg, rgb(8 9 14) 0%, rgb(58 92 163) 100% );
    transition: all .3s ease;
}

    .navbar .navbar-brand {
        padding: 20px 25px;
        border-radius: 20px;
    }

        .navbar .navbar-brand img {
            height: 50px;
            width: auto;
        }

    .navbar .navbar-toggler {
        border: 1px solid rgba(255,255,255,.3);
        padding: 6px 10px;
        box-shadow: none !important;
    }

        .navbar .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar .navbar-toggler .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

    .navbar .navbar-nav .dropdown-header {
        font-size: 14px;
        font-weight: 700;
        color: #00379B;
        padding-top: 10px;
    }

    .navbar .navbar-nav .nav-link,
    .navbar .navbar-nav .nav-link:visited {
        margin: 0 10px;
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        font-weight: 500;
        text-transform: uppercase;
        padding: .5rem 1rem;
        position: relative;
        transition: all .3s ease;
    }

        .navbar .navbar-nav .nav-link:hover {
            color: #fff;
            transform: translateY(-1px);
        }

        .navbar .navbar-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -5px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            transform: translateX(-50%);
            background: linear-gradient( 90deg, #2cc9ff, #1f81f4 );
            transition: width .25s ease;
        }

        .navbar .navbar-nav .nav-link:hover::after,
        .navbar .navbar-nav .nav-link.active::after {
            width: 100%;
        }

    .navbar .navbar-quickmenu .quickmenu {
        background-color: #141b29;
        border-color: #314d88;
        color: #fff;
        padding: 5px 12px;
        border-radius: 7px;
        text-decoration: none;
    }

        .navbar .navbar-quickmenu .quickmenu:hover,
        .navbar .navbar-quickmenu .quickmenu:focus,
        .navbar .navbar-quickmenu .quickmenu:active {
            background-color: #141b29;
            text-decoration: none;
        }

    .navbar .navbar-quickmenu .quickmenu-icon {
        width: 24px;
    }

    .navbar.navbar-scrolled {
        background: rgba(0,0,0,.85);
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 30px rgba(49,112,231,.15);
        transition: all .3s ease;
    }

        .navbar.navbar-scrolled .navbar-nav .nav-link,
        .navbar.navbar-scrolled .navbar-nav .nav-link:visited {
            color: #fff;
        }

        .navbar.navbar-scrolled .navbar-toggler {
            border-color: rgba(255,255,255,.4);
        }

        .navbar.navbar-scrolled .navbar-quickmenu .quickmenu {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
        }

@media (max-width: 991.98px) {

    .navbar {
        height: auto;
        min-height: 72px;
        padding: 12px 16px;
    }

        .navbar .navbar-brand {
            padding: 0;
            margin: 0;
        }

            .navbar .navbar-brand img {
                height: 42px;
            }

        .navbar .navbar-collapse {
            margin-top: 15px;
            padding: 15px;
            border-radius: 18px;
            background: rgba(7,12,22,.97);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255,255,255,.08);
        }

        .navbar .navbar-nav {
            width: 100%;
        }

            .navbar .navbar-nav .nav-link,
            .navbar .navbar-nav .nav-link:visited {
                margin: 0;
                padding: 12px 15px;
                border-radius: 10px;
            }

                .navbar .navbar-nav .nav-link::after {
                    display: none;
                }

                .navbar .navbar-nav .nav-link:hover,
                .navbar .navbar-nav .nav-link.active {
                    background: rgba(255,255,255,.08);
                    transform: none;
                }

        .navbar .navbar-quickmenu {
            margin-top: 15px;
            width: 100%;
        }

            .navbar .navbar-quickmenu .quickmenu {
                display: block;
                text-align: center;
                padding: 5px;
            }
}

@media (max-width: 767.98px) {

    .navbar {
        min-height: 65px;
        padding: 10px 12px;
    }

        .navbar .navbar-brand img {
            height: 38px;
        }

        .navbar .navbar-collapse {
            margin-top: 12px;
            padding: 12px;
        }

        .navbar .navbar-nav .nav-link,
        .navbar .navbar-nav .nav-link:visited {
            font-size: 13px;
            padding: 10px 12px;
        }

        .navbar .navbar-quickmenu .quickmenu {
            font-size: 13px;
        }
}

@media (max-width: 460px) {

    .navbar {
        min-height: 60px;
    }

        .navbar .navbar-brand img {
            height: 34px;
        }

        .navbar .navbar-toggler {
            padding: 4px 8px;
        }

        .navbar .navbar-collapse {
            border-radius: 14px;
        }
}

/*****************************************
* Menu Modal
*****************************************/
#menuModal {
    background: #00379B;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: none;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
                background: transparent;
                border: transparent;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                margin-bottom: 20px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 30%;
                }

@media(max-width:960px) {
    #menuModal .modal-dialog {
        max-width: 100%;
    }

        #menuModal .modal-dialog .modal-content .menu-brand img {
            width: 50%;
        }
}


#mobile-menu {
    list-style: none;
    padding-left: 0px;
}


    #mobile-menu li a,
    #mobile-menu li .mobile-menu {
        color: #fbf5e4;
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 0px;
        padding: 8px 0px;
        text-transform: unset;
        display: flex;
        align-items: center;
        text-decoration: none;
    }

        #mobile-menu li .mobile-menu i {
            font-size: 10px;
            margin-left: 5px;
        }

    #mobile-menu li .register-menu {
        font-size: 16px;
        line-height: 20px;
        color: #00319B;
        background-color: #ffffff;
        border: 1px solid #0f45b8;
        padding: 12px 15px;
        border-radius: 5px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: 0.3s ease;
        display: inline-block;
        margin: 10px 20px 0px 0px;
        text-decoration: none;
        text-align: center;
    }

    #mobile-menu li .login-menu {
        font-size: 16px;
        line-height: 20px;
        color: #ffffff;
        background: transparent;
        border: 1px solid #ffffff;
        padding: 8px 0px;
        border-radius: 5px;
        letter-spacing: 0px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(79, 91, 213, 0.6);
        transition: 0.3s ease;
        display: inline-block;
        margin: 10px 0px;
        text-decoration: none;
        width: 150px;
        text-align: center;
    }



.submobile-menu {
    list-style: none;
    background: #1048ad;
    border: 1px solid rgba(53, 180, 253, 0.3);
    padding: 10px 15px;
    margin-top: 5px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: none;
}

    .submobile-menu .submobile-menu-header {
        font-size: 12px;
        line-height: 20px;
        font-weight: 600;
        color: #ffffff;
        margin: 20px 0px 10px 0px;
        padding-bottom: 5px;
        border-bottom: 1px solid #ffffff;
    }

    .submobile-menu .submobile-menu-item {
        font-size: 14px !important;
        line-height: 14px !important;
        display: block;
    }



/*****************************************
* Hero
*****************************************/
#hero {
    position: relative;
    z-index: 2;
    background: #000000;
}



.hero {
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255,255,255,0.06), transparent 70% );
        filter: blur(40px);
        z-index: 0;
    }

    .hero .hero-text-top {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 100%;
        max-width: 1190px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        pointer-events: none;
    }

        .hero .hero-text-top .hero-headline {
            width: 100%;
            color: #ffffff;
            font-size: 60px;
            line-height: 64px;
            font-weight: 600;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(255,255,255,0.08);
        }

        .hero .hero-text-top .hero-subheadline {
            width: 100%;
            color: #ffffff;
            font-size: 36px;
            line-height: 40px;
            font-weight: 200;
        }

    .hero .hero-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background: linear-gradient( 0deg, #000000 0%, transparent 45% );
    }


@media (max-width: 1024px) {

    .hero::before {
        width: 550px;
        height: 550px;
    }

    .hero .hero-text-top {
        top: 18%;
        max-width: 100%;
        padding: 0 32px;
    }

        .hero .hero-text-top .hero-headline {
            font-size: 48px;
            line-height: 52px;
            margin-bottom: 12px;
        }

        .hero .hero-text-top .hero-subheadline {
            font-size: 28px;
            line-height: 32px;
        }
}


@media (max-width: 768px) {

    .hero::before {
        width: 380px;
        height: 380px;
        filter: blur(30px);
    }

    .hero .hero-text-top {
        top: 14%;
        max-width: 100%;
        padding: 0 24px;
    }

        .hero .hero-text-top .hero-headline {
            font-size: clamp(42px, 4vw, 64px);
            line-height: 1.05;
            font-weight: 600;
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .hero .hero-text-top .hero-subheadline {
            font-size: clamp(18px, 2vw, 34px);
            line-height: 1.2;
            font-weight: 300;
            color: rgba(255,255,255,.88);
        }
}


@media (max-width: 480px) {

    .hero::before {
        width: 280px;
        height: 280px;
        filter: blur(24px);
    }

    .hero .hero-text-top {
        top: 12%;
        padding: 0 20px;
    }

        .hero .hero-text-top .hero-headline {
            font-size: 28px;
            line-height: 32px;
            margin-bottom: 8px;
        }

        .hero .hero-text-top .hero-subheadline {
            font-size: 15px;
            line-height: 20px;
        }
}


.heroSwiper .swiper-pagination {
    bottom: 30px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.35);
    opacity: 1;
    border-radius: 999px;
    transition: .35s;
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 42px;
    background: #1f9cff;
    box-shadow: 0 0 15px rgba(31,156,255,.6);
}


/********************************
* Products
********************************/
#products {
    position: relative;
    padding: 80px 0px 100px 0px;
    overflow-x: hidden;
    background: linear-gradient(180deg,#000000 0%,#081321 100%);
}


    #products::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0px;
        transform: translateX(-50%);
        width: min(900px,100%);
        height: 420px;
        background: radial-gradient(circle, rgba(0,163,255,.08) 0%, transparent 75%);
        pointer-events: none;
    }


    #products .container {
        position: relative;
        z-index: 1;
    }

    #products .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    #products .subtitle {
        color: #fff;
        font-size: 18px;
        line-height: 20px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 60px;
    }


@media(max-width: 460px) {
    #products {
        padding: 40px 0px;
    }


        #products .title {
            font-size: 36px;
            line-height: 40px;
        }

        #products .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}

.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient( 180deg, rgba(28, 39, 63, .95) 0%, rgba(65, 86, 133, .95) 100%);
    border: 1px solid rgba(255,255,255,.06);
    transition: all .35s ease;
    text-decoration: none;
    border-radius: 24px;
    transition: .35s;
    background: linear-gradient(180deg, rgba(24,33,53,.65) 0%, rgba(12,16,24,.88) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

    /*.product-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(255,255,255,.04), transparent 35%);
        pointer-events: none;
    }*/

    .product-item:hover {
        transform: translateY(-8px);
        border-color: rgba(0,163,255,.35);
        box-shadow: 0 25px 60px rgba(0,163,255,.12);
    }

    .product-item .product-ribbon {
        position: absolute;
        top: -5px;
        left: -5px;
        width: 140px;
        height: 140px;
        overflow: visible;
        z-index: 20;
    }

        .product-item .product-ribbon .product-ribbon-text {
            position: absolute;
            top: 22px;
            left: -35px;
            width: 170px;
            height: 44px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient( 180deg, #ff2e2e, #d60000 );
            transform: rotate(-45deg);
            box-shadow: 0 5px 15px rgba(0,0,0,.25);
        }

            .product-item .product-ribbon .product-ribbon-text span {
                color: #fff;
                font-size: 10px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 1px;
            }

            .product-item .product-ribbon .product-ribbon-text strong {
                color: #fff;
                font-size: 18px;
                font-weight: 800;
                line-height: 1;
                margin-top: 2px;
            }

    .product-item .product-price {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 3;
        padding: 6px 12px 3px 12px;
        border-radius: 999px;
        font-size: 20px;
        font-weight: 600;
        background: rgba(41, 168, 255, .12);
        border: 1px solid rgba(41, 168, 255, .25);
        color: #6fc3ff;
    }

    .product-item .product-photo {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

        .product-item .product-photo img {
            display: block;
            width: 100%;
            max-width: 220px;
            height: auto;
            object-fit: contain;
            transition: transform .35s ease;
        }

    .product-item:hover .product-photo img {
        transform: scale(1.05);
    }

    .product-item .product-name {
        text-align: center;
        color: #fff;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
        word-break: break-word;
    }

    .product-item .product-action {
        margin-top: auto;
        text-align: center;
    }

        /*.product-item .product-action a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 120px;
            height: 36px;
            padding: 0 20px;
            border-radius: 999px;
            text-decoration: none;
            color: #111;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient( 180deg, #fff 0%, #f2f2f2 55%, #dcdcdc 100% );
        }*/


        .product-item .product-action a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            align-self: flex-start;
            margin-top: auto;
            padding: 8px 22px;
            border-radius: 999px;
            background: linear-gradient(180deg,#2aa7ff,#0079ff);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            transition: .3s;
            text-decoration: none;
        }

            .product-item .product-action a:hover {
                text-decoration: none;
                transform: translateX(4px);
                box-shadow: 0 10px 30px rgba(31,156,255,.25);
            }


@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0 20px;
    }
}

@media (max-width: 768px) {

    .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .product-item {
        padding: 16px 10px;
        border-radius: 16px;
    }

        .product-item .product-price {
            top: 8px;
            right: 8px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(18,37,72,.85);
            border: 1px solid rgba(52,216,255,.15);
            color: #8bd6ff;
            font-size: 10px;
            font-weight: 600;
            line-height: 1;
        }

        .product-item .product-photo {
            margin-bottom: 12px;
        }

            .product-item .product-photo img {
                display: block;
                width: 100%;
                height: 100%;
                margin: 0 auto;
                object-fit: contain;
            }

        .product-item .product-name {
            font-size: 13px;
            line-height: 18px;
            min-height: 36px;
            margin-bottom: 14px;
        }

        .product-item .product-action a {
            min-width: 90px;
            height: 30px;
            padding: 0 12px;
            font-size: 9px;
            letter-spacing: .5px;
        }
}


@media (max-width: 460px) {

    .products {
        gap: 10px;
        padding: 0px;
    }

    .product-item {
        padding: 14px 8px;
    }

        .product-item .product-price {
            top: 6px;
            right: 6px;
            font-size: 14px;
            padding: 4px 8px;
        }

        .product-item .product-photo img {
            width: 100%;
            height: 100%;
        }

        .product-item .product-name {
            font-size: 12px;
            line-height: 16px;
        }

        .product-item .product-action a {
            min-width: 80px;
            height: 28px;
            font-size: 8px;
        }
}

/********************************
* why-us
********************************/
#why-us {
    position: relative;
    padding: 0px 0px 100px 0px;
    /*background: linear-gradient( 180deg, #03060e 0%, #08060b 100% );*/
    background: #081321;
}

    #why-us::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 220px;
        background: linear-gradient(180deg, rgba(3, 6, 13, 0) 0%, rgb(0 0 0) 100%);
        pointer-events: none;
    }

    #why-us .header {
        max-width: 900px;
        margin: 0 auto 80px;
        text-align: center;
    }

    #why-us .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    #why-us .subtitle {
        color: #ffffff;
        font-size: 18px;
        line-height: 40px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 60px;
    }

@media(max-width: 460px) {
    #why-us {
        padding: 40px 0px;
    }


        #why-us .title {
            font-size: 36px;
            line-height: 40px;
        }

        #why-us .subtitle {
            font-size: 14px;
            line-height: 20px;
        }
}

.why-us {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0px auto;
}

.why-us-item {
    position: relative;
    overflow: hidden;
    padding: 40px 32px;
    text-align: center;
    border-radius: 24px;
    transition: all .35s ease;
    backdrop-filter: blur(12px);
    background: linear-gradient( 180deg, rgba(24,33,53,.65) 0%, rgba(12,16,24,.88) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 15px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}

    .why-us-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(255,255,255,.04), transparent 35%);
        pointer-events: none;
    }

    .why-us-item:hover {
        transform: translateY(-8px);
        border-color: rgba(0,163,255,.35);
        box-shadow: 0 25px 50px rgba(0,163,255,.12), inset 0 1px 0 rgba(255,255,255,.06);
    }

    .why-us-item .why-us-icon {
        margin-bottom: 20px;
        font-size: 48px;
        position: relative;
    }

        .why-us-item .why-us-icon img {
            width: 40%;
        }

    .why-us-item .why-us-title {
        margin-bottom: 16px;
        color: #ffffff;
        font-size: 22px;
        font-weight: 500;
    }

    .why-us-item .why-us-description {
        color: rgba(255,255,255,.72);
        font-size: 15px;
        line-height: 1.8;
    }


/* Tablet */
@media (max-width: 1024px) {
    .why-us {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
    }

    .why-us-item {
        padding: 32px 24px;
    }

        .why-us-item .why-us-icon img {
            width: 60px;
        }
}

/* Mobile */
@media (max-width: 768px) {
    .why-us {
        grid-template-columns: repeat(2, 1fr);
        max-width: 92%;
        gap: 12px;
    }

    .why-us-item {
        padding: 20px 12px;
    }

        .why-us-item .why-us-icon img {
            width: 42px;
        }

        .why-us-item .why-us-title {
            font-size: 15px;
            margin-bottom: 8px;
        }

        .why-us-item .why-us-description {
            display: none;
        }
}


/********************************
* statistics
********************************/
#statistics {
    position: relative;
    padding: 50px 0px 200px 0px;
    background-image: url("/upload/home/bg-statistic.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}

    #statistics::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 220px;
        background: linear-gradient( 180deg, rgba(3,6,13,0) 0%, rgba(3,6,13,.95) 100% );
        pointer-events: none;
    }


    #statistics .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    #statistics .subtitle {
        color: #ffffff;
        font-size: 18px;
        line-height: 40px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 60px;
    }

@media(max-width: 460px) {
    #statistics {
        padding: 40px 0px;
    }


        #statistics .title {
            font-size: 36px;
            line-height: 40px;
        }

        #statistics .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 24px;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 60px 16px;
    border-radius: 6px;
    transition: all .3s ease;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12);
}

    .stat-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(52,216,255,.5), transparent );
    }

    .stat-item:hover {
        transform: translateY(-6px);
        border-color: rgba(52,216,255,.25);
        box-shadow: 0 0 30px rgba(52,216,255,.08);
    }

    .stat-item .stat-number {
        margin-bottom: 16px;
        font-size: 64px;
        font-weight: 700;
        line-height: 1;
        text-shadow: 0 0 10px rgba(52,216,255,.15);
        background: linear-gradient(180deg, #a0d7ff, #0a58a7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .stat-item .stat-number::after {
            content: "+";
        }

    .stat-item .stat-images {
        margin-bottom:40px;
    }

        .stat-item .stat-images img {
            width: 40%;
        }

    .stat-item .stat-label {
        color: #eee;
        font-size: 22px;
        font-weight: 500;
        text-transform: uppercase;
    }

/* Mobile */
@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0px 20px;
    }

    .stat-item {
        padding: 32px 12px;
    }

        .stat-item .stat-number {
            font-size: 42px;
            margin-bottom: 10px;
        }

        .stat-item .stat-label {
            font-size: 12px;
            letter-spacing: .5px;
        }
}

/* Small Mobile */
@media (max-width: 460px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 24px 10px;
    }

        .stat-item .stat-number {
            font-size: 34px;
        }

        .stat-item .stat-label {
            font-size: 11px;
            line-height: 1.4;
        }
}

/********************************
* .location-section
********************************/
#location-section {
    position: relative;
    padding: 100px 0;
    background: #03060c;
}

    #location-section .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    #location-section .subtitle {
        color: #ffffff;
        font-size: 18px;
        line-height: 40px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 60px;
    }



@media(max-width: 460px) {
    #location-section {
        padding: 40px 0px;
    }


        #location-section .title {
            font-size: 36px;
            line-height: 40px;
        }

        #location-section .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}


.location-map {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(33,150,243,.2);
    box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 40px rgba(33,150,243,.15);
}

    .location-map iframe {
        display: block;
        width: 100%;
        height: 550px;
        border: 0;
    }

/********************************
* Footer
********************************/
.footer {
    position: relative;
    padding: 60px 0 15px;
    background: linear-gradient( 180deg, #02060f 0%, #07152d 100% );
    border-top: 1px solid rgba(33,150,243,.15);
    overflow: hidden;
}

    .footer::before {
        content: "";
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 220px;
        background: rgba(33,150,243,.12);
        filter: blur(90px);
        pointer-events: none;
    }

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 10px;
}

    .footer-logo img {
        height: 60px;
        width: auto;
        display: block;
    }

.footer-brand p {
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 20px;
    max-width: 320px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    margin-bottom: 14px;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 20px;
}

.footer-column a, .footer-column a:hover {
    color: rgba(255,255,255,.75);
    text-decoration: none;
}

.footer-line {
    text-align: center;
}

.footer-qr {
    margin-top: 10px;
}

    .footer-qr img {
        width: 150px;
        height: 150px;
        padding: 8px;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 0 25px rgba(33,150,243,.25), 0 0 50px rgba(33,150,243,.15);
        transition: all .3s ease;
    }

        .footer-qr img:hover {
            transform: translateY(-5px);
        }

    .footer-qr span {
        display: block;
        margin-top: 12px;
        color: rgba(255,255,255,.75);
        font-size: 14px;
    }

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255,255,255,.55);
        font-size: 14px;
    }

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 15px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-qr img {
        width: 170px;
        height: 170px;
    }
}


/********************************
* product-detail-page
********************************/
.product-detail-page {
    padding: 80px 0px;
    position: relative;
    background: linear-gradient(180deg, #000000 0%, #192b4f 50%, #000000 100% 100%);
}




.breadcrumb-wrap {
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 20px;
}

    .breadcrumb-wrap a {
        color: #ffffff;
        text-decoration: none;
    }

.product-hero {
    display: flex;
    justify-content: space-between;
}

    .product-hero .product-gallery {
        width: 40%;
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(28, 39, 63, .95) 0%, rgb(65 86 133 / 95%) 100%);
    }

        .product-hero .product-gallery .gallery-ribbon {
            position: absolute;
            top: -5px;
            left: -5px;
            width: 140px;
            height: 140px;
            overflow: visible;
            z-index: 20;
        }

            .product-hero .product-gallery .gallery-ribbon .gallery-ribbon-text {
                position: absolute;
                top: 22px;
                left: -35px;
                width: 170px;
                height: 44px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                background: linear-gradient( 180deg, #ff2e2e, #d60000 );
                transform: rotate(-45deg);
                box-shadow: 0 5px 15px rgba(0,0,0,.25);
            }

                .product-hero .product-gallery .gallery-ribbon .gallery-ribbon-text span {
                    color: #fff;
                    font-size: 10px;
                    font-weight: 700;
                    line-height: 1;
                    letter-spacing: 1px;
                }

                .product-hero .product-gallery .gallery-ribbon .gallery-ribbon-text strong {
                    color: #fff;
                    font-size: 18px;
                    font-weight: 800;
                    line-height: 1;
                    margin-top: 2px;
                }

        .product-hero .product-gallery .product-image-card {
            background: linear-gradient(180deg, rgba(28, 39, 63, .95) 0%, rgb(65 86 133 / 95%) 100%);
            border: 1px solid rgba(255,255,255,.08);
            text-align: center;
        }

            .product-hero .product-gallery .product-image-card img {
                width: 100%;
                object-fit: contain;
            }

    .product-hero .product-info {
        width: 55%;
    }

        .product-hero .product-info h1 {
            font-size: 50px;
            line-height: 56px;
            font-weight: 700;
            color: #fff;
        }


        .product-hero .product-info .product-code {
            color: #7c92ae;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }


        .product-hero .product-info .product-price {
            margin-bottom: 20px;
        }

            .product-hero .product-info .product-price .original-sale-price {
                font-size: 36px;
                font-weight: 700;
                color: #ffffff;
            }

            .product-hero .product-info .product-price .discount-sale-price {
                font-size: 36px;
                font-weight: 700;
                color: #fd1936;
            }

            .product-hero .product-info .product-price .sale-price {
                font-size: 24px;
                font-weight: 200;
                color: #929292;
                margin-bottom: 30px;
                -webkit-text-decoration: line-through;
                text-decoration: line-through;
            }

        .product-hero .product-info p {
            color: #ffffff;
            font-size: 18px;
            line-height: 26px;
            font-weight: 400;
            margin-bottom: 40px;
        }

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    color: #111111;
    background: linear-gradient(180deg,#2aa7ff,#0079ff);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), inset 0 -1px 0 rgba(0, 0, 0, .08), 0 0 20px rgba(255, 255, 255, .08);
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all .3s ease;
}

    .btn-contact:hover {
        text-decoration: none;
        transform: translateX(4px);
        box-shadow: 0 10px 30px rgba(31,156,255,.25);
    }


@media (max-width:1200px) {

    .product-hero {
        gap: 40px;
    }

        .product-hero .product-gallery {
            width: 45%;
        }

        .product-hero .product-info {
            width: 55%;
        }

            .product-hero .product-info h1 {
                font-size: 46px;
            }

            .product-hero .product-info .product-price {
                font-size: 44px;
            }
}

@media (max-width:992px) {

    .product-detail-page {
        padding: 120px 0 60px;
    }

    .breadcrumb-wrap {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .product-hero {
        flex-direction: column;
        gap: 40px;
    }

        .product-hero .product-gallery,
        .product-hero .product-info {
            width: 100%;
        }

            .product-hero .product-info h1 {
                font-size: 42px;
            }

            .product-hero .product-info .product-price {
                font-size: 40px;
            }

            .product-hero .product-info span {
                font-size: 24px;
            }

            .product-hero .product-info p {
                font-size: 18px;
                line-height: 30px;
            }
}

@media (max-width:768px) {

    .product-detail-page {
        padding: 100px 0 50px;
    }

    .breadcrumb-wrap {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .product-hero {
        gap: 30px;
    }

        .product-hero .product-gallery {
            border-radius: 18px;
        }

        .product-hero .product-info h1 {
            font-size: 34px;
            line-height: 1.3;
            margin-bottom: 15px;
        }

        .product-hero .product-info .product-code {
            font-size: 14px;
            letter-spacing: 1px;
        }

        .product-hero .product-info .product-price {
            font-size: 34px;
            margin-bottom: 20px;
        }

        .product-hero .product-info span {
            font-size: 20px;
        }

        .product-hero .product-info p {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 30px;
        }

    .btn-contact {
        width: 100%;
        height: 52px;
        font-size: 15px;
    }
}

@media (max-width:480px) {

    .product-detail-page {
        padding: 30px 0 40px;
    }

    .breadcrumb-wrap {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .product-hero {
        gap: 24px;
    }

        .product-hero .product-gallery {
            border-radius: 16px;
        }

            .product-hero .product-gallery .gallery-ribbon {
                width: 110px;
                height: 110px;
            }

                .product-hero .product-gallery .gallery-ribbon .gallery-ribbon-text {
                    width: 140px;
                    left: -28px;
                    top: 18px;
                    height: 36px;
                }

                    .product-hero .product-gallery .gallery-ribbon .gallery-ribbon-text span {
                        font-size: 8px;
                    }

                    .product-hero .product-gallery .gallery-ribbon .gallery-ribbon-text strong {
                        font-size: 14px;
                    }

        .product-hero .product-info h1 {
            font-size: 28px;
        }

        .product-hero .product-info .product-code {
            font-size: 13px;
        }

        .product-hero .product-info .product-price {
            font-size: 28px;
        }

        .product-hero .product-info span {
            font-size: 18px;
        }

        .product-hero .product-info p {
            font-size: 15px;
            line-height: 26px;
        }

    .btn-contact {
        height: 48px;
        font-size: 14px;
    }
}

.spec-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #010103 0%, #08060b 100%);
}

    .spec-section .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 50px;
        line-height: 60px;
        font-weight: 700;
        margin-bottom: 40px;
    }


@media(max-width: 460px) {
    .spec-section {
        padding: 40px 0px;
    }

        .spec-section .title {
            font-size: 36px;
            line-height: 40px;
        }

        .spec-section .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}

.spec-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    overflow: hidden;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

    .spec-row:last-child {
        border-bottom: 0;
    }

.spec-name {
    color: #fff;
    font-weight: 600;
    flex: 0 0 35%;
}

.spec-value {
    color: #cfd9e6;
    flex: 1;
    text-align: right;
}

@media (max-width:768px) {

    .spec-card {
        border-radius: 18px;
    }

    .spec-row {
        padding: 16px 20px;
        gap: 12px;
    }

    .spec-name {
        flex: 0 0 40%;
        font-size: 15px;
    }

    .spec-value {
        font-size: 15px;
    }
}

@media (max-width:480px) {

    .spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px;
    }

    .spec-name {
        flex: none;
        width: 100%;
        font-size: 14px;
    }

    .spec-value {
        width: 100%;
        text-align: left;
        font-size: 14px;
        color: #b9c8dd;
    }
}


.related-section {
    position: relative;
    padding: 0px 0px 100px 0px;
    background: #08060b;
}

    .related-section .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 50px;
        line-height: 60px;
        font-weight: 700;
        margin-bottom: 40px;
    }


@media(max-width: 460px) {
    .related-section {
        padding: 40px 0px;
    }

        .related-section .title {
            font-size: 36px;
            line-height: 40px;
        }

        .related-section .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.related-card {
    display: block;
    text-decoration: none;
    background: linear-gradient( 180deg, rgba(15,30,60,.9), rgba(8,15,35,.95) );
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 25px;
}

.related-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .related-image img {
        max-width: 100%;
        max-height: 150px;
    }

.related-name {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.related-price {
    color: #00a3ff;
    font-weight: 700;
}




/********************************
* Contact Intro
********************************/
.contact-intro {
    position: relative;
    overflow: hidden;
    padding: 100px 0px;
    text-align: center;
    background: transparent;
}

    .contact-intro::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        width: 850px;
        height: 850px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,163,255,.08) 0%, rgba(0,163,255,.04) 35%, transparent 75%);
        pointer-events: none;
    }

    .contact-intro .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    .contact-intro .subtitle {
        position: relative;
        width: 720px;
        max-width: 100%;
        margin: auto;
        color: #fff;
        font-size: 18px;
        line-height: 26px;
        font-weight: 200;
        text-align: center;
    }

@media (max-width:991px) {

    .contact-intro {
        padding: 110px 0 60px;
    }

        .contact-intro .title {
            font-size: 48px;
        }

        .contact-intro .subtitle {
            font-size: 18px;
            line-height: 32px;
            width: 90%;
        }
}

@media (max-width:767px) {

    .contact-intro {
        padding: 90px 0 50px;
    }

        .contact-intro .title {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .contact-intro .subtitle {
            width: 100%;
            font-size: 16px;
            line-height: 28px;
        }
}


/********************************
* Contact Information
********************************/
.contact-information {
    position: relative;
    padding: 0;
    overflow: hidden;
}

    .contact-information::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 30px;
        transform: translateX(-50%);
        width: 100%;
        max-width: 900px;
        height: 400px;
        background: radial-gradient( circle, rgba(0,163,255,.06) 0%, transparent 75%);
        pointer-events: none;
    }

.info-card {
    position: relative;
    height: 100%;
    padding: 45px 35px;
    text-align: center;
    overflow: hidden;
    border-radius: 24px;
    transition: all .35s ease;
    background: linear-gradient( 180deg, rgba(24,33,53,.65) 0%, rgba(12,16,24,.88) 100%);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}

    .info-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(255,255,255,.04), transparent 35%);
        pointer-events: none;
    }

    .info-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0,163,255,.35);
        box-shadow: 0 25px 50px rgba(0,163,255,.12), inset 0 1px 0 rgba(255,255,255,.06);
    }

    .info-card i {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
        border-radius: 50%;
        background: rgba(0,163,255,.08);
        border: 1px solid rgba(0,163,255,.25);
        color: #1f9cff;
        font-size: 28px;
        transition: .35s;
    }

    .info-card:hover i {
        transform: scale(1.08);
        background: #1f9cff;
        color: #fff;
        box-shadow: 0 0 25px rgba(31,156,255,.35);
    }

    .info-card h4 {
        color: #fff;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .info-card p {
        color: #c7d5e6;
        font-size: 17px;
        line-height: 30px;
        margin: 0;
    }

        .info-card p strong {
            color: #ffffff;
        }

    .info-card a {
        color: #ffffff;
        text-decoration: none;
        transition: .3s;
    }

        .info-card a:hover {
            color: #ffffff;
        }

@media (max-width:991px) {

    .contact-information {
        padding: 10px 0 50px;
    }

    .info-card {
        margin-bottom: 25px;
    }
}

@media (max-width:767px) {

    .info-card {
        padding: 20px 16px;
    }

        .info-card i {
            width: 65px;
            height: 65px;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .info-card h4 {
            font-size: 24px;
        }

        .info-card p {
            font-size: 16px;
            line-height: 28px;
        }
}

/********************************
* Why
********************************/
.contact-why {
    padding: 0px;
}


    .contact-why .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
        margin-bottom: 40px;
    }


@media(max-width: 460px) {
    .contact-why {
        padding: 40px 0px;
    }


        .contact-why .title {
            font-size: 36px;
            line-height: 40px;
            margin-bottom: 20px;
        }
}


.why-card {
    height: 100%;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: .35s;
}

    .why-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0,163,255,.35);
        box-shadow: 0 20px 40px rgba(0,163,255,.10);
    }

    .why-card i {
        font-size: 52px;
        color: #1f9cff;
        margin-bottom: 30px;
    }

    .why-card h4 {
        color: #fff;
        margin-bottom: 18px;
    }

    .why-card p {
        color: #b8c7d9;
        font-size: 16px;
        line-height: 24px;
        margin: 0;
    }



/********************************
* CTA
********************************/
.contact-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

    .contact-cta::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 700px;
        height: 700px;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(0,163,255,.10) 0%, rgba(0,163,255,0) 70%);
        pointer-events: none;
    }

    .contact-cta h2 {
        position: relative;
        color: #fff;
        font-size: 40px;
        line-height: 45px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-cta p {
        position: relative;
        width: 720px;
        max-width: 100%;
        margin: auto;
        color: #fff;
        font-size: 18px;
        line-height: 26px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 60px;
    }

    .contact-cta .btn-contact {
        position: relative;
        height: 56px;
        padding: 0 38px;
        font-size: 17px;
        letter-spacing: 1px;
        transition: .35s;
    }

        .contact-cta .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255,255,255,.18);
        }


@media (max-width:991px) {

    .contact-intro {
        padding: 60px 0 50px;
    }

    .contact-cta {
        padding: 70px 0;
    }

        .contact-intro .subtitle,
        .map-description,
        .contact-cta p {
            width: 100%;
            font-size: 17px;
            line-height: 30px;
        }

        .contact-cta h2 {
            font-size: 42px;
        }

    .info-card,
    .why-card {
        margin-bottom: 25px;
        padding: 20px 16px;
    }
}

@media (max-width:767px) {

    .contact-intro .title {
        font-size: 42px;
    }

    .map-title {
        font-size: 30px;
    }

    .contact-cta {
        padding: 60px 0;
    }

        .contact-cta h2 {
            font-size: 34px;
            line-height: 1.2;
        }

        .contact-cta p {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 30px;
        }

        .contact-cta .btn-contact {
            width: 100%;
            max-width: 280px;
        }
}


/********************************
* Map
********************************/
#contact-map {
    position: relative;
    padding: 100px 0;
    overflow-x: hidden;
}


    #contact-map .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    #contact-map .subtitle {
        position: relative;
        width: 720px;
        max-width: 100%;
        margin: auto;
        color: #fff;
        font-size: 18px;
        line-height: 26px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 60px;
    }


@media(max-width: 460px) {
    #contact-map {
        padding: 0px;
    }


        #contact-map .title {
            font-size: 36px;
            line-height: 40px;
        }

        #contact-map .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}

.map-title {
    margin-bottom: 12px;
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.map-description {
    width: 760px;
    max-width: 100%;
    margin: auto auto 40px;
    text-align: center;
    color: #b8c7d9;
    line-height: 30px;
}

/********************************
* Project Intro
********************************/
.project-intro {
    padding: 80px 0px 0px 0px;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg,#000000 0%,#081321 100%);
}

    .project-intro::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0px;
        transform: translateX(-50%);
        width: min(900px,100%);
        height: 420px;
        background: radial-gradient(circle, rgba(0,163,255,.08) 0%, transparent 75%);
        pointer-events: none;
    }


    .project-intro .title {
        text-align: center;
        position: relative;
        color: #fff;
        font-size: 56px;
        line-height: 80px;
        font-weight: 700;
    }

    .project-intro .subtitle {
        color: #fff;
        font-size: 18px;
        line-height: 20px;
        font-weight: 200;
        text-align: center;
        margin-bottom: 0px;
    }


@media(max-width: 460px) {
    .project-intro {
        padding: 40px 0px;
    }


        .project-intro .title {
            font-size: 36px;
            line-height: 40px;
        }

        .project-intro .subtitle {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 30px;
        }
}


/********************************
* Project List
********************************/
.project-list {
    padding: 60px 0 90px;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    border-radius: 24px;
    transition: .35s;
    background: linear-gradient(180deg, rgba(24,33,53,.65) 0%, rgba(12,16,24,.88) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

    .project-card:hover {
        transform: translateY(-8px);
        border-color: rgba(0,163,255,.35);
        box-shadow: 0 25px 60px rgba(0,163,255,.12);
    }

.project-image {
    overflow: hidden;
}

    .project-image img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
        display: block;
        transition: transform .5s ease;
    }

.project-card:hover .project-image img {
    transform: scale(1.06);
}

/********************************
* Content
********************************/
.project-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}

    .project-content h3 {
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        line-height: 26px;
        margin-bottom: 12px;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .project-content .location {
        display: flex;
        align-items: center;
        color: #1f9cff;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 18px;
    }

        .project-content .location::before {
            content: "\f3c5";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-right: 10px;
        }

    .project-content p {
        flex: 1;
        color: #b8c7d9;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 25px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: left;
    }


.btn-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg,#2aa7ff,#0079ff);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    text-decoration: none;
}

.project-card:hover .btn-project {
    text-decoration: none;
    transform: translateX(4px);
    box-shadow: 0 10px 30px rgba(31,156,255,.25);
}

.btn-project i {
    transition: .3s;
}

.project-card:hover .btn-project i {
    transform: translateX(4px);
}

@media(max-width:991px) {

    .project-list {
        padding: 40px 0 70px;
    }

    .project-content {
        padding: 24px;
    }

        .project-content h3 {
            min-height: auto;
            font-size: 24px;
        }
}

@media(max-width:767px) {

    .project-list {
        padding: 30px 0 50px;
    }

    .project-content {
        padding: 22px;
    }

        .project-content h3 {
            font-size: 22px;
        }

        .project-content p {
            line-height: 28px;
            font-size: 16px;
        }
}


@media(max-width:991px) {

    .project-intro {
        padding: 110px 0 50px;
    }

        .project-intro .subtitle {
            width: 100%;
            font-size: 17px;
            line-height: 30px;
        }

    .project-card img {
        height: 220px;
    }

    .project-content {
        padding: 24px;
    }

        .project-content h3 {
            font-size: 24px;
        }
}

@media(max-width:767px) {

    .project-list {
        padding: 20px 0 60px;
    }

    .project-card {
        margin-bottom: 25px;
    }

        .project-card img {
            height: 200px;
        }

    .project-content {
        padding: 22px;
    }

        .project-content h3 {
            font-size: 22px;
        }

        .project-content p {
            font-size: 16px;
            line-height: 28px;
        }
}


.project-detail-image {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 18px;
}

.project-detail-content {
    margin-top: 35px;
}

.project-location {
    color: #1f9cff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

    .project-location i {
        margin-right: 10px;
    }

.project-description {
    color: #d6d6d6;
    font-size: 17px;
    line-height: 32px;
}

.modal-content {
    background: #0e1726;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
}

.modal-header {
    padding: 25px 30px;
}

.modal-body {
    padding: 0 30px 30px;
}

.modal-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #1f9cff;
}

/********************************
* cookie-consent
********************************/
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1040;
    display: none;
    padding: 24px 30px;
    border-radius: 20px;
    background: rgba(11,18,32,.95);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 40px rgba(0,140,255,.08);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cookie-icon {
    font-size: 42px;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

    .cookie-text strong {
        display: block;
        margin-bottom: 10px;
        color: #fff;
        font-size: 20px;
    }

    .cookie-text p {
        margin: 0;
        color: #c7d5e6;
        line-height: 28px;
    }

.cookie-action {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    border: none;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(180deg,#2aa7ff,#0079ff);
    transition: .3s;
}

    .btn-cookie:hover {
        transform: translateY(-2px);
    }

.btn-cookie-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.15);
}

    .btn-cookie-outline:hover {
        color: #fff;
        background: rgba(255,255,255,.05);
    }

@media(max-width:991px) {

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-action {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-outline {
        flex: 1;
        justify-content: center;
    }
}


/********************************
* Cookie Policy Modal
********************************/
.cookie-policy-modal {
    background: linear-gradient( 180deg, rgba(28,39,63,.98) 0%, rgba(12,16,24,.98) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    color: #cfd9e6;
    box-shadow: 0 25px 60px rgba(0,0,0,.45), 0 0 40px rgba(0,140,255,.10);
}

    .cookie-policy-modal .modal-header {
        border-bottom: 1px solid rgba(255,255,255,.08);
        padding: 25px 30px;
    }

    .cookie-policy-modal .modal-footer {
        border-top: 1px solid rgba(255,255,255,.08);
        padding: 20px 30px;
    }

    .cookie-policy-modal .modal-title {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
    }

    .cookie-policy-modal .modal-body {
        padding: 30px;
    }

    .cookie-policy-modal h4 {
        color: #fff;
        font-size: 24px;
        margin: 35px 0 15px;
    }

        .cookie-policy-modal h4:first-child {
            margin-top: 0;
        }

    .cookie-policy-modal p {
        color: #cfd9e6;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .cookie-policy-modal ul {
        padding-left: 20px;
    }

    .cookie-policy-modal li {
        margin-bottom: 10px;
    }

    .cookie-policy-modal hr {
        border-color: rgba(255,255,255,.08);
        margin: 30px 0;
    }


@media (max-width:767px) {

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
        border-radius: 18px;
    }

    .cookie-content {
        display: block;
    }

    .cookie-icon {
        margin-bottom: 12px;
    }

        .cookie-icon i {
            font-size: 30px;
        }

    .cookie-text strong {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cookie-text p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .cookie-action {
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-outline {
        flex: 1;
        padding: 12px 0;
        font-size: 15px;
    }
}