﻿
/*==============================================================================
    01. HERO SECTION
==============================================================================*/

.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
    background: #000;
    text-align: left;
}


    /*==============================================================================
    HERO CONTAINER
==============================================================================*/

    .hero > .container {
        position: relative;
        z-index: 9;
        width: 60%;
    }

.hero-content {
    max-width: 720px;
}

    .hero-content > * {
        animation: fadeUp .9s ease both;
    }

        .hero-content > *:nth-child(2) {
            animation-delay: .15s;
        }

        .hero-content > *:nth-child(3) {
            animation-delay: .3s;
        }

        .hero-content > *:nth-child(4) {
            animation-delay: .45s;
        }


/*==============================================================================
    02. HERO SLIDER
==============================================================================*/

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.08);
        transition: transform 8s linear;
    }

    .slide.active img {
        transform: scale(1);
    }


/*==============================================================================
    03. HERO OVERLAY
==============================================================================*/

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.60) 45%, rgba(0,0,0,.45) 100% );
}

    .hero-overlay::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top left, rgba(200,169,106,.15), transparent 55% );
        pointer-events: none;
    }


/*==============================================================================
    04. HERO CONTENT
==============================================================================*/

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.6rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

    .hero-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
    }

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.08;
    text-wrap: balance;
}

.hero-content p {
    max-width: 620px;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
    line-height: 1.9;
}


/*==============================================================================
    05. HERO BUTTONS
==============================================================================*/

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    .hero-buttons .btn-primary {
        min-width: 210px;
    }

    .hero-buttons .btn-secondary {
        min-width: 210px;
        border-color: rgba(255,255,255,.70);
        color: var(--white);
    }

        .hero-buttons .btn-secondary:hover {
            border-color: var(--white);
            background: var(--white);
            color: var(--secondary);
        }


/*==============================================================================
    06. SCROLL INDICATOR
==============================================================================*/

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
    z-index: 5;
    color: var(--white);
}

    .scroll-down span {
        font-size: .8rem;
        font-weight: 500;
        letter-spacing: 3px;
        text-transform: uppercase;
        opacity: .9;
    }

    .scroll-down i {
        font-size: 1.3rem;
        animation: bounce 2.5s infinite;
    }


/*==============================================================================
    07. PRODUCTS PREVIEW
==============================================================================*/

.products-preview {
    padding: var(--section-space) 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 2rem;
    margin-top: 4rem;
}

    .products-grid > .btn-primary {
        grid-column: 1/-1;
        justify-self: center;
        margin-top: 1rem;
    }


/*==============================================================================
    08. PRODUCT CARD
==============================================================================*/

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.product-image {
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 320px;
        transition: transform .7s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 2rem;
}

    .product-content h3 {
        margin-bottom: 1rem;
    }

    .product-content p {
        margin-bottom: 0;
        line-height: 1.8;
    }
/*==============================================================================
    09. ABOUT PREVIEW
==============================================================================*/

.about-preview {
    padding: var(--section-space) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: center;
    gap: 5rem;
}


/*==============================================================================
    ABOUT IMAGE
==============================================================================*/

.about-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

    .about-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( transparent, rgba(0,0,0,.08) );
        pointer-events: none;
    }

    .about-image img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }


/*==============================================================================
    ABOUT CONTENT
==============================================================================*/

.about-content h2 {
    margin: 1.25rem 0;
}

.about-content p {
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

.about-content .btn-primary {
    margin-top: 1.5rem;
}


/*==============================================================================
    10. ABOUT FEATURES
==============================================================================*/

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2.5rem 0;
}

    .about-features .feature-item {
        transition: var(--transition);
    }

        .about-features .feature-item:hover {
            transform: translateX(8px);
        }

        .about-features .feature-item i {
            background: rgba(200,169,106,.12);
        }


/*==============================================================================
    11. WHY CHOOSE US
==============================================================================*/

.why-us {
    padding: var(--section-space) 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 2rem;
    margin-top: 4rem;
}


/*==============================================================================
    WHY CARD
==============================================================================*/

.why-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

    .why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

        .why-card:hover::before {
            transform: scaleX(1);
        }

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: rgba(200,169,106,.12);
    transition: var(--transition);
}

    .why-icon i {
        font-size: 2rem;
        color: var(--primary);
    }

.why-card:hover .why-icon {
    background: var(--primary);
}

    .why-card:hover .why-icon i {
        color: var(--white);
    }

.why-card h3 {
    margin-bottom: 1rem;
}

.why-card p {
    line-height: 1.8;
}


/*==============================================================================
    12. CONTACT SECTION
==============================================================================*/

.contact {
    padding: 90px 0 40px;
    background: var(--white);
}

.contact-info-box h2 {
    margin: .8rem 0 1rem;
}

.contact-info-box > p {
    margin-bottom: 2rem;
}

.contact-info li strong {
    display: block;
    margin-bottom: .25rem;
    color: var(--secondary);
}

.contact-info li div {
    color: var(--text);
    line-height: 1.7;
}

.contact-info li a {
    color: inherit;
}

    .contact-info li a:hover {
        color: var(--primary);
    }

.map-box {
    background: var(--white);
}

    .map-box iframe {
        display: block;
    }

    .map-box .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .65rem;
        margin: 1.5rem;
        padding: 14px 28px;
        border-radius: 999px;
        background: var(--primary);
        color: var(--white);
        font-weight: 600;
        transition: var(--transition);
    }

        .map-box .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
/*==============================================================================
    13. RESPONSIVE DESIGN
==============================================================================*/
/*------------------------------------------------------------------------------
    Large Screens
------------------------------------------------------------------------------*/

@media (max-width:1200px) {

    .hero-content {
        max-width: 650px;
    }

        .hero-content p {
            max-width: 580px;
        }

    .about-grid {
        gap: 4rem;
    }
}



/*==============================================================================
    COMPACT SECTION SPACING
==============================================================================*/

.products-preview,
.about-preview,
.why-us,
.contact {
    padding-top: 60px;
    padding-bottom: 60px;
}


    /*------------------------------------------------------------------------------
    Products Preview
------------------------------------------------------------------------------*/

    .products-preview .section-title {
        margin-bottom: 40px;
    }

.products-grid {
    gap: 28px;
}


/*------------------------------------------------------------------------------
    About Preview
------------------------------------------------------------------------------*/

.about-preview .about-grid {
    gap: 50px;
}


/*------------------------------------------------------------------------------
    Why Us
------------------------------------------------------------------------------*/

.why-us .section-title {
    margin-bottom: 40px;
}

.why-grid {
    gap: 28px;
}


/*------------------------------------------------------------------------------
    Contact
------------------------------------------------------------------------------*/

.contact .section-title {
    margin-bottom: 40px;
}

.contact-grid {
    gap: 40px;
}


/*==============================================================================
    TABLET
==============================================================================*/

@media (max-width: 992px) {

    .products-preview,
    .about-preview,
    .why-us,
    .contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


/*==============================================================================
    MOBILE
==============================================================================*/

@media (max-width: 768px) {

    .products-preview,
    .about-preview,
    .why-us,
    .contact {
        padding-top: 55px;
        padding-bottom: 55px;
    }

        .products-preview .section-title,
        .why-us .section-title,
        .contact .section-title {
            margin-bottom: 30px;
        }
}





/*------------------------------------------------------------------------------
    Mobile Devices
------------------------------------------------------------------------------*/

@media (max-width:768px) {

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .hero-tag {
        font-size: .75rem;
        padding: .75rem 1.25rem;
        letter-spacing: 1.5px;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem,9vw,3.6rem);
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-buttons .btn-primary,
        .hero-buttons .btn-secondary {
            width: 100%;
            min-width: unset;
        }

    .scroll-down {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .product-content {
        padding: 1.75rem;
    }

        .product-content h3 {
            font-size: 1.8rem;
        }

    .about-image img {
        height: 480px;
    }

    .about-features {
        align-items: flex-start;
    }

        .about-features .feature-item:hover {
            transform: none;
        }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 2rem 1.75rem;
    }

    .contact {
        padding: 80px 0 30px;
    }

    .map-box .btn {
        width: calc(100% - 3rem);
        margin: 1.5rem;
    }
}


/*------------------------------------------------------------------------------
    Small Mobile Devices
------------------------------------------------------------------------------*/

@media (max-width:480px) {

    .hero {
        min-height: 82vh;
    }

    .hero-content h1 {
        font-size: 2.15rem;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: .95rem;
    }

    .hero-tag {
        padding: .65rem 1rem;
        font-size: .72rem;
    }

    .product-image img {
        height: 260px;
    }

    .product-content {
        padding: 1.5rem;
    }

        .product-content h3 {
            font-size: 1.6rem;
        }

    .about-image img {
        height: 380px;
    }

    .why-icon {
        width: 72px;
        height: 72px;
    }

        .why-icon i {
            font-size: 1.7rem;
        }

    .why-card {
        padding: 1.75rem 1.5rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }

    .contact-info li {
        gap: .85rem;
    }

        .contact-info li i {
            width: 42px;
            height: 42px;
            font-size: 1rem;
        }
}


/*------------------------------------------------------------------------------
    Extra Small Devices
------------------------------------------------------------------------------*/

@media (max-width:360px) {

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: .9rem;
    }

    .hero-tag {
        letter-spacing: 1px;
    }

    .product-content {
        padding: 1.25rem;
    }
}


/*==============================================================================
    END OF FILE
==============================================================================*/
