﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a2a4a;
    --secondary-navy: #0f1e35;
    --gold: #d4af37;
    --light-gold: #e8c547;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #2a2a2a;
    --text-gray: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-navy);
    color: #333;
    overflow-x: hidden;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
        z-index: 1;
    }

.swiper-hero {
    width: 100%;
    height: 100vh;
    z-index: 2;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
}

    .hero-slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.25;
        z-index: 0;
    }

.hero-slide-1::before {
    background-image: url('../images/banner-1.jpg');
}

.hero-slide-2::before {
    background-image: url('../images/banner-2.jpg');
}

.hero-slide-3::before {
    background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad576?w=1200&h=800&fit=crop');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .gold-accent {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-premium {
    padding: 14px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gold);
    color: var(--secondary-navy);
    border: 2px solid var(--gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary-premium:hover {
        background: transparent;
        color: var(--gold);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

.btn-secondary-premium {
    padding: 14px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-secondary-premium:hover {
        background: white;
        color: var(--secondary-navy);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    }

.swiper-pagination-bullet {
    background: var(--gold) !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: linear-gradient(90deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    max-width:250px;
}

.nav-link {
    color: white !important;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

/* ========== ABOUT SECTION ========== */
.about-section {
    background: white;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--gold);
        border-radius: 2px;
    }

.about-content {
    margin-top: 60px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.icon-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 42, 74, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .icon-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(30, 42, 74, 0.15) 100%);
    }

    .icon-card i {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 15px;
    }

    .icon-card h4 {
        color: var(--primary-navy);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .icon-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
        margin: 0;
    }

/* ========== PRODUCT CATEGORIES SECTION ========== */
.products-categories-section {
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    padding: 80px 20px;
    color: white;
    position: relative;
}

    .products-categories-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
        z-index: 1;
    }

    .products-categories-section .section-title {
        color: white;
        position: relative;
        z-index: 2;
    }

.swiper-products-category {
    width: 100%;
    z-index: 2;
}

.product-category-card {
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    position:relative;
    z-index:999;
}

    .product-category-card:hover {
        background: rgba(0, 0, 0, 0.12);
        border-color: var(--gold);
        transform: translateY(-15px);
    }

    .product-category-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .product-category-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--gold);
        font-weight: 700;
    }

    .product-category-card p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .product-category-card .btn-premium {
        align-self: center;
    }

/* ========== FEATURED PRODUCTS SECTION ========== */
.featured-products-section {
    background: white;
    padding: 80px 20px;
}

.swiper-products {
    width: 100%;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover .product-image img{
        transform: scale(1.1);
    }

.product-image {
    width: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

    .btn-whatsapp:hover {
        background: #1ead54;
        transform: scale(1.05);
    }

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    padding: 80px 20px;
    color: white;
    position: relative;
}

    .why-choose-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
        z-index: 1;
    }

    .why-choose-section .section-title {
        color: white;
        position: relative;
        z-index: 2;
    }

.why-feature {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .why-feature:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateX(10px);
    }

    .why-feature i {
        font-size: 2rem;
        color: var(--gold);
        margin-bottom: 15px;
        display: block;
    }

    .why-feature h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: white;
        font-weight: 700;
    }

    .why-feature p {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        line-height: 1.6;
    }

/* ========== STATISTICS SECTION ========== */
.statistics-section {
    background: white;
    padding: 80px 20px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 42, 74, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(30, 42, 74, 0.15) 100%);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 500px;
        height: 500px;
        background: rgba(30, 42, 74, 0.1);
        border-radius: 50%;
        z-index: 1;
    }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(30, 42, 74, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-cta-whatsapp {
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-cta-whatsapp:hover {
        background: #1ead54;
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

/* ========== FOOTER ========== */
.footer {
    background: var(--secondary-navy);
    color: white;
    padding: 60px 20px 20px;
}



.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding:0;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-section ul li a:hover {
                color: var(--gold);
            }

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(212, 175, 55, 0.2);
        border: 1px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .social-links a:hover {
            background: var(--gold);
            color: var(--secondary-navy);
            transform: translateY(-5px);
        }

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

    .whatsapp-floating:hover {
        transform: scale(1.15) translateY(-5px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
.swiper-button-next, .swiper-button-prev {
    height: 30px;
    width: 30px;
    color: #f2b825;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 10px;
    }
    /* ========== RESPONSIVE DESIGN ========== */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .hero-buttons {
            gap: 10px;
        }

        .btn-primary-premium,
        .btn-secondary-premium {
            padding: 12px 30px;
            font-size: 0.95rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .cta-section h2 {
            font-size: 1.8rem;
        }

        .navbar-brand {
            font-size: 1.3rem;
        }

        .nav-link {
            margin-left: 10px;
            font-size: 0.9rem;
        }

        .whatsapp-floating {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 1.2rem;
        }

        .product-category-card {
            padding: 25px;
            min-height: 350px;
        }

            .product-category-card h3 {
                font-size: 1.4rem;
            }

        .why-feature {
            padding: 20px;
        }

            .why-feature h4 {
                font-size: 1.1rem;
            }
    }

    @media (max-width: 576px) {
        .hero-section {
            min-height: auto;
        }

        .swiper-hero {
            min-height: 600px;
        }

        .hero-content h1 {
            font-size: 2.6rem;
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        .hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .btn-primary-premium,
        .btn-secondary-premium {
            width: 100%;
            padding: 12px 20px;
        }

        .section-title {
            font-size: 1.6rem;
        }

            .section-title::after {
                width: 40px;
            }

        .about-section,
        .products-categories-section,
        .featured-products-section,
        .why-choose-section,
        .statistics-section,
        .cta-section {
            padding: 50px 15px;
        }

        .icon-card {
            margin: 10px 0;
        }

        .stat-card {
            padding: 25px 15px;
            min-height: 200px;
        }

        .stat-number {
            font-size: 2rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .navbar-toggler {
            border-color: var(--gold);
        }

        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        .cta-section h2 {
            font-size: 1.5rem;
        }

        .cta-section p {
            font-size: 1rem;
        }
    }
    /* ========== ANIMATIONS ========== */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .animate-on-scroll {
        opacity: 0;
        animation: fadeIn 0.8s ease-out forwards;
    }
    /* Scroll animations */
    .section-title {
        animation: slideInLeft 0.8s ease-out;
    }

    .icon-card {
        animation: slideInRight 0.8s ease-out;
        animation-fill-mode: both;
    }

        .icon-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .icon-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .icon-card:nth-child(3) {
            animation-delay: 0.3s;
        }

    .why-feature {
        animation: slideInLeft 0.8s ease-out;
        animation-fill-mode: both;
    }

        .why-feature:nth-child(2) {
            animation-delay: 0.1s;
        }

        .why-feature:nth-child(3) {
            animation-delay: 0.2s;
        }

        .why-feature:nth-child(4) {
            animation-delay: 0.3s;
        }

        .why-feature:nth-child(5) {
            animation-delay: 0.4s;
        }

    .stat-card {
        animation: slideInRight 0.8s ease-out;
        animation-fill-mode: both;
    }

        .stat-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .stat-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stat-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .stat-card:nth-child(4) {
            animation-delay: 0.4s;
        }

    .btn-premium {
        padding: 12px 30px;
        background: var(--gold);
        color: var(--secondary-navy);
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .btn-premium:hover {
            background: white;
            transform: scale(1.05);
        }

    body {
    }
