/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff0000;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Promotional Popup */
.promo-popup {
    position: fixed;
    inset: 0;
    top: 0; left: 0; right: 0; bottom: 0; /* fallback for older browsers */
    width: 100vw; height: 100vh;          /* ensure full-screen on mobile */
    display: none;
    place-items: center;
    z-index: 10000;                        /* above all */
    pointer-events: none;                  /* disabled until active */
    /* Mobile-specific positioning */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* iOS Safari fixes */
    -webkit-overflow-scrolling: touch;
    /* Prevent iOS Safari from hiding fixed elements */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.promo-popup.active { 
    display: grid; 
    pointer-events: auto; 
}

.promo-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    /* Fallback for older mobile browsers */
    -webkit-backdrop-filter: blur(6px);
}

/* Extra safety to avoid any content leak when not active */
.promo-popup:not(.active) {
    visibility: hidden;
}

.promo-card {
    position: relative;
    width: min(92vw, 680px);
    max-width: 90vw;
    color: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(10,10,10,0.6), rgba(10,10,10,0.35)) padding-box,
                linear-gradient(135deg, rgba(255,0,0,0.8), rgba(255,0,0,0.2)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(255,0,0,0.12);
    overflow: hidden;
    /* Mobile optimization */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 16px;
    display: grid;
    place-items: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.promo-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }

.promo-tape {
    position: absolute;
    top: 22px;
    left: -20%;
    width: 140%;
    transform: rotate(-12deg);
    display: flex;
    gap: 16px;
    overflow: hidden;
    pointer-events: none;
}

.promo-tape span {
    flex: 0 0 auto;
    padding: 6px 16px;
    background: #ff0022;
    color: #000000;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(255, 0, 34, 0.35);
    animation: tape-scroll 8s linear infinite;
    will-change: transform; /* smoother animation on mobile */
}

@keyframes tape-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.promo-content {
    position: relative;
    text-align: center;
    padding-top: 2.5rem;
}

.promo-eyebrow {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.5rem;
}

.promo-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.promo-title strong { color: #ff3b3b; text-shadow: 0 8px 30px rgba(255,0,0,0.35); }

.promo-sub { color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; }

.promo-btn {
    display: inline-block;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    color: #111111;
    font-weight: 700;
    background: linear-gradient(135deg, #ff5a5a, #ff0000);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255, 0, 0, 0.45); }

/* Mobile Responsiveness for Popup */
@media (max-width: 768px) {
    .promo-popup {
        padding: 1rem;
        align-items: center;
        justify-content: center;
        /* Ensure proper mobile display */
        display: none;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    
    .promo-popup.active {
        display: grid;
    }
    
    .promo-card {
        width: 95vw;
        max-width: 95vw;
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px;
        margin: 0;
        /* Mobile optimization */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .promo-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.2;
    }
    
    .promo-sub {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .promo-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        /* Mobile touch optimization */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .promo-tape {
        top: 20px;
        gap: 14px;
    }
    
    .promo-tape span {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
    
    .promo-close {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
        font-size: 14px;
        /* Mobile touch optimization */
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .promo-popup {
        padding: 0.5rem;
    }
    
    .promo-card { 
        padding: 1.8rem 1.2rem 1.4rem; 
        border-radius: 14px; 
        width: 98vw;
        max-width: 98vw;
    }
    
    .promo-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 0.5rem;
    }
    
    .promo-sub {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .promo-btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .promo-tape { 
        top: 18px; 
        gap: 12px; 
    }
    
    .promo-tape span { 
        padding: 5px 12px; 
        font-size: 0.8rem; 
    }
    
    .promo-close {
        width: 28px;
        height: 28px;
        top: 6px;
        right: 6px;
        font-size: 12px;
    }
    
    .promo-content {
        padding-top: 2rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .promo-popup {
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .promo-card {
        max-height: 90vh;
        overflow-y: auto;
        padding: 1.5rem 1.2rem 1rem;
    }
    
    .promo-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        margin-bottom: 0.3rem;
    }
    
    .promo-sub {
        margin-bottom: 0.6rem;
    }
    
    .promo-btn {
        padding: 0.6rem 1rem;
    }
}

/* Additional mobile fixes for various devices */
@media (max-width: 320px) {
    .promo-card {
        width: 99vw;
        max-width: 99vw;
        padding: 1.5rem 1rem 1.2rem;
        border-radius: 12px;
    }
    
    .promo-title {
        font-size: 1.2rem;
    }
    
    .promo-sub {
        font-size: 0.85rem;
    }
    
    .promo-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Fix for devices with notches or unusual screen ratios */
@media (max-width: 375px) and (max-height: 667px) {
    .promo-popup {
        padding: 0.5rem;
    }
    
    .promo-card {
        padding: 1.8rem 1.2rem 1.4rem;
    }
}

/* Ensure popup works on all mobile browsers */
@supports (-webkit-touch-callout: none) {
    .promo-popup {
        /* iOS Safari specific fixes */
        position: -webkit-sticky;
        position: sticky;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

/* hero navigation removed per request */

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: slideInLeft 1.2s ease-out 0.3s both;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ff0000;
    animation: expandLine 1.5s ease-out 1.5s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc;
    animation: slideInRight 1.2s ease-out 0.6s both;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 1.2s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cccccc;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 3rem 0;
    background: #000000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid transparent;
    background: #0a0a0a;
    transform: translateZ(0);
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.product-card:hover {
    border-color: #ff0000;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.3),
        0 0 60px rgba(255, 0, 0, 0.2),
        0 0 90px rgba(255, 0, 0, 0.1);
    transform: translateY(-5px) scale(1.02);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: saturate(0.9) contrast(1.05);
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0,0,0,0.1));
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    gap: 0.35rem;
    z-index: 2;
}

.product-overlay h3 {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.product-overlay span {
    display: inline-block;
    font-size: 0.85rem;
    color: #ffffff;
    background: #ff0000;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.35s ease;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.product-card:hover img {
    transform: scale(1.08);
    filter: saturate(1) contrast(1.1);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover .product-overlay span {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 2rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 33.3333%;
    padding: 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.1);
}

.testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.testi-btn:hover { background: rgba(255,0,0,0.8); border-color: #ff0000; transform: translateY(-50%) scale(1.1); }
.testi-btn.prev { left: 10px; }
.testi-btn.next { right: 10px; }

.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 1.5rem; }
.testi-dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s ease; }
.testi-dot.active { background: #ff0000; width: 24px; }

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid #ff0000;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-content h4 {
    color: #ff0000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.testimonial-content span {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 1024px) { .testimonial-slide { flex-basis: 50%; } }
@media (max-width: 640px) { .testimonial-slide { flex-basis: 100%; } .testi-btn { display: none; } }

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.6;
}

.map-embed {
    width: 100%;
    height: 320px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

@media (max-width: 640px) {
    .map-embed { height: 260px; }
}

/* (removed under construction page styles) */

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #888888;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #ff0000;
    background: #000000;
    padding: 0 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-top {
    background: rgba(255, 0, 0, 0.05);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-newsletter h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-newsletter p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.newsletter-form button:active {
    transform: translateY(0);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.footer-section h4 {
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s ease;
}

.footer-section:hover h4::after {
    width: 50px;
}

.footer-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-section.footer-animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-section:nth-child(1) { transition-delay: 0.1s; }
.footer-section:nth-child(2) { transition-delay: 0.2s; }
.footer-section:nth-child(3) { transition-delay: 0.3s; }
.footer-section:nth-child(4) { transition-delay: 0.4s; }
.footer-section:nth-child(5) { transition-delay: 0.5s; }

/* Enhanced Footer Hover Effects */
.footer-section:hover {
    transform: translateY(-5px);
}

.brand-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-logo h3 {
    color: #ff0000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.footer-logo h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    transition: left 0.8s ease;
}

.footer-logo:hover h3::after {
    left: 100%;
}

.logo-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffffff);
    margin-bottom: 1.5rem;
    animation: logoLineGlow 2s ease-in-out infinite;
}

@keyframes logoLineGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: #ff0000;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: #ff0000;
    margin-top: 0.2rem;
}

.contact-item p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #888888;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff0000;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .brand-section {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .contact-section .contact-item {
        justify-content: center;
    }
    
    .footer-section {
        transition-delay: 0s !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-nav-btn {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }
    
    .prev-hero {
        left: 20px;
    }
    
    .next-hero {
        right: 20px;
    }
    
    .hero-indicators {
        bottom: 30px;
    }
    
    .hero-slide video {
        object-position: center;
    }
    
    .hero-slide img {
        object-position: center;
        height: 100vh;
    }
    
    .hero-title::after {
        width: 60px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .parallax-content h2 {
        font-size: 2.5rem;
    }
    
    .carousel-btn {
        padding: 0.8rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slide img {
        height: 100vh;
        object-position: center;
    }
}
