/* Hero Section - Video Background Styles */
.hero-section-redesigned {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 0;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

/* Container positioning */
.hero-section-redesigned .container {
    position: relative;
    z-index: 3;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 200px auto;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Badge */
.hero-badge-redesigned {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 60px;
    padding: 12px 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-badge-redesigned:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: badgeRotate 3s linear infinite;
    z-index: -1;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 2s ease-in-out infinite;
}

@keyframes badgeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-badge-redesigned svg {
    color: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.hero-badge-redesigned span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Title */
.hero-title-redesigned {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.title-line-1, .title-line-3 {
    display: block;
    animation: titleSlideIn 1s ease-out;
}

.title-line-2 {
    display: block;
    margin: 10px 0;
}

.title-highlight-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06d6a0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Description */
.hero-description-redesigned {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.description-highlight {
    color: #3b82f6;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Interactive Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card-animated {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.stat-card-animated:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    width: 0;
    transition: width 1s ease;
}

.stat-card-animated:hover .stat-progress {
    width: 100%;
}

/* Enhanced CTA Buttons */
.hero-cta-redesigned {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 60px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary-redesigned.btn-enhanced {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-redesigned.btn-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.btn-secondary-redesigned.btn-enhanced {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary-redesigned.btn-enhanced:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.btn-bg-effect {
    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;
}

.btn-enhanced:hover .btn-bg-effect {
    left: 100%;
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-enhanced:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0; /* Default hidden for animation */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Responsive Design for Hero Section */
@media (max-width: 1200px) {
    .hero-title-redesigned {
        font-size: 3.5rem;
    }
    
    .hero-content-wrapper {
        max-width: 800px;
    }
    
    .gradient-orb-1 {
        width: 350px;
        height: 350px;
    }
    
    .gradient-orb-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .hero-title-redesigned {
        font-size: 3rem;
    }
    
    .hero-description-redesigned {
        font-size: 1.2rem;
        max-width: 600px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
    }
    
    .hero-trust-indicators {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h2, .section-title, .section-title-redesigned {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    .hero-section-redesigned { min-height: 30vh; padding: 0; }
    .hero-content-wrapper { max-width: 900px; margin: 150px auto 60px; padding: 0 12px; }
    .hero-title-redesigned { font-size: 4rem; margin-bottom: 30px; }
    .title-line-1, .title-line-3 { display: block; margin: 0; }
    .title-line-2 { display: block; margin: 10px 0; }
    .hero-description-redesigned { font-size: 1.3rem; margin-bottom: 50px; max-width: 700px; }
    .hero-badge-redesigned { padding: 12px 24px; margin-bottom: 40px; }
    .hero-badge-redesigned span { font-size: 1rem; }
    .hero-stats-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 25px; max-width: 700px; }
    .stat-card-animated { padding: 25px 20px; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 1rem; }
    .hero-cta-redesigned { flex-direction: row; align-items: center; justify-content: center; gap: 12px; margin-bottom: 60px; flex-wrap: nowrap; padding: 0 6px; }
    .btn-enhanced { display: inline-flex; padding: 14px 22px; font-size: 0.95rem; width: auto; max-width: none; white-space: nowrap; }
}
    .hero-trust-indicators { gap: 40px; }
    .trust-item { font-size: 1rem; }
    .scroll-indicator { bottom: 30px; }
    .scroll-arrow { width: 40px; height: 40px; }
    .scroll-text { font-size: 0.9rem; }
    .hero-video-bg { object-position: center; }
/* nothing to output – the stray closing brace was simply removed */

@media (max-width: 576px) {
    .hero-content-wrapper { margin-bottom: 8px; }
    .hero-title-redesigned { font-size: 3.2rem; line-height: 1.2; }
    .title-line-1, .title-line-3 { display: block; margin: 0; }
    .title-line-2 { display: block; margin: 10px 0; }
    .features-grid-redesigned { gap: 10px; }
    .feature-card-redesigned { flex: 0 0 calc(92vw - 16px); padding: 32px; }
    .hero-description-redesigned { font-size: 1.1rem; line-height: 1.6; max-width: 700px; }
    .hero-stats-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 25px; max-width: 700px; }
    .stat-card-animated { padding: 25px 20px; border-radius: 20px; }
    .stat-number { font-size: 2.5rem; }
    .stat-label { font-size: 1rem; }
    .stat-icon { font-size: 2rem; margin-bottom: 10px; }
    .hero-badge-redesigned { padding: 12px 24px; gap: 12px; }
    .hero-badge-redesigned svg { width: 18px; height: 18px; }
    .hero-badge-redesigned span { font-size: 0.95rem; }
    .hero-cta-redesigned { flex-direction: row; align-items: center; justify-content: center; gap: 8px; flex-wrap: nowrap; padding: 0 4px; }
    .btn-enhanced { display: inline-flex; padding: 10px 16px; font-size: 0.9rem; white-space: nowrap; height: 44px; align-items: center; justify-content: center; box-sizing: border-box; }
    .btn-primary-redesigned.btn-enhanced { border: 2px solid transparent; }
    .btn-text { gap: 4px; }
    .cta-section-redesigned { padding: 60px 0; }
    .cta-content-redesigned h2 { font-size: 1.6rem; }
    .cta-content-redesigned {
        gap: 14px;
        border-radius: 14px;
        max-width: 420px;
        padding: 18px 14px;
        backdrop-filter: blur(10px);
    }
    .cta-button-redesigned { width: 100%; max-width: 320px; margin: 0 auto; padding: 14px 24px; font-size: 1.05rem; }
}
    .btn-text { gap: 10px; }
    .btn-icon { width: 20px; height: 20px; }
    .hero-trust-indicators { flex-direction: row; gap: 40px; align-items: center; }
    .trust-item { font-size: 1rem; }
    .trust-icon { font-size: 1.2rem; }
    .badge-glow, .badge-shine { display: block; }
/* nothing to output – the stray closing brace was simply removed */

@media (max-width: 400px) {
    .hero-title-redesigned { font-size: 2.2rem; line-height: 1.12; letter-spacing: -0.01em; }
    .hero-content-wrapper { margin: 120px auto 36px; padding: 0 10px; }
    .hero-badge-redesigned { padding: 10px 16px; gap: 10px; }
    .hero-badge-redesigned span { font-size: 0.9rem; }
    
    .hero-stats-grid {
        max-width: 300px;
    }
    
    .stat-card-animated {
        padding: 16px 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-cta-redesigned { flex-direction: row; align-items: center; justify-content: center; gap: 6px; flex-wrap: nowrap; padding: 0 4px; }
    .btn-enhanced { display: inline-flex; padding: 8px 12px; font-size: 0.85rem; white-space: nowrap; letter-spacing: -0.02em; height: 40px; align-items: center; justify-content: center; box-sizing: border-box; }
    .btn-primary-redesigned.btn-enhanced { border: 2px solid transparent; }
    .btn-text { gap: 4px; }
    .cta-section-redesigned { padding: 50px 0; }
    .cta-content-redesigned h2 { font-size: 1.5rem; }
    .cta-content-redesigned {
        gap: 12px;
        border-radius: 12px;
        max-width: 320px;
        padding: 16px 12px;
    }
    .cta-button-redesigned { max-width: 280px; padding: 12px 20px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .hero-title-redesigned .title-line-1,
    .hero-title-redesigned .title-line-2,
    .hero-title-redesigned .title-line-3 {
        white-space: nowrap;
        font-size: clamp(1rem, 5.2vw, 1.7rem);
        line-height: 1.1;
        letter-spacing: -0.01em;
    }
}

@media (max-width: 375px) {
    .hero-title-redesigned { font-size: 1.9rem; line-height: 1.12; letter-spacing: -0.01em; }
    .hero-title-redesigned .title-line-1,
    .hero-title-redesigned .title-line-2,
    .hero-title-redesigned .title-line-3 {
        white-space: nowrap;
        font-size: min(6vw, 1.6rem);
    }
    .hero-content-wrapper { margin: 100px auto 28px; padding: 0 8px; }
    .hero-description-redesigned { font-size: 0.95rem; line-height: 1.5; max-width: 320px; margin-left: auto; margin-right: auto; }
    .hero-badge-redesigned { padding: 8px 12px; gap: 8px; }
    .hero-badge-redesigned span { font-size: 0.82rem; }
    .hero-cta-redesigned { gap: 6px; padding: 0 2px; }
    .btn-enhanced { padding: 7px 10px; font-size: 0.78rem; height: 36px; }
}

/* Why Choose Us Section */
.why-choose-redesigned {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.section-title-redesigned {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-subtitle-redesigned {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-redesigned {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-redesigned:hover::before {
    transform: scaleX(1);
}

.feature-card-redesigned:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.feature-icon-redesigned {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-card-redesigned h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-card-redesigned p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

/* Products Section */
.products-section-redesigned {
    padding: 50px 0;
    background: #f8fafc;
}

.products-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card-redesigned {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card-redesigned:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-icon-redesigned {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.product-card-redesigned h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.product-card-redesigned p {
    color: #64748b;
    margin-bottom: 20px;
    text-align: justify;
}

.product-link-redesigned {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-link-redesigned:hover {
    color: #1d4ed8;
}

/* Warehouse Map Section */
.warehouse-section-redesigned {
    padding: 120px 0;
    background: white;
}

.map-container-redesigned {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 600px;
}

.location-label {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

/* Google-style marker visuals */
.google-marker {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.google-marker svg {
    display: block;
}

/* CTA Section */
.cta-section-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.cta-content-redesigned {
    position: relative;
    z-index: 10;
}

.cta-content-redesigned h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-redesigned {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button-redesigned:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-redesigned {
        font-size: 2.5rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-cta-redesigned {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .features-grid-redesigned {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 55px;
        -webkit-overflow-scrolling: touch;
        
        /* Spring effect spacing */
        padding-left: 55px;
        padding-right: 55px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .features-grid-redesigned::-webkit-scrollbar { display: none; }
    .feature-card-redesigned {
        flex: 0 0 65vw;
        width: 65vw;
        scroll-snap-align: start;
        margin-bottom: 0;
    }
    
    .products-grid-redesigned {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 55px;
        -webkit-overflow-scrolling: touch;
        
        /* Spring effect spacing */
        padding-left: 55px;
        padding-right: 55px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .products-grid-redesigned::-webkit-scrollbar { display: none; }
    .product-card-redesigned { 
        flex: 0 0 65vw; 
        width: 65vw;
        scroll-snap-align: start;
        margin-bottom: 0;
    }
    
    .section-title-redesigned {
        font-size: 2rem;
    }
    
    .cta-content-redesigned h3 {
        font-size: 1.8rem;
    }
    .cta-section-redesigned {
        padding: 80px 0;
    }
    .cta-section-redesigned::before {
        opacity: 0.2;
    }
    .cta-section-redesigned .container {
        padding: 0 10px;
    }
    .cta-content-redesigned {
        display: grid;
        gap: 10px;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 10px 10px;
        max-width: 560px;
        margin: 0 auto;
    }
    .cta-button-redesigned {
        width: 100%;
        max-width: 360px;
        text-align: center;
        padding: 10px 22px;
        font-size: 1.05rem;
        margin: 0 auto;
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
    }
}

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

/* Hide Leaflet attribution */
.leaflet-control-attribution {
    display: none !important;
}
