/* =============================================
   THREE BROTHERS GARAGE - MAIN STYLESHEET
   Disabled Veteran Owned Motorcycle Performance Shop
   ============================================= */

/* =============================================
   GLOBAL STYLES & RESET
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #FF0000;
    --secondary-color: #1a1a1a;
    --dark-bg: #0a0a0a;
    --light-bg: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --accent-orange: #ff6600;
    --accent-gold: #FFD700;
    --veteran-blue: #003f87;
    --veteran-red: #bf0a30;
    
    /* Typography */
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-fast);
    border-bottom: 2px solid var(--primary-color);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-logo .garage-text {
    color: var(--primary-color);
    margin-left: 10px;
}

.veteran-badge {
    display: block;
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%),
                url('https://images.unsplash.com/photo-1558981852-426c6c22a060?w=1600') center/cover;
    background-blend-mode: multiply;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.veteran-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--accent-gold);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease;
}

.flag-icon {
    font-size: 1.5rem;
}

.veteran-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-sponsor {
    margin: 40px 0;
    animation: fadeIn 1s ease 0.6s both;
}

.sponsor-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
}

.sponsor-logo-container {
    margin: 15px 0;
}

.sponsor-logo {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.sponsor-tagline {
    font-style: italic;
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.9s both;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-sponsor {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-sponsor:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-product {
    width: 100%;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.btn-product:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* =============================================
   SPONSOR BANNER
   ============================================= */
.sponsor-banner {
    background: linear-gradient(90deg, var(--primary-color) 0%, #cc0000 100%);
    padding: 30px 20px;
    color: var(--text-light);
}

.sponsor-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.sponsor-banner-logo img {
    height: 50px;
}

.sponsor-banner-text {
    flex: 1;
}

.sponsor-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.sponsor-banner-text p {
    font-size: 1rem;
    opacity: 0.9;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    letter-spacing: 4px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 20px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services {
    padding: var(--section-padding);
    background: var(--light-bg);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* =============================================
   DRAG SPECIALTIES PRODUCTS SECTION
   ============================================= */
.drag-products {
    padding: var(--section-padding);
    background: white;
}

.sponsor-section-badge {
    margin-bottom: 20px;
}

.sponsor-section-badge img {
    height: 40px;
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.category-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.product-image {
    height: 250px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-stock {
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
}

/* =============================================
   DRAG SPECIALTIES CTA
   ============================================= */
.drag-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2a2a 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.drag-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.drag-cta h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
}

.drag-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
}

.drag-cta .btn {
    margin: 0 10px;
    position: relative;
}

/* =============================================
   CUSTOM BUILDS SECTION
   ============================================= */
.custom-builds {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.build-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.build-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.build-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.build-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.build-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px;
    color: var(--text-light);
}

.build-overlay h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.build-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.build-info {
    padding: 30px;
}

.build-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.build-info ul {
    list-style: none;
    padding-left: 0;
}

.build-info li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.build-info li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    padding: var(--section-padding);
    background: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* =============================================
   SPONSORS & PARTNERS SECTION
   ============================================= */
.sponsors-partners {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.primary-sponsor {
    margin-bottom: 60px;
}

.primary-sponsor h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.sponsor-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 40px;
}

.sponsor-card.featured {
    border: 3px solid var(--primary-color);
}

.sponsor-logo {
    flex-shrink: 0;
}

.sponsor-logo img {
    height: 80px;
}

.sponsor-details h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.sponsor-details p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.sponsor-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Partners Grid */
.partners-grid h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

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

.partner-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
}

.partner-card h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.partner-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.partner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.partner-link:hover {
    color: #cc0000;
}

/* Veteran Support Section */
.veteran-support {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--veteran-blue) 0%, #002a5c 100%);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.veteran-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.05">🇺🇸</text></svg>') center/contain no-repeat;
    opacity: 0.1;
}

.veteran-support-content {
    padding: 50px 40px;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.veteran-support-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.veteran-support-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.veteran-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.veteran-ownership-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--veteran-blue);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.badge-flag {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-sponsor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.about-sponsor p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.about-sponsor img {
    height: 30px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact {
    padding: var(--section-padding);
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.veteran-discount-box {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--veteran-blue) 0%, #002a5c 100%);
    border-radius: 10px;
    color: var(--text-light);
}

.veteran-discount-box h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.veteran-discount-box p {
    color: var(--text-light);
    margin: 0;
    opacity: 0.95;
}

.contact-sponsor {
    margin-top: 30px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-sponsor h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-sponsor p {
    color: #666;
    margin-bottom: 20px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-veteran {
    margin: 20px 0;
}

.veteran-badge-footer {
    display: inline-block;
    padding: 8px 15px;
    background: var(--veteran-blue);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-sponsor {
    margin-top: 20px;
}

.footer-sponsor p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-sponsor img {
    height: 35px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    font-style: italic;
    color: #777;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition-fast);
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sponsor-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .sponsor-card {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .veteran-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

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

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

    .product-categories {
        flex-direction: column;
    }

    .category-btn {
        width: 100%;
    }

    .partner-cards {
        grid-template-columns: 1fr;
    }

    .veteran-hero-badge {
        flex-direction: column;
        gap: 5px;
        padding: 10px 20px;
    }

    .veteran-text {
        font-size: 0.75rem;
    }
}
