/* ================================
   ReVampSleep Website Styles
   Dark Vampire Theme with Modern Design
================================ */

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

:root {
    /* Color Palette */
    --primary-dark: #0a0a0f;
    --secondary-dark: #1a1a2e;
    --accent-purple: #7b2cbf;
    --accent-red: #c9184a;
    --accent-gold: #ffd60a;
    --text-light: #f8f9fa;
    --text-gray: #adb5bd;
    --gradient-purple: linear-gradient(135deg, #5a189a 0%, #9d4edd 100%);
    --gradient-red: linear-gradient(135deg, #c9184a 0%, #ff006e 100%);
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(123, 44, 191, 0.2);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-light);
}

.logo i {
    color: var(--accent-purple);
    font-size: 1.8rem;
}

.logo-highlight {
    color: var(--accent-purple);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--accent-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav-btn {
    background: var(--gradient-purple);
    padding: 10px 24px !important;
    border-radius: 30px;
    color: var(--text-light) !important;
}

.cta-nav-btn::after {
    display: none;
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(201, 24, 74, 0.15) 0%, transparent 50%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 60px 70px, #fff, transparent),
        radial-gradient(1px 1px at 50px 50px, #ddd, transparent),
        radial-gradient(1px 1px at 130px 80px, #fff, transparent),
        radial-gradient(2px 2px at 90px 10px, #eee, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s infinite;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.moon {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #fff, #e0e0e0);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--accent-gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(123, 44, 191, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(123, 44, 191, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(123, 44, 191, 0.3);
}

.feature-badge i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}

.feature-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vampire-tape-mockup {
    width: 100%;
    max-width: 500px;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.product-image-hero {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.5);
    transition: var(--transition-smooth);
}

.product-image-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(123, 44, 191, 0.6);
}

.tape-strip {
    width: 200px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fang-design {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--accent-purple);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Product Preview Gallery */
.product-preview-section {
    padding: 80px 0;
    background: var(--secondary-dark);
}

.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.preview-card {
    background: rgba(123, 44, 191, 0.05);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.4);
}

.preview-card.featured {
    grid-column: 2;
    transform: scale(1.05);
}

.preview-card.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.preview-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.preview-caption {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    background: rgba(10, 10, 15, 0.8);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-purple);
    margin: 0 auto;
    border-radius: 2px;
}

/* Story Section */
.story-section {
    background: var(--secondary-dark);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.story-intro {
    font-size: 1.3rem !important;
    color: var(--text-light) !important;
    font-weight: 500;
}

.story-highlight {
    font-size: 1.2rem !important;
    color: var(--accent-purple) !important;
    font-weight: 600;
    font-style: italic;
    padding: 20px;
    background: rgba(123, 44, 191, 0.1);
    border-left: 4px solid var(--accent-purple);
    border-radius: 5px;
}

.story-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.story-icon-card {
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.story-icon-card:hover {
    transform: translateY(-5px);
    background: rgba(123, 44, 191, 0.2);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.story-icon-card i {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 15px;
}

.story-icon-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.story-icon-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Product Section */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image-container {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-red);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(201, 24, 74, 0.4);
}

.product-image-main {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.5);
    transition: var(--transition-smooth);
}

.product-image-main:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 70px rgba(123, 44, 191, 0.6);
}

.vampire-tape-product {
    background: var(--gradient-purple);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.4);
}

.tape-box {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(123, 44, 191, 0.3);
}

.tape-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tape-label i {
    font-size: 3rem;
    color: var(--accent-purple);
}

.tape-label span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.tape-fangs {
    font-size: 5rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(123, 44, 191, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(123, 44, 191, 0.2);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(123, 44, 191, 0.1);
    transform: translateX(10px);
    border-color: var(--accent-purple);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Science Section */
.science-section {
    background: var(--secondary-dark);
}

.science-explanation {
    max-width: 900px;
    margin: 0 auto 50px;
}

.science-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(123, 44, 191, 0.2);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.science-result {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: rgba(201, 24, 74, 0.1);
    border: 2px solid rgba(201, 24, 74, 0.3);
    border-radius: 15px;
}

.science-result p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.science-result strong {
    color: var(--accent-red);
}

/* How It Works Section */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: var(--gradient-purple);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(123, 44, 191, 0.5);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 20px 0;
}

.step-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-purple);
}

/* Audience Section */
.audience-section {
    background: var(--secondary-dark);
}

.audience-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.audience-checklist {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    background: rgba(123, 44, 191, 0.2);
    transform: translateX(10px);
}

.checklist-item i {
    font-size: 1.8rem;
    color: var(--accent-purple);
}

.checklist-item span {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Safety Section */
.safety-warning {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    background: rgba(201, 24, 74, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 15px;
    padding: 40px;
}

.warning-icon {
    flex-shrink: 0;
}

.warning-icon i {
    font-size: 4rem;
    color: var(--accent-red);
}

.warning-content h3 {
    font-size: 1.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.warning-list {
    list-style: none;
    margin-bottom: 25px;
}

.warning-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.safety-disclaimer {
    background: rgba(123, 44, 191, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-purple);
    color: var(--text-light);
    line-height: 1.8;
}

/* Community Section */
.community-section {
    background: var(--secondary-dark);
}

.community-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.social-cta {
    text-align: center;
    margin-bottom: 60px;
}

.social-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hashtag-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.hashtag, .handle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    font-family: var(--font-display);
}

.social-subtext {
    color: var(--text-gray);
    font-style: italic;
}

.tagline-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tagline-card {
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.tagline-card:hover {
    background: rgba(123, 44, 191, 0.2);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.tagline-card i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    color: var(--accent-purple);
    opacity: 0.5;
}

.tagline-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    padding-left: 40px;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--gradient-purple);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.cta-feature i {
    font-size: 1.5rem;
}

.cta-feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(123, 44, 191, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--accent-purple);
}

.footer-tagline {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(123, 44, 191, 0.2);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 44, 191, 0.2);
}

.footer-bottom p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-emoji {
    font-size: 1.2rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-purple);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.5);
}

/* Contact Form Modal */
.modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10000 !important;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex !important;
}

.modal-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative !important;
    background: var(--secondary-dark);
    border: 2px solid var(--accent-purple);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.6);
    animation: modalSlideIn 0.4s ease;
    z-index: 10001 !important;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(123, 44, 191, 0.2);
    border: 1px solid var(--accent-purple);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--accent-purple);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.modal-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-form {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.form-success p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(123, 44, 191, 0.15);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.form-note i {
    margin-right: 5px;
    color: var(--accent-purple);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .story-content,
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .product-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .preview-card.featured {
        grid-column: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-dark);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tagline-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .safety-warning {
        flex-direction: column;
        padding: 25px;
    }
    
    .story-icon-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}
