/* CSS Variables for Theme */
:root {
    --bg-dark: #0a0e17; /* Midnight Black with a slight blue tint */
    --bg-card: rgba(16, 24, 40, 0.6);
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --accent-blue: #00bfff; /* Deep Sky Blue */
    --accent-blue-glow: rgba(0, 191, 255, 0.4);
    --silver: #c0c0c0; /* Metallic Silver */
    --silver-glow: rgba(192, 192, 192, 0.2);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.mt-small { margin-top: 1rem; }
.mt-large { margin-top: 4rem; }
.w-100 { width: 100%; }

/* Typography & Colors */
.neon-text {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue-glow), 0 0 20px var(--accent-blue-glow);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary, .btn-primary-small, .btn-secondary, .btn-secondary-small {
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00bfff, #0077ff);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    background: var(--accent-blue);
    color: #fff;
}

.btn-primary-small:hover {
    background: #0099cc;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--silver);
}

.btn-secondary:hover {
    background: var(--silver-glow);
    color: #fff;
}

.btn-secondary-small {
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    font-size: 0.9rem;
}

.btn-secondary-small:hover {
    background: var(--accent-blue-glow);
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 191, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

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

.nav-links a:not(.btn-primary-small) {
    font-weight: 600;
    color: var(--text-primary);
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--accent-blue);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image {
    max-width: 100%;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glow-effect {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--accent-blue-glow);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

/* Innovation Section */
.innovation-section {
    padding: 5rem 0;
    position: relative;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.innovation-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.innovation-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.innovation-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(16, 24, 40, 0.8));
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--silver);
}

.category-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.highlight-card {
    border-top: 2px solid var(--accent-blue);
}

/* Butterflies Section */
.butterflies-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.butterfly-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.floating-image-slow {
    max-width: 100%;
    border-radius: 20px;
    animation: floatSlow 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.2);
}

.butterfly-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.butterfly-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Store Section */
.store-section {
    padding: 5rem 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: var(--silver);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: rgba(16, 24, 40, 0.4);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 15px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #05080c;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-headline { font-size: 3rem; }
    .hero-section { flex-direction: column; padding-top: 8rem; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { margin-top: 3rem; }
    .innovation-grid, .butterfly-layout, .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .butterfly-visual { order: 2; }
    .butterfly-content { order: 1; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile menu hidden for now, can be toggled via JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 23, 0.95);
        flex-direction: column;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger { display: flex; }
    .hero-headline { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    
    .social-floating {
        bottom: 20px;
        right: 20px;
    }
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    .floating-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Social Media Styles */
.social-contact-item {
    display: flex !important;
    gap: 1rem;
    margin-top: 1.5rem !important;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-link {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.instagram-link {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    background: #e1306c;
    color: #fff;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-icon {
    background: #25d366;
}

.whatsapp-icon:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.instagram-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.instagram-icon:hover {
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.6);
}
