/* ===== CSS Variables ===== */
:root {
    /* Bee-inspired color palette */
    --primary-yellow: #FFD700;
    --primary-amber: #FFA500;
    --primary-honey: #F4A020;
    --accent-glow: rgba(255, 215, 0, 0.3);

    /* Dark theme */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-section: #0f0f0f;

    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Gradients */
    --gradient-bee: linear-gradient(135deg, var(--primary-yellow), var(--primary-amber));
    --gradient-glow: radial-gradient(circle at center, var(--accent-glow), transparent 70%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-bee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bee-highlight {
    background: var(--gradient-bee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 165, 0, 0.5));
    animation: beeGlow 2s ease-in-out infinite;
}

@keyframes beeGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 165, 0, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) drop-shadow(0 0 30px rgba(255, 165, 0, 0.8));
    }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-bee);
    color: var(--bg-dark);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-medium);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-medium);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--bg-dark);
}

.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    border-color: var(--text-muted);
    color: var(--text-muted);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Centered Navigation Variant */
.nav-centered .nav-container {
    justify-content: center;
}

.nav-centered .nav-links {
    justify-content: center;
    gap: 60px;
}

.logo img {
    height: 50px;
    border-radius: 50%;
    transition: var(--transition-medium);
}

.logo:hover img {
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Mobile-only logo */
.mobile-logo {
    display: none;
}

.mobile-logo img {
    height: 40px;
    border-radius: 50%;
}

/* Hidden on desktop - shown in mobile menu */
.mobile-menu-brand {
    display: none;
}

.menu-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li {
    animation: navFadeIn 0.6s ease forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes navFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 4px;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-bee);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link:hover {
    color: var(--text-primary);
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.nav-link:hover::before {
    width: 100%;
}

/* Legacy support for old nav-links a */
.nav-links a:not(.nav-link) {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.nav-link)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-bee);
    transition: var(--transition-medium);
}

.nav-links a:not(.nav-link):hover {
    color: var(--text-primary);
}

.nav-links a:not(.nav-link):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    max-width: var(--container-width);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 16px;
    text-align: left;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 24px;
    font-weight: 500;
}

.description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Hero Logo */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 200, 0, 0.5) 25%, rgba(255, 165, 0, 0.25) 45%, transparent 65%);
    filter: blur(60px);
    animation: logoGlow 4s ease-in-out infinite;
    z-index: 0;
}

.hero-logo {
    /* Gold to Amber gradient logo using mask */
    width: 450px;
    height: 450px;
    /* Need explicit height for div */
    position: relative;
    z-index: 1;

    /* Honey Gradient: bright center, dark edges - bee-like warmth */
    background: radial-gradient(ellipse at center,
            #FFD700 20%,
            #E6A800 45%,
            #CC8800 65%,
            #664400 100%);

    /* Use logo as mask - white parts show gradient, transparent hides */
    -webkit-mask-image: url('images/hero-logo.png');
    mask-image: url('images/hero-logo.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;

    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@keyframes logoGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary-yellow);
    border-bottom: 2px solid var(--primary-yellow);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===== Products Section ===== */
.products {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-status.available {
    background: rgba(50, 205, 50, 0.2);
    color: #32CD32;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

.product-status.coming-soon {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.product-image {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
}

.product-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-yellow);
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.product-subtitle {
    color: var(--primary-yellow);
    font-weight: 500;
    margin-bottom: 16px;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-features {
    list-style: none;
    margin-bottom: 24px;
}

.product-features li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-features li::before {
    content: '⬡';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

/* Product Prices */
.product-price {
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
}

.price-current {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 700;
}

.price-na {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

/* Product Card Link Wrapper */
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-link .product-card {
    cursor: pointer;
}

.product-card-link:hover .btn-secondary {
    background: var(--primary-yellow);
    color: var(--bg-dark);
}

/* Mystery/Coming Soon Card Styles */
.product-card-blur {
    position: relative;
    overflow: hidden;
}

.product-card-blur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.05) 0%,
            rgba(255, 165, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
}

.mystery-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
    border: 2px dashed var(--primary-yellow);
    animation: mysteryPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystery-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes mysteryPulse {

    0%,
    100% {
        border-color: var(--primary-yellow);
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }

    50% {
        border-color: var(--secondary-amber);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

.blurred-text {
    filter: blur(0);
    color: var(--text-muted);
    font-style: italic;
}

.blur-description {
    filter: blur(4px);
    user-select: none;
    color: var(--text-muted);
}

.coming-soon-teaser {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin: 16px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.teaser-icon {
    font-size: 1.5rem;
    animation: beeWiggle 1s ease-in-out infinite;
}

@keyframes beeWiggle {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

/* Progress List */
.progress-list {
    display: grid;
    gap: 16px;
}

.progress-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--text-muted);
}

.progress-item.done {
    border-left-color: #32CD32;
}

.progress-item.in-progress {
    border-left-color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.05);
}

.progress-item.pending {
    opacity: 0.6;
}

.progress-status {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.progress-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.progress-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-details h3 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 400;
}

.contact-details a {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary-yellow);
}

.contact-details a {
    display: block;
}

.email-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
}

.contact-note {
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--primary-yellow);
    border-radius: 0 8px 8px 0;
}

.contact-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-cta {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.bee-decoration {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: beeFly 3s ease-in-out infinite;
}

@keyframes beeFly {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(-5deg);
    }

    75% {
        transform: translateY(5px) rotate(5deg);
    }
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 3px;
    margin: 20px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 3px;
    min-height: 40px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-yellow);
}

.modal-header {
    padding: 32px 32px 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--primary-yellow);
    font-size: 0.95rem;
}

/* ===== Contact Form ===== */
.contact-form {
    padding: 24px 32px 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.form-submit:hover {
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 0;
        margin-bottom: 20px;
    }

    .hero-logo {
        width: 280px;
        height: 280px;
        /* Gradient maintained on mobile */
    }

    .hero-logo-container::before {
        width: 120%;
        height: 120%;
        filter: blur(20px);
        /* Reduced blur for performance */
        opacity: 0.6;
    }

    .description {
        margin: 0 auto 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        text-align: center;
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .contact-cta h3 {
        font-size: 1.3rem;
    }

    /* Modal Mobile */
    .modal-content {
        max-width: 95%;
        margin: 20px;
        max-height: 85vh;
    }

    /* Hide navbar background on mobile - only floating hamburger */
    .navbar {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
    }

    .navbar::before {
        display: none;
    }

    .nav-container {
        justify-content: flex-end;
    }

    .nav-centered .nav-container {
        justify-content: flex-end;
    }

    /* Hide all logos on mobile - navbar is transparent */
    .mobile-logo,
    .logo,
    .logo-text {
        display: none;
    }

    /* Full-screen mobile menu - EPIC EDITION */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        /* Gradient dark background with golden accent */
        background:
            radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 40%),
            linear-gradient(180deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1000;
        padding: 60px 20px;
        overflow: hidden;
    }

    /* Honeycomb pattern overlay */
    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
        background-size: 30px 30px;
        pointer-events: none;
    }

    /* Glowing orb effect */
    .nav-links::after {
        content: '';
        position: absolute;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 60%);
        filter: blur(60px);
        pointer-events: none;
        animation: menuGlow 4s ease-in-out infinite;
    }

    @keyframes menuGlow {

        0%,
        100% {
            opacity: 0.5;
            transform: translateX(-50%) scale(1);
        }

        50% {
            opacity: 0.8;
            transform: translateX(-50%) scale(1.2);
        }
    }

    .nav-links.active {
        display: flex !important;
        animation: menuFadeIn 0.4s ease-out;
    }

    @keyframes menuFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Mobile menu brand - hidden by default, shown when menu open */
    .mobile-menu-brand {
        display: none;
        position: fixed;
        top: 18px;
        left: 20px;
        z-index: 1001;
    }

    /* Show brand when menu is open (via JS-added class) */
    .nav-container.menu-open .mobile-menu-brand {
        display: block;
    }

    .menu-logo-text {
        font-size: 1.4rem;
        text-decoration: none;
        display: inline-block;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        list-style: none;
        position: relative;
        z-index: 1;
    }

    .nav-links.active li {
        animation: menuItemSlide 0.5s ease-out forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes menuItemSlide {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a,
    .nav-link {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--text-primary);
        padding: 25px 40px;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-links a::before,
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--gradient-bee);
        border-radius: 2px;
        transform: translateX(-50%);
        transition: width 0.3s ease;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .nav-links a:hover,
    .nav-link:hover {
        color: var(--primary-yellow);
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
        transform: scale(1.05);
    }

    .nav-links a:hover::before,
    .nav-link:hover::before {
        width: 60%;
    }

    /* Show hamburger button */
    .mobile-menu-btn {
        display: flex !important;
        z-index: 1001;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .hero-logo {
        width: 280px;
    }
}