/**
 * Homepage Styles - Complete with State-of-the-Art Responsive Design
 */

/* Global Section Heading Styles - Sports Font */
section h2 {
    font-family: 'Arial Black', 'Arial', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: #000;
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-main {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 30px;
    color: #fff;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-promotion {
    background: rgba(254, 0, 0, 0.9);
    padding: clamp(15px, 2vw, 20px);
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
}

.promotion-text {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.promotion-subtext {
    font-size: clamp(16px, 2vw, 18px);
    color: #fff;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.hero-cta {
    display: inline-block;
    padding: clamp(12px, 2vw, 15px) clamp(20px, 3vw, 30px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: clamp(14px, 2vw, 16px);
    white-space: nowrap;
}

.primary-cta {
    background: #fff;
    color: #fe0000;
}

.primary-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.secondary-cta {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* 360 View Section */
.view360-section {
    display: none; /* Temporarily hidden - re-enable when GIF data is ready */
    padding: 60px 20px;
    background: #f8f8f8;
}
.view360-container {
    max-width: 1200px;
    margin: 0 auto;
}
.view360-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #1f1f1f;
}
.view360-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.view360-tab {
    padding: 8px 20px;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.view360-tab.active {
    background: #fe0000;
    color: #fff;
}
.view360-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 400px;
    position: relative;
    overflow: hidden;
}
.view360-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.view360-frame.active {
    display: flex;
}
.view360-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* Stats Section */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--accent-light-grey);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    animation: fadeIn 0.8s ease-out;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.stat-symbol {
    font-size: 2rem;
    color: var(--accent-red);
    margin-left: 0.2rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* As Seen On Section */
.partner-section,
.as-seen-on-section {
    padding: 40px 0;
    background: #fafafa;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.partner-section h2,
.as-seen-on-section h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.as-seen-on-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.as-seen-on-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.as-seen-on-image:hover {
    opacity: 0.6;
    filter: grayscale(50%);
}

.logo-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-scroll {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    display: inline-block;
    padding: var(--space-md) var(--space-lg);
    margin: 0 var(--space-md);
    background: var(--accent-light-grey);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    min-width: 150px;
    text-align: center;
    transition: all var(--transition-fast);
}

.partner-logo:hover {
    background: var(--accent-red);
    color: var(--primary);
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sports Categories - Background Images with Overlays */
.sports-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.sports-categories h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========  DESKTOP & LARGE TABLETS (1200px+) ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Sport Cards with Background Images - Enhanced Mobile Responsive */
.category-card {
    aspect-ratio: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    will-change: transform;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .category-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Background Images for Each Sport - Updated to use main-images folder */
/* Baseball */
.category-card:nth-child(1) { background-image: url('/wp-content/themes/hamcospo-child/main-images/baseball.png'); }
/* Basketball */
.category-card:nth-child(2) { background-image: url('/wp-content/themes/hamcospo-child/main-images/basketball.png'); }
/* Flag Football */
.category-card:nth-child(3) { background-image: url('/wp-content/themes/hamcospo-child/main-images/football.png'); }
/* Wrestling */
.category-card:nth-child(4) { background-image: url('/wp-content/themes/hamcospo-child/main-images/wrestling.png'); }
/* Football */
.category-card:nth-child(5) { background-image: url('/wp-content/themes/hamcospo-child/main-images/football.png'); }
/* Esports */
.category-card:nth-child(6) { background-image: url('/wp-content/themes/hamcospo-child/main-images/esports.png'); }
/* Ice Hockey */
.category-card:nth-child(7) { background-image: url('/wp-content/themes/hamcospo-child/main-images/ice-hockey.png'); }
/* Lacrosse */
.category-card:nth-child(8) { background-image: url('/wp-content/themes/hamcospo-child/main-images/lacrosse.png'); }
/* Rugby */
.category-card:nth-child(9) { background-image: url('/wp-content/themes/hamcospo-child/main-images/rugby.png'); }
/* Soccer */
.category-card:nth-child(10) { background-image: url('/wp-content/themes/hamcospo-child/main-images/soccer.png'); }
/* Softball */
.category-card:nth-child(11) { background-image: url('/wp-content/themes/hamcospo-child/main-images/softball.png'); }
/* Volleyball */
.category-card:nth-child(12) { background-image: url('/wp-content/themes/hamcospo-child/main-images/volleyball.png'); }

/* Hover overlay effect */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.category-card:hover::before {
    transform: translateX(100%);
}

/* Card content styling */
.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,1));
    color: white;
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover .category-content {
    background: linear-gradient(transparent, rgba(0,0,0,1));
}

.category-icon {
    display: none;
}

.category-card:hover .category-icon {
    display: none;
}

.category-card h3 {
    font-size: 2.6rem;
    font-weight: 900;
    font-family: 'Impact', 'Arial Black', 'Franklin Gothic Bold', sans-serif;
    margin: 0;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Apply alternating animations - odd cards slide from left, even from right */
.category-card:nth-child(odd) h3 {
    animation-name: slideInLeft;
}

.category-card:nth-child(even) h3 {
    animation-name: slideInRight;
}

/* Staggered animation delays for dramatic effect */
.category-card:nth-child(1) h3 { animation-delay: 0.2s; }
.category-card:nth-child(2) h3 { animation-delay: 0.3s; }
.category-card:nth-child(3) h3 { animation-delay: 0.4s; }
.category-card:nth-child(4) h3 { animation-delay: 0.5s; }
.category-card:nth-child(5) h3 { animation-delay: 0.6s; }
.category-card:nth-child(6) h3 { animation-delay: 0.7s; }
.category-card:nth-child(7) h3 { animation-delay: 0.8s; }
.category-card:nth-child(8) h3 { animation-delay: 0.9s; }
.category-card:nth-child(9) h3 { animation-delay: 1.0s; }
.category-card:nth-child(10) h3 { animation-delay: 1.1s; }
.category-card:nth-child(11) h3 { animation-delay: 1.2s; }
.category-card:nth-child(12) h3 { animation-delay: 1.3s; }

.category-card:hover h3 {
    font-size: 2.8rem;
    letter-spacing: 2.5px;
    transform: scale(1.05);
}

/* Additional info on hover */
.category-card::after {
    content: 'View Collection →';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.category-card:hover::after {
    opacity: 0;
    transform: translateY(0);
}

/* Hover content styling */
.category-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 15px;
}

.category-card:hover .category-hover-content {
    opacity: 1;
    transform: scale(1);
}

.category-hover-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    font-weight: 900;
    animation: none !important;
    letter-spacing: 2px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    width: 100%;
    max-width: 250px;
}

.category-features li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.category-cta {
    display: inline-block;
    background: #fe0000;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
    cursor: pointer;
}

.category-card:hover .category-cta:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Hide default content on hover */
.category-card:hover .category-content {
    opacity: 0;
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Staggered Animation */
.category-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }
.category-card:nth-child(8) { animation-delay: 0.8s; }
.category-card:nth-child(9) { animation-delay: 0.9s; }
.category-card:nth-child(10) { animation-delay: 1s; }
.category-card:nth-child(11) { animation-delay: 1.1s; }
.category-card:nth-child(12) { animation-delay: 1.2s; }

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

/* Slide in animations for category names */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Why Choose Our Uniforms Section (Materials) - Clean Design with Images */
.materials-section {
    padding: 80px 0;
    background: #f8f8f8;
    position: relative;
}

.materials-section h2 {
    text-align: center;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.material-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.material-card.featured {
    border: 2px solid #FE0000;
}

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

.material-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

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

.material-card:hover .material-image img {
    transform: scale(1.05);
}

.material-content {
    padding: 35px 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.material-badge {
    display: inline-block;
    background: #FE0000;
    color: #fff;
    padding: 6px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 auto 20px;
    text-transform: uppercase;
}

.material-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.material-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex: 1;
}

.material-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: #f5f5f5;
    color: #333;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
}

.material-card:hover .feature-tag {
    background: #FE0000;
    color: #fff;
    border-color: #FE0000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .material-image {
        height: 220px;
    }

    .material-content {
        padding: 25px 20px;
    }
}

/* Process Section - Beautiful Modern Design */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.process-section h2 {
    text-align: center;
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.process-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 70px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.process-item {
    background: #fff;
    padding: 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 3px solid #FE0000;
    overflow: hidden;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #000;
    transition: width 0.4s ease;
    z-index: 1;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.process-item:hover::before {
    width: 100%;
}

.process-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.process-item:hover .process-image img {
    transform: scale(1.05);
}

.process-num {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(254, 0, 0, 0.1);
    line-height: 1;
    margin: 30px 0 20px 35px;
    font-family: 'Impact', sans-serif;
}

.process-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 35px 15px 35px;
    letter-spacing: 0.5px;
}

.process-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    padding: 0 35px 40px 35px;
}

.process-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-process {
    display: inline-block;
    background: #FE0000;
    color: #fff;
    padding: 18px 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
}

.btn-process:hover {
    background: #000;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Pricing Section - Simple Table Design */
.pricing-section {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.pricing-table {
    background: #fff;
    border: 2px solid #000;
    margin-bottom: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #ddd;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header-row {
    background: #000;
    border-bottom: 2px solid #FE0000;
}

.pricing-col {
    padding: 20px 30px;
    font-size: 1rem;
}

.header-row .pricing-col {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.pricing-row:not(.header-row) .pricing-col:first-child {
    color: #333;
    font-weight: 600;
}

.price-value {
    color: #FE0000;
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-note {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-note p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-cta {
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 18px 50px;
    background: #FE0000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-pricing:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 2rem;
    }

    .pricing-col {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .header-row .pricing-col {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .btn-pricing {
        padding: 15px 40px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 15px;
    }

    .pricing-section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .pricing-col {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 1rem;
    }

    .btn-pricing {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--accent-light-grey);
}

.faq-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: var(--space-3xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    animation: fadeIn 0.8s ease-out;
}

.faq-item {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border-left: 4px solid var(--accent-red);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-xl);
}

.faq-item h3 {
    font-family: var(--font-sport);
    font-size: 1.3rem;
    color: var(--accent-red);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-grey);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--accent-red);
    color: var(--primary);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section a {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--primary);
    color: var(--accent-red);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
}

.cta-section a:hover {
    background: var(--accent-light-grey);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-red);
    color: var(--primary);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(254, 0, 0, 0.3);
    transition: all var(--transition-medium);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-quote-btn:hover {
    background: var(--text-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(254, 0, 0, 0.4);
}

.quote-text {
    font-size: 14px;
}

.quote-icon {
    font-size: 16px;
    transition: transform var(--transition-fast);
}

.floating-quote-btn:hover .quote-icon {
    transform: translateX(3px);
}

/* ---------- CUSTOM ORDER CTA SECTION ---------- */
.custom-order-cta-section {
    padding: 60px 0;
    background: #000;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    border-left: 5px solid #FE0000;
}

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

.custom-order-headline {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
}

.custom-order-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
}

.custom-order-button {
    display: flex;
    justify-content: center;
}

.btn-custom-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: #FE0000;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.05rem;
    border: 2px solid #FE0000;
}

.btn-custom-order:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(254, 0, 0, 0.4);
}

.btn-custom-order svg {
    transition: transform 0.3s ease;
}

.btn-custom-order:hover svg {
    transform: translateX(5px);
}

/* ==========  STATE-OF-THE-ART RESPONSIVE DESIGN ========== */

/* ==========  MEDIUM TABLETS (768px - 1199px) ========== */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        padding: 0 25px !important;
        max-width: 1200px;
    }
    
    .category-card {
        aspect-ratio: 1 !important;
        min-height: 200px;
        border-radius: 12px;
    }
    
    .category-card h3 {
        font-size: 2.2rem !important;
    }
    
    /* Keep desktop hover behavior */
    .category-card:hover .category-hover-content {
        opacity: 1;
        transform: scale(1);
    }
    
    .category-card:hover .category-content {
        opacity: 0;
    }
}

/* ==========  SMALL TABLETS (600px - 767px) ========== */
@media screen and (max-width: 767px) and (min-width: 600px) {
    .sports-categories {
        padding: 60px 0 !important;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
        padding: 0 20px !important;
        max-width: 100%;
    }
    
    .category-card {
        aspect-ratio: 1 !important;
        min-height: 180px !important;
        border-radius: 10px;
    }
    
    .category-content h3 {
        font-size: 1.8rem !important;
    }
    
    /* Keep desktop hover behavior for tablets */
    .category-card:hover .category-hover-content {
        opacity: 1;
        transform: scale(1);
    }
    
    .category-card:hover .category-content {
        opacity: 0;
    }
    
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .view360-content {
        height: 400px;
    }
    
    .view360-frame img {
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card:nth-child(2) {
        border-width: 2px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-item {
        padding: 40px 30px;
    }

    .process-num {
        font-size: 2.5rem;
    }

    .btn-process {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    .pricing-card:nth-child(2) {
        transform: none;
    }
    
    .floating-quote-btn {
        bottom: 20px;
        right: 20px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .quote-text {
        font-size: 12px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-order-cta-section {
        padding: 40px 0;
        margin: 30px 0;
    }

    .custom-order-headline {
        font-size: 1.8rem;
    }

    .custom-order-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 20px;
    }

    .btn-custom-order {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* ==========  LARGE MOBILE (480px - 599px) ========== */
@media screen and (max-width: 599px) and (min-width: 480px) {
    .sports-categories {
        padding: 50px 0 !important;
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        overflow-x: hidden !important;
    }
    
    .sports-categories h2 {
        font-size: 2rem !important;
        margin-bottom: 40px !important;
    }
    
    /* 2 COLUMNS ON MOBILE */
    .sports-categories .categories-grid,
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 20px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .sports-categories .category-card,
    .category-card {
        width: 100% !important;
        max-width: none !important;
        aspect-ratio: 1 !important;
        height: auto !important;
        min-height: 120px !important;
        margin: 0 !important;
        flex: none !important;
        display: block !important;
        border-radius: 15px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========  STANDARD MOBILE (375px - 479px) ========== */
@media screen and (max-width: 479px) and (min-width: 375px) {
    .sports-categories {
        padding: 40px 0 !important;
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        overflow-x: hidden !important;
    }
    
    .sports-categories h2 {
        font-size: 1.8rem !important;
        margin-bottom: 35px !important;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    /* 2 COLUMNS ON MOBILE */
    .sports-categories .categories-grid,
    .categories-grid,
    section.sports-categories .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .sports-categories .category-card,
    .categories-grid .category-card,
    .category-card,
    section.sports-categories .category-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        aspect-ratio: 1 !important;
        height: auto !important;
        min-height: 120px !important;
        margin: 0 !important;
        flex: none !important;
        display: block !important;
        border-radius: 12px !important;
        box-shadow: 0 5px 18px rgba(0,0,0,0.4) !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        overflow: hidden !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        
        /* Reset any conflicting properties */
        float: none !important;
        clear: both !important;
        position: relative !important;
    }
    
    .hero-promotion {
        margin: var(--space-md);
        padding: var(--space-md);
    }
    
    .promotion-text {
        font-size: 1.2rem;
    }
    
    .view360-content {
        height: 300px;
    }
    
    /* Floating button stays fixed - handled in dedicated mobile section below */
}

/* ==========  SMALL MOBILE (320px - 374px) ========== */
@media screen and (max-width: 374px) and (min-width: 320px) {
    .sports-categories {
        padding: 35px 0 !important;
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        overflow-x: hidden !important;
    }
    
    .sports-categories h2 {
        font-size: 1.6rem !important;
        margin-bottom: 30px !important;
        padding: 0 15px;
        line-height: 1.3;
    }
    
    /* 2 COLUMNS ON MOBILE */
    .sports-categories .categories-grid,
    .categories-grid,
    section.sports-categories .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .sports-categories .category-card,
    .categories-grid .category-card,
    .category-card,
    section.sports-categories .category-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        aspect-ratio: 1 !important;
        height: auto !important;
        min-height: 80px !important;
        margin: 0 !important;
        display: block !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 12px rgba(0,0,0,0.4) !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
}

/* ==========  EXTRA SMALL MOBILE (< 320px) ========== */
@media screen and (max-width: 319px) {
    .sports-categories {
        padding: 30px 0 !important;
        background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        overflow-x: hidden !important;
    }
    
    .sports-categories h2 {
        font-size: 1.4rem !important;
        margin-bottom: 25px !important;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    /* 2 COLUMNS ON MOBILE */
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .category-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        aspect-ratio: 1 !important;
        height: auto !important;
        min-height: 70px !important;
        margin: 0 !important;
        display: block !important;
        border-radius: 6px !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.4) !important;
    }
}

/* ==========  UNIVERSAL MOBILE CONTENT STYLES (< 600px) ========== */
@media screen and (max-width: 599px) {
    
    /* Content always visible */
    .category-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding: 25px 20px !important;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%) !important;
        color: white !important;
        text-align: center !important;
        z-index: 2 !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: 100% !important;
        transition: all 0.3s ease !important;
    }
    
    .category-content h3 {
        font-size: clamp(1.1rem, 4vw, 1.4rem) !important;
        font-weight: 900 !important;
        font-family: 'Impact', 'Arial Black', 'Franklin Gothic Bold', sans-serif !important;
        line-height: 1.2 !important;
        text-align: center !important;
        word-break: break-word !important;
        hyphens: auto !important;
        margin: 0 !important;
        color: #ffffff !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        padding: 0 !important;
        text-shadow: 0 3px 8px rgba(0,0,0,0.9) !important;
        -webkit-text-stroke: 0.5px rgba(255,255,255,0.1) !important;
        animation: none !important;
        max-width: 100% !important;
    }
    
    /* Links must cover full card */
    .category-card a {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        min-height: 44px !important;
        text-decoration: none !important;
        color: inherit !important;
    }
    
    /* Hide icons on mobile */
    .category-icon {
        display: none !important;
    }
    
    /* Hover content for mobile tap */
    .category-hover-content {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0,0,0,0.95) !important;
        color: white !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 25px 20px !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: scale(0.95) !important;
        transition: all 0.3s ease !important;
        z-index: 10 !important;
        border-radius: inherit !important;
        text-align: center !important;
    }
    
    .category-hover-content h3 {
        font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: #ffffff !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        animation: none !important;
    }
    
    /* Hide detailed features on mobile for cleaner look */
    .category-features {
        display: none !important;
    }
    
    .category-cta {
        display: inline-block !important;
        background: #fe0000 !important;
        color: white !important;
        padding: 12px 25px !important;
        border-radius: 25px !important;
        font-size: clamp(0.8rem, 2.5vw, 0.95rem) !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3) !important;
        cursor: pointer !important;
        white-space: nowrap !important;
        margin-top: 15px !important;
        text-decoration: none !important;
        border: none !important;
    }
    
    .category-cta:hover,
    .category-cta:active {
        background: #ffffff !important;
        color: #000000 !important;
        transform: scale(1.05) !important;
    }
    
    /* Card animations - ensure visibility on mobile */
    .category-card {
        opacity: 1 !important; /* Always visible on mobile */
        animation: mobileCardShow 0.5s ease-out forwards !important;
    }
    
    /* Simple, reliable mobile animation */
    @keyframes mobileCardShow {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .category-card:nth-child(1) { animation-delay: 0.1s !important; }
    .category-card:nth-child(2) { animation-delay: 0.15s !important; }
    .category-card:nth-child(3) { animation-delay: 0.2s !important; }
    .category-card:nth-child(4) { animation-delay: 0.25s !important; }
    .category-card:nth-child(5) { animation-delay: 0.3s !important; }
    .category-card:nth-child(6) { animation-delay: 0.35s !important; }
    .category-card:nth-child(7) { animation-delay: 0.4s !important; }
    .category-card:nth-child(8) { animation-delay: 0.45s !important; }
    .category-card:nth-child(9) { animation-delay: 0.5s !important; }
    .category-card:nth-child(10) { animation-delay: 0.55s !important; }
    .category-card:nth-child(11) { animation-delay: 0.6s !important; }
    .category-card:nth-child(12) { animation-delay: 0.65s !important; }
}

/* ==========  SIMPLIFIED TOUCH INTERACTIONS (< 600px) ========== */
@media screen and (max-width: 599px) and (hover: none) and (pointer: coarse) {
    .category-card {
        transition: transform 0.2s ease !important;
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
    }
    
    /* Simple tap feedback - just scale slightly */
    .category-card:active {
        transform: scale(0.95) !important;
    }
    
    /* Remove all hover content interactions */
    .category-hover-content {
        display: none !important;
    }
    
    /* Keep content always visible and static */
    .category-card .category-content {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Disable all hover effects on mobile */
    .category-card:hover {
        transform: none !important;
        box-shadow: 0 5px 18px rgba(0,0,0,0.4) !important;
    }
    
    .category-card:hover .category-content {
        opacity: 1 !important;
    }
    
    /* Make entire card a simple clickable area */
    .category-card a {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        text-decoration: none !important;
        color: inherit !important;
        z-index: 100 !important;
    }
}

/* ==========  HIGH DPI / RETINA DISPLAYS ========== */
@media screen and (max-width: 599px) and (-webkit-min-device-pixel-ratio: 2),
       screen and (max-width: 599px) and (min-resolution: 192dpi) {
    .category-card {
        box-shadow: 0 6px 25px rgba(0,0,0,0.5) !important;
    }
    
    .category-content h3 {
        text-shadow: 0 2px 8px rgba(0,0,0,0.9) !important;
    }
}

/* ==========  LANDSCAPE ORIENTATION MOBILE ========== */
@media screen and (max-width: 899px) and (orientation: landscape) and (max-height: 500px) {
    .sports-categories {
        padding: 30px 0 !important;
    }
    
    .sports-categories h2 {
        font-size: 1.6rem !important;
        margin-bottom: 25px !important;
    }
    
    .categories-grid {
        gap: 15px !important;
        padding: 0 30px !important;
    }
    
    .category-card {
        min-height: 200px !important;
        max-width: 300px !important;
    }
    
    .category-content {
        padding: 15px !important;
    }
    
    .category-content h3 {
        font-size: 1rem !important;
    }
    
    /* FORCE MOBILE BEHAVIOR IN LANDSCAPE - NO HOVER FEATURES */
    .category-hover-content {
        display: none !important;
    }
    
    .category-features {
        display: none !important;
    }
    
    .category-cta {
        display: none !important;
    }
    
    /* Disable hover effects in landscape mobile */
    .category-card:hover .category-hover-content {
        display: none !important;
        opacity: 0 !important;
    }
    
    .category-card:hover .category-content {
        opacity: 1 !important;
    }
    
    /* Simple tap feedback only */
    .category-card:active {
        transform: scale(0.95) !important;
    }
}

/* ==========  ACCESSIBILITY & PERFORMANCE IMPROVEMENTS ========== */
@media screen and (max-width: 599px) {
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .category-card,
        .category-hover-content,
        .category-content,
        .category-cta {
            transition: none !important;
            animation: none !important;
        }
        
        .category-card {
            opacity: 1 !important;
        }
    }
    
    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .category-card {
            border: 2px solid #ffffff !important;
        }
        
        .category-content {
            background: rgba(0,0,0,0.98) !important;
        }
        
        .category-content h3 {
            text-shadow: none !important;
            font-weight: 900 !important;
        }
    }
    
    /* Dark mode optimization */
    @media (prefers-color-scheme: dark) {
        .category-card {
            box-shadow: 0 5px 20px rgba(0,0,0,0.6) !important;
        }
    }
    
    /* Prevent horizontal scroll globally */
    body, html {
        overflow-x: hidden !important;
    }
    
    * {
        box-sizing: border-box !important;
    }
    
    /* Performance optimizations */
    .category-card {
        will-change: transform !important;
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        perspective: 1000px !important;
    }
}

/* ==========  SAFE AREA SUPPORT (iPhone X+) ========== */
@supports (padding: max(0px)) {
    @media screen and (max-width: 599px) {
        .sports-categories {
            padding-left: max(20px, env(safe-area-inset-left)) !important;
            padding-right: max(20px, env(safe-area-inset-right)) !important;
        }
        
        .categories-grid {
            padding-left: max(20px, env(safe-area-inset-left)) !important;
            padding-right: max(20px, env(safe-area-inset-right)) !important;
        }
    }
}

/* ==========  FORCE OVERRIDE ANY CONFLICTING STYLES ========== */
@media screen and (max-width: 599px) {
    .categories-grid[style*="grid"],
    .categories-grid[style*="Grid"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .category-card[style*="width"],
    .category-card[style*="margin"],
    .category-card[style*="flex"] {
        width: 100% !important;
        margin: 0 !important;
        flex: none !important;
    }
    
    /* Override any inline styles from JavaScript */
    .category-card[style] {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* ==========  SEPARATE AS SEEN ON & SPORTS SECTIONS - MOBILE ========== */
@media screen and (max-width: 768px) {
    .as-seen-on-section,
    .partner-section {
        padding: 30px 0 !important;
        margin-bottom: 0 !important;
        background: #ffffff !important;
        border-bottom: 3px solid #f0f0f0 !important;
    }

    .as-seen-on-section h2,
    .partner-section h2 {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }

    .as-seen-on-image {
        max-width: 80% !important;
    }

    .sports-categories {
        margin-top: 0 !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        border-top: none !important;
    }

    .sports-categories h2 {
        margin-bottom: 30px !important;
        font-size: 1.8rem !important;
    }

    /* 2 cards per row on mobile */
    .categories-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    .category-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        min-height: 140px !important;
        aspect-ratio: 1 !important;
        margin: 0 !important;
    }

    .category-content {
        padding: 15px 10px !important;
    }

    .category-content h3 {
        font-size: 0.9rem !important;
        letter-spacing: 0.5px !important;
    }

    /* Hide hover content on mobile - just show name */
    .category-hover-content {
        display: none !important;
    }
}

/* ==========  BUILT FOR CHAMPIONS / MATERIALS SECTION - MOBILE ========== */
@media screen and (max-width: 768px) {
    .materials-section {
        padding: 40px 0 !important;
    }

    .materials-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
        padding: 0 15px !important;
    }

    .materials-section .section-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 25px !important;
        padding: 0 20px !important;
    }

    .materials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px !important;
    }

    .material-card {
        border-radius: 8px !important;
    }

    .material-image {
        height: 100px !important;
    }

    .material-content {
        padding: 12px 10px !important;
    }

    .material-badge {
        padding: 3px 8px !important;
        font-size: 0.5rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 8px !important;
    }

    .material-card h3 {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
    }

    .material-card p {
        font-size: 0.65rem !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .material-features {
        gap: 4px !important;
    }

    .feature-tag {
        padding: 3px 6px !important;
        font-size: 0.5rem !important;
    }
}

@media screen and (max-width: 480px) {
    .materials-section {
        padding: 30px 0 !important;
    }

    .materials-section h2 {
        font-size: 1.3rem !important;
    }

    .materials-section .section-subtitle {
        font-size: 0.7rem !important;
        margin-bottom: 20px !important;
    }

    .materials-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 0 10px !important;
    }

    .material-card {
        border-radius: 6px !important;
    }

    .material-image {
        height: 80px !important;
    }

    .material-content {
        padding: 10px 8px !important;
    }

    .material-badge {
        padding: 2px 6px !important;
        font-size: 0.45rem !important;
        margin-bottom: 6px !important;
    }

    .material-card h3 {
        font-size: 0.7rem !important;
        margin-bottom: 5px !important;
    }

    .material-card p {
        font-size: 0.55rem !important;
        margin-bottom: 8px !important;
        -webkit-line-clamp: 2 !important;
    }

    .feature-tag {
        padding: 2px 5px !important;
        font-size: 0.45rem !important;
    }
}

/* ==========  FINAL CTA SECTION - MOBILE ========== */
@media screen and (max-width: 768px) {
    .cta-section {
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .cta-section h2 {
        font-size: 1.4rem !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
        padding: 0 10px !important;
    }

    .cta-section p {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }

    .cta-section a {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
    }

    /* Custom Order CTA */
    .custom-order-cta-section {
        padding: 35px 15px !important;
        margin: 25px 0 !important;
        border-left-width: 4px !important;
    }

    .custom-order-headline {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
        letter-spacing: 1px !important;
    }

    .custom-order-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 25px !important;
        line-height: 1.5 !important;
    }

    .btn-custom-order {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
        border-radius: 30px !important;
    }

    .btn-custom-order svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* Floating Quote Button */
    .floating-quote-btn {
        position: fixed !important;
        bottom: 15px !important;
        left: 15px !important;
        right: auto !important;
        padding: 10px 16px !important;
        border-radius: 25px !important;
        z-index: 9999 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        max-width: calc(100vw - 30px) !important;
        box-sizing: border-box !important;
        background: #FE0000 !important;
        color: #fff !important;
        text-decoration: none !important;
        box-shadow: 0 4px 15px rgba(254, 0, 0, 0.4) !important;
    }

    .quote-text {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }

    .quote-icon {
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }
}

@media screen and (max-width: 480px) {
    .cta-section {
        padding: 30px 15px !important;
    }

    .cta-section h2 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .cta-section p {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
    }

    .cta-section a {
        padding: 10px 25px !important;
        font-size: 0.8rem !important;
        display: block !important;
        max-width: 250px !important;
        margin: 0 auto !important;
    }

    /* Custom Order CTA */
    .custom-order-cta-section {
        padding: 25px 12px !important;
        margin: 20px 0 !important;
    }

    .custom-order-headline {
        font-size: 1.2rem !important;
    }

    .custom-order-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 20px !important;
    }

    .btn-custom-order {
        padding: 10px 25px !important;
        font-size: 0.8rem !important;
        width: 100% !important;
        max-width: 220px !important;
    }

    /* Floating Quote Button - smaller on tiny screens */
    .floating-quote-btn {
        position: fixed !important;
        bottom: 10px !important;
        left: 10px !important;
        right: auto !important;
        padding: 8px 12px !important;
        border-radius: 20px !important;
        z-index: 9999 !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
        max-width: calc(100vw - 20px) !important;
        background: #FE0000 !important;
        color: #fff !important;
        box-shadow: 0 3px 12px rgba(254, 0, 0, 0.4) !important;
    }

    .quote-text {
        font-size: 0.6rem !important;
        white-space: nowrap !important;
    }

    .quote-icon {
        font-size: 0.7rem !important;
    }
}

/* ==========  PROCESS/HOW IT WORKS SECTION - MOBILE ========== */
@media screen and (max-width: 768px) {
    .process-section {
        padding: 50px 0 !important;
    }

    .process-container {
        padding: 0 15px !important;
    }

    .process-section h2 {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
    }

    .process-intro {
        font-size: 0.95rem !important;
        margin-bottom: 35px !important;
        padding: 0 10px !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .process-item {
        border-top: 2px solid #FE0000 !important;
    }

    .process-image {
        height: 160px !important;
    }

    .process-num {
        font-size: 2rem !important;
        margin: 20px 0 12px 20px !important;
    }

    .process-item h3 {
        font-size: 1.2rem !important;
        margin: 0 20px 10px 20px !important;
    }

    .process-item p {
        font-size: 0.9rem !important;
        padding: 0 20px 25px 20px !important;
        line-height: 1.5 !important;
    }

    .process-cta {
        margin-top: 10px !important;
    }

    .btn-process {
        padding: 14px 35px !important;
        font-size: 0.9rem !important;
    }
}

@media screen and (max-width: 480px) {
    .process-section {
        padding: 40px 0 !important;
    }

    .process-section h2 {
        font-size: 1.4rem !important;
    }

    .process-intro {
        font-size: 0.85rem !important;
        margin-bottom: 25px !important;
    }

    .process-grid {
        gap: 15px !important;
    }

    .process-image {
        height: 140px !important;
    }

    .process-num {
        font-size: 1.8rem !important;
        margin: 15px 0 10px 15px !important;
    }

    .process-item h3 {
        font-size: 1.1rem !important;
        margin: 0 15px 8px 15px !important;
    }

    .process-item p {
        font-size: 0.85rem !important;
        padding: 0 15px 20px 15px !important;
    }

    .btn-process {
        padding: 12px 28px !important;
        font-size: 0.85rem !important;
        width: calc(100% - 30px) !important;
        max-width: 280px !important;
    }
}

/* ==========  360 VIEW SECTION - MOBILE ========== */
@media screen and (max-width: 768px) {
    .view360-section {
        padding: 40px 15px !important;
    }

    .view360-section h2 {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }

    .view360-tabs {
        gap: 6px !important;
        margin-bottom: 15px !important;
    }

    .view360-tab {
        padding: 5px 10px !important;
        font-size: 0.7rem !important;
        border-radius: 3px !important;
        font-weight: 600 !important;
    }

    .view360-content {
        height: 280px !important;
        border-radius: 8px !important;
    }

    .view360-frame img {
        padding: 10px !important;
    }
}

@media screen and (max-width: 480px) {
    .view360-section {
        padding: 30px 10px !important;
    }

    .view360-section h2 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }

    .view360-tabs {
        gap: 4px !important;
    }

    .view360-tab {
        padding: 4px 8px !important;
        font-size: 0.65rem !important;
    }

    .view360-content {
        height: 220px !important;
    }
}

/* ==========  COMPACT STATS SECTION - MOBILE ========== */
@media screen and (max-width: 768px) {
    .stats-section {
        padding: 25px 0 !important;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }

    .stat-item {
        padding: 15px 10px !important;
        border-radius: 8px !important;
    }

    .stat-item:hover {
        transform: none !important;
    }

    .stat-container {
        margin-bottom: 5px !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-symbol {
        font-size: 1.2rem !important;
    }

    .stat-item p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
}

@media screen and (max-width: 400px) {
    .stats-grid {
        gap: 8px !important;
        padding: 0 10px !important;
    }

    .stat-item {
        padding: 12px 8px !important;
    }

    .stat-number {
        font-size: 1.3rem !important;
    }

    .stat-symbol {
        font-size: 1rem !important;
    }

    .stat-item p {
        font-size: 0.7rem !important;
    }
}

/* ========================================
   Success Stories Section
   ======================================== */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

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

.success-stories-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 15px;
    color: #fff;
}

.success-stories-section .section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    color: #ccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.video-testimonial {
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(254, 0, 0, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.success-stories-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-reviews {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #FE0000;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-view-reviews:hover {
    background: #FE0000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(254, 0, 0, 0.3);
}

/* Multiple videos layout (for future) */
.success-stories-grid.multiple {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.success-stories-grid.multiple .video-testimonial {
    max-width: 100%;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .success-stories-section {
        padding: 60px 0;
    }

    .success-stories-section .section-subtitle {
        margin-bottom: 40px;
    }

    .video-testimonial {
        border-radius: 8px;
    }

    .success-stories-cta {
        margin-top: 40px;
    }

    .btn-view-reviews {
        padding: 12px 30px;
        font-size: 14px;
    }
}