/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.8);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.6) transparent;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    background: transparent;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    height: 100%;
    font-weight: 500;
}

/* Floating Light Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: floatParticles 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: none;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Navbar Background */
.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 100%;
    min-width: 100%;
}

.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.navbar.scrolled {
    background: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    height: 70px;
}

.nav-logo h2 {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: none;
}

.nav-link:hover {
    color: #f093fb;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #f093fb, #667eea);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #333333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 20px 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Section Background Styles */
.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 100%;
    min-width: 100%;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease-out;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 130px;
    backdrop-filter: blur(10px);
}

.cta-button.primary {
    background: #333333;
    color: #ffffff;
    border: 1px solid #333333;
}

.cta-button.secondary {
    background: #333333;
    color: #ffffff;
    border: 2px solid #333333;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: #555555;
    border-color: #555555;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-button.tertiary {
    background: #f093fb;
    color: #ffffff;
    border: 2px solid #f093fb;
}

.cta-button.tertiary:hover {
    background: #e082e8;
    border-color: #e082e8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240, 147, 251, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #f093fb, #667eea);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.about-text p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature:nth-child(1) { 
    animation-delay: 0s; 
    animation: floatCard 6s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 0 20px 20px;
}
.feature:nth-child(2) { 
    animation-delay: 1s; 
    animation: floatCard 6s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 20px 20px 0;
}
.feature:nth-child(3) { 
    animation-delay: 2s; 
    animation: floatCard 6s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
}

.feature::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature:hover::before {
    opacity: 1;
    animation: lightSweep 1.5s ease-in-out;
}

.feature:hover {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(240, 147, 251, 0.5);
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-8px) rotateX(2deg);
    }
    50% {
        transform: translateY(-15px) rotateX(0deg);
    }
    75% {
        transform: translateY(-8px) rotateX(-2deg);
    }
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature i {
    font-size: 2.5rem;
    color: #f093fb;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature p {
    color: #666666;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.product-category {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-category h3 {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #f093fb;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.product-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.product-item {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.product-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-item img {
    width: 80px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: 5px;
}

.product-item h4 {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-item .price {
    color: #f093fb;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Separator Section */
.separator {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.separator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 100%;
    min-width: 100%;
}

.separator-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.separator-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.separator-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.separator-content p {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.brands-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.brands-text {
    text-align: center;
    margin-bottom: 4rem;
}

.brands-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.brand-category {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    backdrop-filter: none;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: floatCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    min-height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-category:nth-child(1) { 
    animation-delay: 0s; 
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 0 20px 20px;
}
.brand-category:nth-child(2) { 
    animation-delay: 1s; 
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 20px 20px 0;
}
.brand-category:nth-child(3) { 
    animation-delay: 2s; 
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
}
.brand-category:nth-child(4) { 
    animation-delay: 3s; 
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 0 20px 20px;
}
.brand-category:nth-child(5) { 
    animation-delay: 4s; 
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 20px 20px 0;
}
.brand-category:nth-child(6) { 
    animation-delay: 5s; 
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 20px;
}

.brand-category:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(240, 147, 251, 0.5);
}

.brand-category h3 {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: none;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.brand-tag {
    background: #f8f9fa;
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.brand-tag:hover {
    background: rgba(240, 147, 251, 0.3);
    border-color: rgba(240, 147, 251, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.2);
}

.brands-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
}

.brands-cta h3 {
    color: #333333;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brands-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.brands-cta .cta-button {
    margin-top: 1rem;
}

.product-carousel {
    position: relative;
    margin-top: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-width: 300px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
    min-height: 400px;
}

.product-card:nth-child(1) { 
    animation-delay: 0s; 
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 0 20px 20px;
}
.product-card:nth-child(2) { 
    animation-delay: 1.5s; 
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 20px 20px 0;
}
.product-card:nth-child(3) { 
    animation-delay: 3s; 
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
}
.product-card:nth-child(4) { 
    animation-delay: 4.5s; 
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 0 20px 20px;
}
.product-card:nth-child(5) { 
    animation-delay: 6s; 
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 20px 20px 0;
}
.product-card:nth-child(6) { 
    animation-delay: 7.5s; 
    animation: flyCard 8s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 20px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.8s ease;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-25px) scale(1.08) rotateY(10deg) rotateX(5deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(240, 147, 251, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(240, 147, 251, 0.6);
}

@keyframes flyCard {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg) scale(1);
    }
    25% {
        transform: translateY(-12px) rotateY(2deg) scale(1.02);
    }
    50% {
        transform: translateY(-20px) rotateY(0deg) scale(1.05);
    }
    75% {
        transform: translateY(-12px) rotateY(-2deg) scale(1.02);
    }
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f093fb;
}

.old-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.order-btn {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.order-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Offers Section */
.offers {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    animation: lightFloat 10s ease-in-out infinite;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
    min-height: 300px;
}

.offer-card:nth-child(1) { 
    animation-delay: 0s; 
    animation: lightFloat 10s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 0 20px 20px;
}
.offer-card:nth-child(2) { 
    animation-delay: 2s; 
    animation: lightFloat 10s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 20px 20px 0;
}
.offer-card:nth-child(3) { 
    animation-delay: 4s; 
    animation: lightFloat 10s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f093fb, #667eea, #f093fb);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease;
}

.offer-card.featured {
    border: 2px solid #f093fb;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
}

.offer-card.featured::before {
    opacity: 1;
    animation: lightPulse 2s ease-in-out infinite;
}

.offer-card:hover {
    transform: translateY(-30px) scale(1.05) rotateZ(2deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(240, 147, 251, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(240, 147, 251, 0.8);
}

.offer-card:hover::before {
    opacity: 1;
    animation: lightRotate 3s linear infinite;
}

@keyframes lightFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(3deg);
    }
    50% {
        transform: translateY(-18px) rotateX(0deg);
    }
    75% {
        transform: translateY(-10px) rotateX(-3deg);
    }
}

@keyframes lightPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes lightRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb, #667eea);
    color: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card h3 {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f093fb;
}

.savings {
    font-size: 0.9rem;
    color: #4ade80;
    font-weight: 600;
}

.offer-btn {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.offer-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 4px solid #f093fb;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: gentleFloat 12s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
    min-height: 250px;
}

.testimonial-card:nth-child(1) { 
    animation-delay: 0s; 
    animation: gentleFloat 12s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 0 20px 20px;
}
.testimonial-card:nth-child(2) { 
    animation-delay: 3s; 
    animation: gentleFloat 12s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 20px 20px 0;
}
.testimonial-card:nth-child(3) { 
    animation-delay: 6s; 
    animation: gentleFloat 12s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    opacity: 1;
    animation: lightGlow 2s ease-in-out infinite;
}

.testimonial-card:hover {
    transform: translateY(-25px) scale(1.03) rotateX(5deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 0 60px rgba(240, 147, 251, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-left-color: rgba(240, 147, 251, 0.8);
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-6px) rotateX(1deg);
    }
    50% {
        transform: translateY(-12px) rotateX(0deg);
    }
    75% {
        transform: translateY(-6px) rotateX(-1deg);
    }
}

@keyframes lightGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.stars {
    color: #f093fb;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f093fb, #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #333333;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 4px solid #f093fb;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: eventFloat 14s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%);
    min-height: 200px;
}

.event-card:nth-child(1) { 
    animation-delay: 0s; 
    animation: eventFloat 14s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 0 0 20px 20px;
}
.event-card:nth-child(2) { 
    animation-delay: 4s; 
    animation: eventFloat 14s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 80%, 0% 60%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border-radius: 0 20px 20px 0;
}
.event-card:nth-child(3) { 
    animation-delay: 8s; 
    animation: eventFloat 14s ease-in-out infinite;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(102, 126, 234, 0.2));
    border-radius: 20px;
}

.event-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(240, 147, 251, 0.1), transparent);
    animation: lightSpin 8s linear infinite;
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 0;
}

.event-card:hover::after {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-20px) scale(1.04) rotateY(3deg);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-left-color: rgba(240, 147, 251, 0.8);
}

@keyframes eventFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-8px) rotateX(2deg);
    }
    50% {
        transform: translateY(-15px) rotateX(0deg);
    }
    75% {
        transform: translateY(-8px) rotateX(-2deg);
    }
}

@keyframes lightSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Windmill Animation */
@keyframes windmillSpin {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(90deg) scale(1.02);
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(1.05);
    }
    75% {
        transform: translateY(-8px) rotate(270deg) scale(1.02);
    }
    100% {
        transform: translateY(0px) rotate(360deg) scale(1);
    }
}

/* Airplane Animation */
@keyframes airplaneFly {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    10% {
        transform: translateY(-5px) translateX(5px) rotate(2deg) scale(1.01);
    }
    20% {
        transform: translateY(-10px) translateX(10px) rotate(4deg) scale(1.02);
    }
    30% {
        transform: translateY(-15px) translateX(15px) rotate(6deg) scale(1.03);
    }
    40% {
        transform: translateY(-20px) translateX(20px) rotate(8deg) scale(1.04);
    }
    50% {
        transform: translateY(-25px) translateX(25px) rotate(10deg) scale(1.05);
    }
    60% {
        transform: translateY(-20px) translateX(20px) rotate(8deg) scale(1.04);
    }
    70% {
        transform: translateY(-15px) translateX(15px) rotate(6deg) scale(1.03);
    }
    80% {
        transform: translateY(-10px) translateX(10px) rotate(4deg) scale(1.02);
    }
    90% {
        transform: translateY(-5px) translateX(5px) rotate(2deg) scale(1.01);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
}

.event-date {
    background: linear-gradient(135deg, #f093fb, #667eea);
    color: #333333;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details h3 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-time {
    color: #f093fb;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 100px 0;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.newsletter h2 {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: none;
}

.newsletter p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    font-size: 1rem;
    backdrop-filter: none;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #333333;
    color: #333333;
    border: 1px solid #333333;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.newsletter-form button:hover {
    background: #555555;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 3;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f093fb;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details h4 {
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666666;
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #333333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #333333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    font-size: 1rem;
    backdrop-filter: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #333333;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* WhatsApp Section */
.whatsapp-section {
    margin-top: 3rem;
    text-align: center;
    background: rgba(37, 211, 102, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    backdrop-filter: blur(10px);
}

.whatsapp-content h3 {
    color: #25D366;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: #333333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* Map Container */
.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    background: #ffffff;
}

.map-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 4;
    max-width: 250px;
}

.map-label h3 {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', serif;
}

.map-label p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.map-label p:last-child {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background: #333333;
    color: #cccccc;
    padding: 30px 0 15px;
    border-top: 1px solid #e0e0e0;
    backdrop-filter: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.3rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #f093fb;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: #f093fb;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555555;
}

.footer-bottom p {
    color: #aaaaaa;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #f093fb;
    text-decoration: none;
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #888888;
    font-style: italic;
}

.powered-by strong {
    color: #f093fb;
    font-weight: 600;
}

/* Brand Request Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #f093fb;
}

.modal-content h2 {
    color: #333333;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 500;
}

.modal-content .form-group {
    margin-bottom: 1.5rem;
}

.modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 600;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.3s ease;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: #f093fb;
}

.modal-content textarea {
    height: 100px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.form-actions .cta-button {
    min-width: 120px;
}

/* AI Chatbot */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(240, 147, 251, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10000;
    pointer-events: auto;
    user-select: none;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(240, 147, 251, 0.6);
}

/* Chatbot toggle styling */

.chatbot-toggle i {
    color: #ffffff;
    font-size: 24px;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, #f093fb, #667eea);
    color: #ffffff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
}

.chatbot-title i {
    font-size: 18px;
}

.chatbot-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.chatbot-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.user-message .message-content {
    background: linear-gradient(135deg, #f093fb, #667eea);
    color: #ffffff;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.message-time {
    font-size: 11px;
    color: #999999;
    margin-top: 5px;
    text-align: right;
}

.user-message .message-time {
    text-align: left;
}

/* Typing Indicator */
.typing-indicator {
    opacity: 0.7;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999999;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingDot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Quick Actions */
.quick-actions {
    margin: 10px 0;
}

.quick-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.quick-btn {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: #f093fb;
    color: #ffffff;
    border-color: #f093fb;
    transform: translateY(-1px);
}

.chatbot-input {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: #f093fb;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f093fb, #667eea);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-window {
        width: 300px;
        height: 400px;
    }
    
    .chatbot {
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }
    
    .chatbot-toggle i {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Global Light Effects */
.light-trail {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: trailMove 3s ease-out forwards;
    z-index: 1000;
}

@keyframes trailMove {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(1.5) rotate(360deg);
    }
}

/* Enhanced Card Hover Effects */
.card-light-effect {
    position: relative;
    overflow: hidden;
}

.card-light-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.card-light-effect:hover::before {
    left: 100%;
}

/* Floating Elements */
.floating-element {
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Light Beam Effects */
.light-beam {
    position: relative;
}

.light-beam::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.light-beam:hover::after {
    transform: translateX(100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .nav-container {
        max-width: 95%;
        padding: 0 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .brand-category {
        min-height: 250px;
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .product-items {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .product-item img {
        width: 70px;
        height: 100px;
    }

    .brand-list {
        gap: 0.5rem;
    }

    .brand-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
    }

    .container {
        padding: 0 15px;
    }

    .map-container iframe {
        height: 250px;
    }
    
    .map-label {
        top: 15px;
        left: 15px;
        padding: 12px 15px;
        max-width: 200px;
    }
    
    .map-label h3 {
        font-size: 1.1rem;
    }
    
    .map-label p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature {
        padding: 1.5rem;
        min-height: 180px;
    }

    .brand-category {
        padding: 1rem;
        min-height: 200px;
    }

    .brand-category h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .brand-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .brands-cta {
        padding: 2rem 1rem;
    }

    .brands-cta h3 {
        font-size: 1.5rem;
    }

    .offer-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .map-container iframe {
        height: 200px;
    }
    
    .map-label {
        top: 10px;
        left: 10px;
        padding: 10px 12px;
        max-width: 180px;
    }
    
    .map-label h3 {
        font-size: 1rem;
    }
    
    .map-label p {
        font-size: 0.75rem;
    }

    .whatsapp-section {
        padding: 2rem 1rem;
    }

    .whatsapp-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .brand-category {
        padding: 0.8rem;
        min-height: 180px;
    }

    .brand-category h3 {
        font-size: 1.1rem;
    }

    .brand-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .feature {
        padding: 1rem;
        min-height: 160px;
    }

    .offer-card,
    .testimonial-card {
        padding: 1rem;
    }

    .container {
        padding: 0 10px;
    }
}

/* Extra responsive utilities */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Scroll Animation Section */
.scroll-animation-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    min-height: 40vh;
}

.scroll-animation-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
    background: transparent;
}

.animation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
}

.animation-text p {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1.5rem;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-container.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
}

.fab-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #d4af37;
}

.fab-item.whatsapp:hover {
    background: #25D366;
    color: #ffffff;
}

.fab-item.call:hover {
    background: #007bff;
    color: #ffffff;
}

.fab-item.shop:hover {
    background: #d4af37;
    color: #ffffff;
}

/* Print styles */
/* Background Image Responsive Fixes */
@media (max-width: 1200px) {
    .background-image,
    .navbar-bg-image,
    .separator-image {
        object-position: center center;
    }
}

@media (max-width: 768px) {
    .section-background,
    .navbar-background,
    .separator-background {
        height: 100%;
        min-height: 100%;
    }
    
    .background-image,
    .navbar-bg-image,
    .separator-image {
        height: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .scroll-animation-section {
        min-height: 35vh;
        padding: 40px 0;
    }
    
    .animation-text h2 {
        font-size: 2rem;
    }
    
    .animation-text p {
        font-size: 1rem;
    }
    
    .separator-content h2 {
        font-size: 2.5rem;
    }
    
    .separator-content p {
        font-size: 1.1rem;
    }
    
    .separator {
        min-height: 50vh;
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .section-background,
    .navbar-background,
    .separator-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .background-image,
    .navbar-bg-image,
    .separator-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .scroll-animation-section {
        min-height: 30vh;
        padding: 30px 0;
    }
    
    .animation-text h2 {
        font-size: 1.8rem;
    }
    
    .animation-text p {
        font-size: 0.9rem;
    }
    
    .separator-content h2 {
        font-size: 2rem;
    }
    
    .separator-content p {
        font-size: 1rem;
    }
    
    .separator {
        min-height: 40vh;
        padding: 40px 0;
    }
    
    .fab-container {
        bottom: 15px;
        left: 15px;
    }
    
    .fab-main {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .fab-item {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .section-background,
    .navbar-background,
    .separator-background {
        min-height: 100vh;
        height: 100%;
    }
    
    .background-image,
    .navbar-bg-image,
    .separator-image {
        min-height: 100vh;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .about,
    .products,
    .brands,
    .testimonials,
    .newsletter,
    .contact {
        min-height: 100vh;
    }
}

@media print {
    .navbar,
    .fab-container,
    .hero-video,
    .particle-container {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title,
    .hero-subtitle {
        color: #000;
    }
    
    .brand-category,
    .offer-card,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}