* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #2D1B69 !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(45, 27, 105, 0.3);
    transition: none !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 400;
    display: block;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.cta-button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: white;
    color: #2D1B69;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a1a 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.hero-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* 3D Products */
.hero-3d {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-3d {
    position: absolute;
    width: 120px;
    height: 200px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.spray-bottle {
    background: linear-gradient(145deg, #e0f2fe 0%, #b3e5fc 100%);
    animation: float-1 6s ease-in-out infinite;
    top: 10%;
    left: 20%;
}

.spray-bottle::before {
    content: '🧴';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.soap-dispenser {
    background: linear-gradient(145deg, #f3e5f5 0%, #e1bee7 100%);
    animation: float-2 6s ease-in-out infinite;
    top: 30%;
    right: 15%;
    width: 140px;
    height: 180px;
}

.soap-dispenser::before {
    content: '🧼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.cleaning-brush {
    background: linear-gradient(145deg, #e8f5e8 0%, #c8e6c9 100%);
    animation: float-3 6s ease-in-out infinite;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 160px;
}

.cleaning-brush::before {
    content: '🧽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
}

.product-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.product-3d:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(139, 92, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.2));
    border-radius: 50%;
    animation: bubble-float 8s ease-in-out infinite;
}

.bubble-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 60%;
    right: 20%;
    animation-delay: -2s;
    width: 15px;
    height: 15px;
}

.bubble-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: -4s;
    width: 25px;
    height: 25px;
}

.bubble-4 {
    top: 40%;
    right: 40%;
    animation-delay: -6s;
    width: 12px;
    height: 12px;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkle 4s ease-in-out infinite;
}

.sparkle-1 {
    top: 15%;
    right: 25%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: -1.5s;
}

.sparkle-3 {
    top: 50%;
    left: 15%;
    animation-delay: -3s;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2D1B69;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-contact p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

/* Animations */
@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(-2deg); }
    66% { transform: translateY(-25px) rotate(1deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateX(-50%) translateY(0px) rotate(0deg); }
    33% { transform: translateX(-50%) translateY(-18px) rotate(1deg); }
    66% { transform: translateX(-50%) translateY(-8px) rotate(-2deg); }
}

@keyframes bubble-float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Introduction Section */
.introduction-section {
    padding: 8rem 0;
    background: white;
    overflow: hidden;
}

.intro-header {
    text-align: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.intro-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.intro-header p {
    font-size: 1.2rem;
    color: #666;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-card-wrapper {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.intro-card-wrapper:nth-child(1) { animation-delay: 0.4s; }
.intro-card-wrapper:nth-child(2) { animation-delay: 0.6s; }
.intro-card-wrapper:nth-child(3) { animation-delay: 0.8s; }

.intro-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    padding: 3rem;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.intro-card:nth-child(2) {
    grid-template-columns: 1fr 1fr;
}

.intro-card:nth-child(2) .intro-content {
    order: 1;
}

.intro-card:nth-child(2) .intro-image-stack {
    order: 2;
}

.intro-image-stack {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-image {
    width: 280px;
    height: 200px;
    z-index: 2;
}

.overlay-image {
    width: 200px;
    height: 140px;
    top: -20px;
    right: -30px;
    z-index: 3;
    transform: rotate(5deg);
}

.intro-card:hover .main-image {
    transform: rotate(-2deg) scale(1.05);
}

.intro-card:hover .overlay-image {
    transform: rotate(8deg) scale(1.1);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    text-align: left;
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.intro-icon i {
    font-size: 1.5rem;
    color: white;
}

.intro-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.intro-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.products-header p {
    font-size: 1.2rem;
    color: #666;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.product-box:hover::before {
    left: 100%;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.product-box:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.product-box p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.product-box:hover .product-arrow {
    opacity: 1;
    transform: translateX(0);
}

.product-arrow i {
    color: white;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: white;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.benefits-header p {
    font-size: 1.2rem;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(180deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Products Showcase */
.products-showcase {
    padding: 6rem 0;
    background: white;
}

.product-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* About Content */
.about-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: #8B5CF6;
    font-weight: 600;
}

.contact-item i {
    font-size: 1.5rem;
}

/* FAQ Styles */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #8B5CF6;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* About Page Styles */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2D1B69 0%, #4C1D95 50%, #6B21A8 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.about-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.about-hero .hero-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-3d-about {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shape {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 20%;
    animation: float-shape-1 8s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 30%;
    animation: float-shape-2 6s ease-in-out infinite;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 40%;
    animation: float-shape-3 7s ease-in-out infinite;
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 10%;
    animation: float-shape-4 5s ease-in-out infinite;
}

/* Story Section */
.story-section {
    padding: 8rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.story-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-card {
    background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.values-header p {
    font-size: 1.2rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.value-3d {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mission-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    perspective: 1000px;
}

.rotating-element {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 10s linear infinite;
}

.element-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.front { transform: rotateY(0deg) translateZ(100px); }
.back { transform: rotateY(180deg) translateZ(100px); }
.left { transform: rotateY(-90deg) translateZ(100px); }
.right { transform: rotateY(90deg) translateZ(100px); }

.mission-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.team-avatar {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.avatar-3d {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.team-card:hover .avatar-3d {
    transform: rotateY(15deg) rotateX(15deg);
}

.avatar-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.team-card p {
    color: #8B5CF6;
    font-weight: 500;
    margin-bottom: 2rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-social i:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Animations */
@keyframes float-shape-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes float-shape-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-180deg); }
}

@keyframes float-shape-3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(90deg); }
}

@keyframes float-shape-4 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-90deg); }
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    25% { transform: rotateX(90deg) rotateY(90deg); }
    50% { transform: rotateX(180deg) rotateY(180deg); }
    75% { transform: rotateX(270deg) rotateY(270deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.9) 0%, rgba(76, 29, 149, 0.8) 50%, rgba(107, 33, 168, 0.7) 100%),
                linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.contact-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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.contact-hero .hero-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-3d-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    perspective: 1000px;
}

.picture-frame {
    position: relative;
    width: 450px;
    height: 350px;
    animation: frameFloat 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards, frameFloat 6s ease-in-out 1.5s infinite;
}

.frame-border {
    width: 100%;
    height: 100%;
    border: 12px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
}

.frame-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8B5CF6, #A855F7, #C084FC, #8B5CF6);
    border-radius: 34px;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

.frame-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
    filter: brightness(1.1) contrast(1.05);
}

.picture-frame:hover .frame-border {
    transform: rotateY(15deg) rotateX(8deg) scale(1.05);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 20px 40px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.picture-frame:hover .frame-border img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
}

.frame-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.4), rgba(168, 85, 247, 0.4), rgba(192, 132, 252, 0.4));
    border-radius: 40px;
    z-index: -2;
    animation: glowPulse 4s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes frameFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Contact Methods */
.contact-methods {
    padding: 8rem 0;
    background: white;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.method-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.method-card:hover::before {
    left: 100%;
}

.method-3d {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.method-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 
        0 15px 30px rgba(139, 92, 246, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.bento-card:hover .method-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bento-card:hover .method-icon::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.method-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.method-action {
    margin-top: 2rem;
}

.method-action a {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.method-action a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.method-action span {
    color: #8B5CF6;
    font-weight: 600;
}

/* Contact Form */
.contact-form-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
    border: none;
    opacity: 0;
    transform: translateY(50px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.form-submit {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Social Media Section */
.social-section {
    padding: 8rem 0;
    background: white;
}

.social-header {
    text-align: center;
    margin-bottom: 4rem;
}

.social-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.social-header p {
    font-size: 1.2rem;
    color: #666;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.social-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.social-3d {
    perspective: 1000px;
    margin-bottom: 2rem;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.instagram .social-icon {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.facebook .social-icon {
    background: linear-gradient(135deg, #1877F2 0%, #42A5F5 100%);
}

.linkedin .social-icon {
    background: linear-gradient(135deg, #0A66C2 0%, #1976D2 100%);
}

.youtube .social-icon {
    background: linear-gradient(135deg, #FF0000 0%, #FF4444 100%);
}

.social-card:hover .social-icon {
    transform: rotateY(360deg) scale(1.1);
}

.social-icon i {
    font-size: 2rem;
    color: white;
}

.social-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.social-card p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-stats {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.social-stats span {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 1.1rem;
}

.social-link {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.map-header p {
    font-size: 1.2rem;
    color: #666;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(139, 92, 246, 0.3);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.map-icon i {
    font-size: 2rem;
    color: white;
}

.map-placeholder p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.map-load-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-load-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Animations */
@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    25% { transform: rotateX(90deg) rotateY(90deg); }
    50% { transform: rotateX(180deg) rotateY(180deg); }
    75% { transform: rotateX(270deg) rotateY(270deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Bento Grid Contact Styles */
.bento-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.bento-card:hover::before {
    left: 100%;
}

.bento-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(139, 92, 246, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
}

.bento-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.bento-input {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.bento-input:focus {
    outline: none;
    background: white;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.bento-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem auto 0;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.bento-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.picture-frame {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Products Page Styles */
.products-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(76, 29, 149, 0.7) 50%, rgba(107, 33, 168, 0.6) 100%),
        url('https://images.unsplash.com/photo-1563453392212-326f5e854473?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.products-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.products-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.products-grid-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    background: linear-gradient(135deg, #333 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-showcase-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.product-3d-container {
    perspective: 1200px;
    height: auto;
    min-height: 400px;
}

.product-3d-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: white;
    border-radius: 32px;
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.product-showcase-item:nth-child(even) .product-3d-card {
    grid-template-columns: 1fr 400px;
}

.product-showcase-item:nth-child(even) .product-visual {
    order: 2;
}

.product-showcase-item:nth-child(even) .product-content {
    order: 1;
}

.product-showcase-item:hover .product-3d-card {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.product-visual {
    background: linear-gradient(135deg, #f8f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    min-height: 400px;
}

.product-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.product-showcase-item:hover .product-visual::before {
    left: 100%;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    max-height: 300px;
}

.product-showcase-item:hover .product-image {
    transform: scale(1.02) rotate(1deg);
}

.product-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 4rem;
    min-height: 400px;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
    z-index: 3;
}

.product-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem;
    color: #333;
    line-height: 1.2;
}

.product-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.1);
}

.feature-item i {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.6rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
}

.product-order-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1.2rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.product-order-btn::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: left 0.6s ease;
}

.product-order-btn:hover::before {
    left: 100%;
}

.product-order-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.product-order-btn i {
    transition: transform 0.3s ease;
}

.product-order-btn:hover i {
    transform: translateX(5px);
}

.why-choose-us {
    padding: 8rem 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
}

.benefit-item i {
    font-size: 3.5rem;
    color: #8B5CF6;
    margin-bottom: 2rem;
    display: block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    background: linear-gradient(135deg, #333 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design for Products */
@media (max-width: 1200px) {
    .product-3d-card {
        grid-template-columns: 1fr !important;
        min-height: 500px;
    }
    
    .product-showcase-item:nth-child(even) .product-visual {
        order: 0;
    }
    
    .product-showcase-item:nth-child(even) .product-content {
        order: 0;
    }
    
    .product-visual {
        min-height: 250px;
    }
    
    .product-content {
        padding: 2rem;
        padding-top: 3rem;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .product-3d-container {
        height: auto;
    }
    
    .product-content {
        padding: 1.5rem;
        padding-top: 2.5rem;
        min-height: auto;
    }
    
    .product-content h3 {
        font-size: 1.2rem;
    }
    
    .product-content p {
        font-size: 0.9rem;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment Page Styles */
.payment-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(76, 29, 149, 0.7) 50%, rgba(107, 33, 168, 0.6) 100%),
        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23payment-dots)"/></svg>');
    opacity: 0.3;
}

.payment-hero .container {
    position: relative;
    z-index: 2;
}

.payment-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.payment-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.payment-options {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.payment-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-tab-headers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-tab-header {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.payment-tab-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.payment-tab-header:hover::before {
    left: 100%;
}

.payment-tab-header:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.payment-tab-header.active {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.tab-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.payment-tab-header:hover .tab-icon {
    transform: scale(1.1) rotate(5deg);
}

.payment-tab-header.active .tab-icon {
    transform: scale(1.05);
}

.tab-icon i {
    font-size: 1.8rem;
    color: white;
}

.payment-tab-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.payment-tab-header p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.payment-tab-contents {
    position: relative;
}

.payment-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.payment-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.payment-details {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.payment-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.payment-details > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.detail-item.full-width {
    flex-direction: column;
    align-items: flex-start;
}

.label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.value {
    font-weight: 500;
    color: #8B5CF6;
    font-family: 'Courier New', monospace;
    background: rgba(139, 92, 246, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.info-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.payment-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    width: 100%;
}

.payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.payment-security {
    padding: 6rem 0;
    background: white;
}

.security-content {
    text-align: center;
}

.security-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.12);
}

.security-item i {
    font-size: 2.5rem;
    color: #8B5CF6;
    margin-bottom: 1.5rem;
    display: block;
}

.security-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.security-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Payment */
@media (max-width: 768px) {
    .payment-hero h1 {
        font-size: 2.5rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-card {
        padding: 2rem;
    }
    
    .payment-details {
        padding: 1.5rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .security-content h2 {
        font-size: 2rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.faq-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(45, 27, 105, 0.8) 0%, rgba(76, 29, 149, 0.7) 50%, rgba(107, 33, 168, 0.6) 100%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: 1;
}

.faq-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-dots)"/></svg>');
    opacity: 0.3;
}

.faq-hero .container {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.category-tab {
    background: white;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #666;
}

.category-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.12);
}

.category-tab.active {
    border-color: #8B5CF6;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

.category-tab i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.category-tab:hover i {
    transform: scale(1.1);
}

.faq-category {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.faq-category.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.faq-category:first-child {
    display: block;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.02);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-question i {
    color: #8B5CF6;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: #666;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-contact {
    padding: 6rem 0;
    background: white;
}

.contact-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.contact-cta p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-btn {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }
    
    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-tab {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-3d {
        height: 400px;
    }
    
    .product-3d {
        width: 80px;
        height: 140px;
    }
    
    .spray-bottle::before,
    .soap-dispenser::before {
        font-size: 2.5rem;
    }
    
    .cleaning-brush::before {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}