/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
}
section{
    padding-left:2rem !important;
    padding-right:2rem !important;
}
.wrapper{
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mburger {
    --mb-button-size: 60px;
    --mb-bar-width: 0.6;
    --mb-bar-height: 2px;
    --mb-bar-spacing: 10px;
    --mb-cross-timeout: 0.4s;
    background: 0 0;
    border: none;
    border-radius: 0;
    color: #282a2e;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    height: var(--mb-button-size);
    padding: 0 0 0 var(--mb-button-size);
    margin: 0;
    line-height: var(--mb-button-size);
    vertical-align: middle;
    appearance: none;
    outline: 0;
    cursor: pointer;
}
#hamburger .mburger {
    margin-left: 0;
    --mb-button-size: 44px;
    --mb-bar-height: 2px;
    --mb-bar-width: 0.8;
    --mb-bar-spacing: 6px;
}
.mburger b {
    display: block;
    position: absolute;
    left: 10px;
    width: calc(var(--mb-button-size));
    height: var(--mb-bar-height);
    border-radius: calc(var(--mb-bar-height)/ 2);
    background: currentColor;
    color: inherit;
    opacity: 1;
}
.mburger b:nth-of-type(1) {
    bottom: calc(50% + var(--mb-bar-spacing));
    transition: bottom .2s ease,transform .2s ease;
}
.mburger--collapse b:nth-of-type(1) {
    transition: bottom .2s ease,margin .2s ease,transform .2s ease;
    transition-delay: .2s,0s,0s;
}
.mburger b:nth-of-type(2) {
    top: calc(50% - (var(--mb-bar-height)/ 2));
    transition: opacity .2s ease;
}
.mburger--collapse b:nth-of-type(2) {
    transition: top .2s ease,opacity 0s ease, width ease 0.3s;
    transition-delay: .3s,.3s;
}
.mburger b:nth-of-type(3) {
    top: calc(50% + var(--mb-bar-spacing));
    transition: top .2s ease,transform .2s ease;
}
.mm-wrapper_opened .mburger b:nth-of-type(1) {
    bottom: calc(50% - (var(--mb-bar-height)/ 2));
    transform: rotate(
            45deg
    );
}
.mm-wrapper_opened .mburger--collapse b:nth-of-type(1) {
    bottom: calc(50% - var(--mb-bar-spacing) - var(--mb-bar-height));
    margin-bottom: calc(var(--mb-bar-spacing) + (var(--mb-bar-height)/ 2));
    transform: rotate(
            45deg
    );
    transition-delay: calc(var(--mb-cross-timeout) + .1s),calc(var(--mb-cross-timeout) + .3s),calc(var(--mb-cross-timeout) + .3s);
}
.mm-wrapper_opened .mburger--collapse b:nth-of-type(2) {
    top: calc(50% + var(--mb-bar-spacing));
    opacity: 0;
    transition-delay: calc(var(--mb-cross-timeout) + 0s),calc(var(--mb-cross-timeout) + .2s);
}
.mm-wrapper_opened .mburger--collapse b:nth-of-type(3) {
    top: calc(50% - (var(--mb-bar-height)/ 2));
    transform: rotate(
            -45deg
    );
    transition-delay: calc(var(--mb-cross-timeout) + .3s),calc(var(--mb-cross-timeout) + .3s);
}
.mburger--collapse b:nth-of-type(1), .mburger--collapse b:nth-of-type(3) {
    width: 24px;
}
.mburger--collapse b:nth-of-type(2) {
    width: 24px;
}
.mm-wrapper_opened .mburger--collapse b{
    width: 24px;
}
#hamburger:focus {
    color: #ffc60c;
}
.mburger.mburger--collapse:hover b {
    width: 24px;
}
.header_nav li:not(:last-child) {
    margin-right: 30px;
}
.header_nav li a {
    font-size: 20px;
    color: #000 !important;
    margin: 0 15px;
    font-weight: 400;
}
.header_nav li.active a{
    font-weight: 700;
    position: relative;
}
.header_nav li.active a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
}
.flex-center-between {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
}

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.72);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo-img {
    height: 80px;
    width: auto;
}

.navbar-nav .nav-link {
    font-size: 20px;
    color: #000 !important;
    margin: 0 15px;
    font-weight: 400;
}

.navbar-nav .nav-link:hover {
    color: #333 !important;
}

.header-icon {
    width: 23px;
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 820px;
    z-index: 1;
    overflow: hidden;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content Section */
.main-content-section {
    background-color: #000000;
    padding: 50px 0;
    color: #ffffff;
}

.content-title {
    font-size: 40px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 20px;
}

.content-text {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.content-image-wrapper,
.mockup-image-wrapper {
    border-radius: 8px;
}

.product-image-wrapper {
    border-radius: 30px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.logo-wrapper,
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.logo-wrapper img{
    width: 150px;
    height: auto;
}

.icon-wrapper img {
    width: 24px;
    height: auto;
}

.logo-wrapper {
    border-radius: 10px;
}

.icon-wrapper {
    border-radius: 50%;
    padding: 0;
    background-color: transparent;
}

.shine::before {
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 35%,
        rgba(255,255,255,0.65) 50%,
        rgba(255,255,255,0.2) 65%,
        rgba(255,255,255,0) 100%
    );
    content: "";
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-20deg);
    width: 60%;
    z-index: 2;
    pointer-events: none;
}

.shine:hover::before,
.shine:focus::before {
    animation: shine 0.85s ease-in-out;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.product-section{
    padding: 50px 0;
}
.content-product{
    background-color: #000000;
    border-radius: 60px;
    padding: 30px;
}

.product-image{
    width: 100%;
    height: auto;
    border-radius: 30px;
}
.product-details{
    position: relative;
}
.product-details p{
    color: #ffffff;
}

.product-description{
    color: white;
}
.product-description li{
    margin-bottom: 10px;
}
.product-description li i{
    margin-right: 10px;
    font-size: 27px;
}

.product-price {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}
.top-alert{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    border-radius: 0;
    margin: 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-details label{
    color: #ffffff;
}
.order-modal .modal-content{
    color: #111;
}
.order-modal label{
    color: #111;
    font-weight: 600;
}

.btn-buy{
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    border: none;
    transform: rotateZ(270deg);
    position: absolute;
    transform-origin: center;
    width: 200px;
    right: -65px;
}
.btn-buy:focus{
    box-shadow: none;
}

footer{
    background: black;
    color: white;
    padding: 20px 0;
    margin-top: auto;
}

.footer-bottom{
    padding-top: 20px;
    border-top: 1px solid white;
}

.footer-item a{
    color: white;
    text-decoration: none;
}
.footer-item h4{
    margin-bottom: 15px;
}
.footer-item p{
    text-align: justify;
}

.footer-item ul{
    list-style: none;
}

.countdown-timer{
    display: inline-flex;
    gap: 20px;
}
.count-down-section{
    padding: 50px 0;
}
.countdown-box .countdown-number{
    padding: 15px;
    border: 1px solid black;
    border-radius: 20px;
    text-align: center;
    width: 100px;
    font-size: 30px;
}

.countdown-box .countdown-label{
    margin-top: 10px;
    font-size: 17px;
    text-align: center;
}
.countdown-box{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.countdown-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.countdown-text p{
    color: #8f8f89;
    font-size: 18px;
}
.countdown-text h3{
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 10px;
}

/* About Page */
.about-hero{
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.12), rgba(255,255,255,0)) ,
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.08), rgba(255,255,255,0)) ,
    linear-gradient(135deg, #0b0b0b 0%, #141414 45%, #0f0f0f 100%);
    color: #ffffff;
    overflow: hidden;
}
.about-hero::after{
    content: "";
    position: absolute;
    inset: 60px -40px -80px -120px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    transform: rotate(-2deg);
    z-index: 0;
}
.about-hero .container,
.about-hero .row,
.about-hero .col-lg-7,
.about-hero .col-lg-5{
    position: relative;
    z-index: 1;
}
.eyebrow{
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    color: #cfcfcf;
    margin-bottom: 12px;
}
.about-hero h1{
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
}
.about-lead{
    font-size: 18px;
    line-height: 1.8;
    max-width: 680px;
    color: #e7e7e7;
}
.about-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 16px;
    background: #ffffff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0,0,0,0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.2);
    color: #000;
    text-decoration: none;
}
.about-link{
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s ease;
}
.about-link:hover{
    color: #ededed;
    text-decoration: none;
}
.about-hero-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 26px;
    color: #ffffff;
    box-shadow: 0 22px 60px rgba(0,0,0,0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.about-hero-card h3{
    font-size: 28px;
    margin-bottom: 12px;
    color: #ffffff;
}
.about-hero-card p{
    color: #d9d9d9;
    line-height: 1.7;
}
.about-points{
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}
.about-points li{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f3f3f3;
    font-weight: 600;
}
.about-points li::before{
    content: "";
    width: 10px;
    height: 10px;
    background: #ffc60c;
    border-radius: 50%;
    display: inline-block;
}
.team-section{
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    padding: 90px 0 120px;
    color: #0d0d0d;
}
.section-header{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}
.section-header h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0d0d0d;
}
.section-header p{
    margin: 0;
    color: #555555;
}
.team-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.team-card{
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team-photo{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 3 / 4;
    width: 100%;
    min-height: 320px;
    background-color: #f2f2f2;
}
.team-content{
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.team-name{
    font-size: 24px;
    margin: 0;
    color: #0d0d0d;
}
.team-content p{
    margin: 0;
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 15px;
}


@media screen  and (min-width: 768px) {
    .nav_mb{
        display: none;
    }
    .btn_nav_mb {
        display: none;
    }
}

@media screen  and (max-width: 767px) {
    .nav_mb {
        background: #fff;
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        z-index: 999;
        height: calc(100vh - 120px);
        padding-top: 20px;
        transition: all ease 0.3s;
        display: flex;
        flex-direction: column;
    }
    .nav_mb.show {
        left: 0;
    }
    .header_nav {
        display: none;
    }
    .nav_mb li a {
        display: block;
        font-size: 28px;
        /* font-weight: 600; */
        color: #151515;
        padding: 10px 18px;
        letter-spacing: 1px;
    }
    .nav_mb li a.active{
        font-weight: 700;
    }
    .nav_mb-header {
        display: flex;
        justify-content: flex-end;
        padding: 0 20px 10px;
    }
    .nav_mb-close {
        background: none;
        border: none;
        font-size: 42px;
        line-height: 1;
        color: #313a46;
        padding: 0;
        cursor: pointer;
    }
    .hero-background{
        height: 300px;
    }
    .hero-section{
        min-height: 300px;
    }
    .countdown-box .countdown-number{
        width: unset;
        padding: 10px;
    }
    .content-text{
        margin-bottom: 0px;
    }
    .footer-item{
        margin-bottom: 20px;
    }
    .main-content-section{
        padding: 20px 0;
    }
    .content-product{
        margin: 0 20px;
    }
    .product-description{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .product-price{
        font-size: 36px;
        text-align: center;
        color: #ffffff;
        margin-bottom: 20px;
    }
    .btn-buy {
        transform: unset;
        position: relative;
        width: 100%;
        right: 0px;
    }
    .about-hero{
        padding-top: 140px;
        padding-bottom: 70px;
    }
    .about-hero h1{
        font-size: 36px;
    }
    .about-hero-card{
        margin-top: 24px;
    }
    .team-section{
        padding: 60px 0 80px;
    }
    .team-grid{
        gap: 18px;
    }
    .team-name{
        font-size: 21px;
    }
    .about-hero,
    .team-section{
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media screen and (min-width: 992px) {
    .team-card{
        flex-direction: row;
        align-items: stretch;
    }
    .team-photo{
        flex: 0 0 220px;
        max-width: 220px;
        min-height: 280px;
        aspect-ratio: 3 / 4;
    }
    .team-content{
        padding: 22px 26px;
    }
}

@media screen and (min-width: 768px) {
    .team-grid{
        grid-template-columns: 1fr;
        gap: 24px;
    }
}


