

/* Global Overflow Prevention */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
* {
  box-sizing: border-box;
}











        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #FFFFFF 0%, var(--light-bg) 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(244, 1, 3, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(244, 1, 3, 0.02) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-title span {
            color: var(--primary-red);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        /* Category Stats */
        .category-stats {
            margin-top: 50px;
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Products Section */
        .products-section {
            padding: 80px 0;
            background: white;
        }

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

        .section-badge {
            display: inline-block;
            background: rgba(244, 1, 3, 0.1);
            color: var(--primary-red);
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Product Card */
        .product-card {
            background: white;
            border: 2px solid #f0f0f0;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-red);
        }

        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            background: var(--light-bg);
            height: 350px;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-red);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .product-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            color: var(--primary-red);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .product-description {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .product-features li {
            font-size: 0.9rem;
            color: var(--text-gray);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .product-features li i {
            color: var(--primary-red);
            font-size: 0.75rem;
        }

        .product-footer {
            display: flex;
            gap: 10px;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }

        .btn-product {
            flex: 1;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary-product {
            background: #222934;
            color: white;
        }

        .btn-primary-product:hover {
            background: #c10002;
            transform: translateY(-2px);
        }

        .btn-outline-product {
            background: transparent;
            color: #222934;
            border: 2px solid var(--primary-red);
        }

        .btn-outline-product:hover {
            background: var(--primary-red);
            color: white;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .feature-box {
            background: white;
            padding: 35px 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

      
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-navy) 0%, #1a1f2e 100%);
            color: white;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .btn-cta {
            padding: 16px 50px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: none;
            background: var(--primary-red);
            color: white;
            cursor: pointer;
        }

        .btn-cta:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        /* SEO Content Section */
        .seo-content-section {
            padding: 80px 0;
            background: white;
        }

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

        .seo-content-wrapper h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        .seo-content-wrapper h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: 35px;
            margin-bottom: 20px;
        }

        .seo-content-wrapper p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .seo-content-wrapper strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .seo-content-wrapper ul {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .seo-content-wrapper ul li {
            padding: 12px 0 12px 35px;
            position: relative;
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        .seo-content-wrapper ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-size: 1rem;
        }

        .highlight-box {
            background: var(--light-bg);
            border-left: 4px solid var(--primary-red);
            padding: 25px 30px;
            border-radius: 10px;
            margin: 30px 0;
        }

        .highlight-box p {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        /* Quick CTA Section */
        .quick-cta-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .quick-cta-card {
            background: white;
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 2px solid #f0f0f0;
        }

        .quick-cta-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-red), #c10002);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 3rem;
            color: white;
        }

        .quick-cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .quick-cta-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-large {
            padding: 18px 55px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-large-primary {
            background: var(--primary-red);
            color: white;
        }

        .btn-large-primary:hover {
            background: #c10002;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(244, 1, 3, 0.3);
        }

        .btn-large-secondary {
            background: var(--dark-navy);
            color: white;
        }

        .btn-large-secondary:hover {
            background: #1a1f2e;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Why Choose Us - Dark Section */
        .why-choose-dark-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark-navy) 0%, #1a1f2e 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-choose-dark-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(244,1,3,0.05)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }

        .why-choose-dark-section .section-badge {
            background: rgba(244, 1, 3, 0.2);
        }

        .why-choose-dark-section .section-title {
            color: white;
        }

        .why-choose-dark-section .section-subtitle {
            color: #d1d5db;
        }

        .reason-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
        }

        .reason-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-red);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .reason-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-red);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: white;
            transition: transform 0.3s ease;
        }

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

        .reason-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .reason-text {
            font-size: 1rem;
            color: #d1d5db;
            line-height: 1.7;
        }

        .dark-cta-wrapper {
            margin-top: 60px;
            text-align: center;
        }

        .dark-cta-title {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 25px;
        }

        .dark-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Grid Support Section - Dark */
        .grid-support-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .grid-support-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 48%, rgba(244, 1, 3, 0.03) 50%, transparent 52%);
            background-size: 50px 50px;
        }

        .grid-support-section .container {
            position: relative;
            z-index: 1;
        }

        .grid-support-header {
            margin-bottom: 60px;
        }

        .grid-support-badge {
            display: inline-block;
            color: var(--primary-red);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .grid-support-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .grid-support-subtitle {
            font-size: 1.1rem;
            color: #cbd5e0;
            max-width: 800px;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .support-grid-item {
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--primary-red);
            border-radius: 10px;
            padding: 30px 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .support-grid-item:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .support-grid-icon {
            width: 55px;
            height: 55px;
            background: var(--primary-red);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
        }

        .support-grid-text {
            flex: 1;
        }

        .support-grid-text h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }

        /* Banner CTA Section */
        .banner-cta-section {
            padding: 0;
            background: linear-gradient(135deg, var(--primary-red) 0%, #c10002 100%);
            position: relative;
            overflow: hidden;
        }

        .banner-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(255,255,255,0.05)" fill="none" stroke-width="2"/></svg>');
            opacity: 0.3;
        }

        .banner-cta-content {
            position: relative;
            z-index: 1;
            padding: 80px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .banner-cta-left {
            flex: 1;
            min-width: 300px;
        }

        .banner-cta-left h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .banner-cta-left p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
        }

        .banner-cta-right {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-banner {
            padding: 18px 45px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }

        .btn-banner-white {
            background: white;
            color: var(--primary-red);
        }

        .btn-banner-white:hover {
            background: var(--dark-navy);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .btn-banner-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-banner-outline:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .category-stats {
                gap: 30px;
            }

            .product-image-wrapper {
                height: 200px;
            }
        }