/* BlitzarRack Custom Styles - Cyber Theme */

/* Header & Navigation */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    box-shadow: 0 2px 20px rgba(0, 255, 65, 0.1);
}

.main-navigation {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
}

.logo-text {
    color: #ffffff !important;
}

.logo-accent {
    color: #00ff41 !important;
    text-shadow: 0 0 15px rgba(0, 255, 65, 1),
                 0 0 30px rgba(0, 255, 65, 0.7),
                 0 0 40px rgba(0, 255, 65, 0.5);
    transition: text-shadow 0.3s ease;
}

.site-title:hover .logo-accent {
    animation: logo-glow 1.5s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 65, 0.6),
                     0 0 20px rgba(0, 255, 65, 0.4),
                     0 0 30px rgba(0, 255, 65, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 65, 1),
                     0 0 35px rgba(0, 255, 65, 0.8),
                     0 0 50px rgba(0, 255, 65, 0.6);
    }
}

.nav-menu-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #b0b0b0 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: #ffffff !important;
    background: rgba(0, 255, 65, 0.15) !important;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* Special styling for Shop dropdown */
.nav-menu li.menu-item-has-children > a:hover {
    border: 2px solid #00ff41 !important;
    padding: calc(0.5rem - 2px) calc(1rem - 2px);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5) !important;
}

/* Dropdown Menu Styles */
.nav-menu li.menu-item-has-children {
    position: relative;
}

.nav-menu li.menu-item-has-children > a::after {
    content: " ▼";
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 2px solid rgba(0, 255, 65, 0.4);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3), 0 0 40px rgba(0, 255, 65, 0.15);
    z-index: 1000;
    margin-top: 0.5rem;
    display: block;
}

.nav-menu li.menu-item-has-children:hover .sub-menu,
.nav-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu li a {
    padding: 0.75rem 1.5rem;
    color: #b0b0b0 !important;
    border-radius: 0;
    white-space: nowrap;
}

.nav-menu .sub-menu li a:hover {
    background: rgba(0, 255, 65, 0.2) !important;
    color: #ffffff !important;
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: #ffffff !important;
}

.cart-link svg {
    stroke: #ffffff !important;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #39ff14 !important;
    color: #000000 !important;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.03) 2px, rgba(0, 255, 65, 0.03) 4px);
    position: relative;
    overflow: hidden;
}

.site-main {
    overflow-x: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: transparent !important;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(57, 255, 20, 0.05) 100%);
    border: 2px solid rgba(0, 255, 65, 0.4);
    box-shadow: inset 0 0 60px rgba(0, 255, 65, 0.1), 0 0 40px rgba(0, 255, 65, 0.15);
}

.floating-module {
    position: absolute;
    background: rgba(0, 255, 65, 0.03);
    border: 2px solid rgba(0, 255, 65, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.1);
    animation: float 6s ease-in-out infinite;
}

.module-1 {
    width: 150px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.module-2 {
    width: 120px;
    height: 180px;
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.module-3 {
    width: 100px;
    height: 150px;
    bottom: 15%;
    left: 40%;
    animation-delay: 4s;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-category {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff41 0%, #39ff14 100%) !important;
    color: #000000 !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.4);
    border: 1px solid #00ff41 !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 65, 0.6), 0 0 30px rgba(0, 255, 65, 0.4);
    color: #000000 !important;
}

.btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #00ff41 !important;
}

.btn-secondary:hover {
    background: rgba(0, 255, 65, 0.15) !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-category {
    background: rgba(0, 255, 65, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.btn-category:hover {
    background: var(--primary-color);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    font-weight: 700;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.feature-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(0, 255, 65, 0.02);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3), 0 0 40px rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.05);
}

.feature-icon {
    color: #00ff41 !important;
    margin-bottom: 1rem;
}

.feature-icon svg {
    color: #00ff41 !important;
    stroke: #00ff41 !important;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

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

/* Categories Section */
.categories-section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

.category-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(0, 255, 65, 0.02);
    border: 2px solid rgba(0, 255, 65, 0.25);
    transition: all 0.3s ease;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.3), 0 0 50px rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.05);
}

.category-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.category-content p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.category-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.category-features li {
    padding: 0.5rem 0;
    color: var(--gray-text);
    position: relative;
    padding-left: 1.5rem;
}

.category-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.category-image {
    height: 250px;
    border-radius: 12px;
    background: rgba(0, 255, 65, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 65, 0.3);
    box-shadow: inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.category-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Featured Products */
.featured-products-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(57, 255, 20, 0.08) 100%),
                repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 255, 65, 0.02) 100px, rgba(0, 255, 65, 0.02) 200px);
    border-top: 2px solid rgba(0, 255, 65, 0.3);
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
    position: relative;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.etsy-badge {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

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

.testimonial-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(0, 255, 65, 0.02);
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.etsy-verified {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(0, 255, 65, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    font-weight: 500;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.25rem;
}

.testimonial-footer {
    margin-top: 1rem;
}

.testimonial-source {
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-photo {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 65, 0.3);
}

.testimonial-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid rgba(0, 255, 65, 0.3);
    padding: 4rem 0 2rem;
    box-shadow: 0 -5px 30px rgba(0, 255, 65, 0.1);
}

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.footer-column p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border-radius: 6px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

.newsletter-form button {
    padding: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    color: var(--gray-text);
}

.footer-bottom a {
    color: var(--gray-text);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 400px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-container {
        display: none;
    }

    .nav-menu-container.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        border-top: 2px solid rgba(0, 255, 65, 0.4);
        box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
    }

    .nav-menu {
        flex-direction: column;
        padding: 1rem;
    }

    /* Mobile Dropdown Styles */
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-left: 2px solid rgba(0, 255, 65, 0.4);
        margin-left: 1rem;
        margin-top: 0.5rem;
        padding-left: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu li.menu-item-has-children.active .sub-menu {
        max-height: 300px;
    }

    .nav-menu .sub-menu li a {
        padding: 0.5rem 1rem;
    }

    .nav-menu .sub-menu li a:hover {
        padding-left: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .category-card {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Cyber-themed Enhancements */
body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.03) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 255, 65, 0.03) 3px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

.section-header h2 {
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.hero-title {
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.gradient-text {
    animation: none;
}

@keyframes neon-pulse {
    from {
        text-shadow: 0 0 10px rgba(0, 255, 65, 0.5),
                     0 0 20px rgba(0, 255, 65, 0.3),
                     0 0 30px rgba(0, 255, 65, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 255, 65, 0.8),
                     0 0 30px rgba(0, 255, 65, 0.5),
                     0 0 40px rgba(0, 255, 65, 0.3);
    }
}

/* Scan animation removed to prevent horizontal scroll */

.category-content h3::before {
    content: "▶ ";
    color: var(--cyber-green);
    margin-right: 0.5rem;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0.3;
    }
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--cyber-green) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.stat-number {
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.cart-count {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
    }
}

/* Cyber grid background effect */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

/* Terminal-style text cursor effect - removed to prevent potential overflow */

/* About Page Styles */
.about-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
}

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

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.about-text p strong {
    color: var(--light-text);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 65, 0.4);
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.3), inset 0 0 30px rgba(0, 255, 65, 0.1);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 255, 65, 0.5), inset 0 0 40px rgba(0, 255, 65, 0.15);
}

.about-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 255, 65, 0.02);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 16px;
    margin-top: 3rem;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
}

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

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.contact-info {
    background: rgba(0, 255, 65, 0.02);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

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

.info-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.contact-info .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-info .social-links a {
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.contact-info .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.contact-form-wrapper {
    background: rgba(0, 255, 65, 0.02);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--light-text);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

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

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.success-message {
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff4444;
    color: #ff6666;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Returns Page Styles */
.returns-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
}

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

.returns-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.returns-content {
    max-width: 900px;
    margin: 0 auto;
}

.returns-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.02);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
}

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-section p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.option-card {
    padding: 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
}

.option-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-icon svg {
    stroke: var(--primary-color);
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.option-card p {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.note-box {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.note-box strong {
    color: var(--primary-color);
}

.policy-steps {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: none;
    counter-reset: step-counter;
}

.policy-steps li {
    counter-increment: step-counter;
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    padding-left: 2.5rem;
}

.policy-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    color: #000000;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.policy-steps li strong {
    color: var(--light-text);
}

.contact-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(57, 255, 20, 0.05) 100%);
}

.contact-box h2 {
    text-align: center;
}

.contact-box .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Returns Page Responsive */
@media (max-width: 768px) {
    .returns-section {
        padding: 4rem 0;
    }

    .returns-header h1 {
        font-size: 2rem;
    }

    .returns-header p {
        font-size: 1rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .contact-box .cta-buttons {
        flex-direction: column;
    }

    .policy-steps li {
        font-size: 1rem;
    }
}

/* Returns Form Styles */
.returns-form-section {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(57, 255, 20, 0.05) 100%);
}

.returns-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.returns-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.returns-form label {
    font-weight: 600;
    color: var(--light-text);
    font-size: 1rem;
}

.returns-form input[type="text"],
.returns-form input[type="email"],
.returns-form select,
.returns-form textarea {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.8);
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.returns-form select option {
    background: rgba(0, 0, 0, 0.95);
    color: var(--light-text);
    padding: 0.5rem;
}

.returns-form select option:hover,
.returns-form select option:checked {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.2) 0%, rgba(57, 255, 20, 0.2) 100%);
    color: var(--primary-color);
}

.returns-form input:focus,
.returns-form select:focus,
.returns-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    background: rgba(0, 0, 0, 0.9);
}

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

.field-description {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-top: -0.25rem;
    margin-bottom: 0.5rem;
}

.file-upload-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-input {
    display: none;
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-label:hover {
    background: rgba(0, 255, 65, 0.2);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.file-label svg {
    stroke: var(--primary-color);
}

.file-name {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-style: italic;
}

.file-name.has-file {
    color: var(--primary-color);
    font-style: normal;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .file-input-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .file-label {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 6rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
}

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

.faq-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff41 0%, #39ff14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 8px;
    background: rgba(0, 255, 65, 0.02);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(0, 255, 65, 0.5);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, rgba(57, 255, 20, 0.05) 100%);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 16px;
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

/* FAQ Page Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta h3 {
        font-size: 1.6rem;
    }
}
