/* ===========================
   ROCHESTER MAPLE BATS - STYLES
   Modern Athletic E-Commerce Design
   =========================== */

/* CSS Variables */
:root {
    /* Colors */
    --navy-dark: #0A1628;
    --navy-medium: #1a2942;
    --navy-light: #2d3e5f;
    --wood-tan: #C19A6B;
    --wood-light: #D4B896;
    --slate: #2C3E50;
    --slate-light: #394d63;
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E8EAED;
    --gray-medium: #9CA3AF;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--navy-dark);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--wood-tan);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--wood-tan);
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--wood-light);
    letter-spacing: 0.2em;
    margin-top: 0.25rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--off-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wood-tan);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--wood-tan);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-small {
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--wood-tan);
    color: var(--navy-dark);
    border-color: var(--wood-tan);
}

.btn-primary:hover {
    background: var(--wood-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(193, 154, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--wood-tan);
    border-color: var(--wood-tan);
    padding: 0.75rem 1.5rem;
}

.btn-secondary:hover {
    background: var(--wood-tan);
    color: var(--navy-dark);
}

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border-color: var(--off-white);
}

.btn-outline:hover {
    background: var(--off-white);
    color: var(--navy-dark);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    background: var(--navy-medium);
    color: var(--wood-tan);
    border-color: var(--navy-medium);
}

.btn-small:hover {
    background: var(--wood-tan);
    color: var(--navy-dark);
    border-color: var(--wood-tan);
}

.btn-primary.large,
.btn-outline.large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-primary.full-width {
    width: 100%;
    text-align: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--slate) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(193, 154, 107, 0.03) 2px,
            rgba(193, 154, 107, 0.03) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(193, 154, 107, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line.highlight {
    color: var(--wood-tan);
    animation: slideInRight 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stats {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: right;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--wood-tan);
    backdrop-filter: blur(10px);
    animation: fadeInRight 0.8s ease-out calc(0.6s + var(--delay, 0s)) both;
}

.stat-item:nth-child(1) { --delay: 0s; }
.stat-item:nth-child(2) { --delay: 0.2s; }
.stat-item:nth-child(3) { --delay: 0.4s; }

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--wood-tan);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--wood-tan);
    margin: 1rem auto 0;
    position: relative;
    animation: scrollBounce 2s infinite;
}

/* ===========================
   SECTIONS
   =========================== */
.brands-section,
.featured-products,
.why-choose,
.shop-section,
.about-content,
.values-section,
.why-buy-section,
.guide-section,
.comparison-section,
.contact-section,
.faq-section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--wood-tan);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--wood-tan);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.view-all {
    color: var(--wood-tan);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.view-all:hover {
    transform: translateX(10px);
}

/* ===========================
   BRANDS GRID
   =========================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-card {
    background: var(--navy-medium);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--wood-tan);
    box-shadow: 0 20px 40px rgba(193, 154, 107, 0.2);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--wood-tan);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.brand-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ===========================
   PRODUCTS GRID
   =========================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--navy-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--wood-tan);
    box-shadow: 0 20px 50px rgba(193, 154, 107, 0.25);
}

.product-image {
    position: relative;
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%);
    padding: 3rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--wood-tan);
    color: var(--navy-dark);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

.product-badge.special {
    background: var(--gold-accent);
}

.product-badge.deal {
    background: #E74C3C;
    color: white;
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.bat-icon {
    font-size: 5rem;
    opacity: 0.3;
    transform: rotate(-45deg);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec {
    background: var(--navy-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--wood-light);
    border: 1px solid rgba(193, 154, 107, 0.3);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--wood-tan);
}

/* ===========================
   FEATURES GRID
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--navy-medium);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--wood-tan);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy-medium) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 3px solid var(--wood-tan);
    border-bottom: 3px solid var(--wood-tan);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--wood-tan);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   SHOP PAGE
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--navy-medium) 0%, var(--slate) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 3px solid var(--wood-tan);
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
}

.filter-section {
    background: var(--navy-medium);
    padding: 2rem 0;
    position: sticky;
    top: 85px;
    z-index: 100;
    border-bottom: 2px solid var(--wood-tan);
}

.filter-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--navy-dark);
    color: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--wood-tan);
    color: var(--navy-dark);
    border-color: var(--wood-tan);
}

.brand-section {
    margin-bottom: var(--spacing-lg);
}

.brand-title {
    font-size: 2.5rem;
    color: var(--wood-tan);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(193, 154, 107, 0.3);
}

.brand-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--navy-medium);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--wood-tan);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
}

.shop-product-card {
    background: var(--navy-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.shop-product-card:hover {
    transform: translateY(-8px);
    border-color: var(--wood-tan);
    box-shadow: 0 20px 50px rgba(193, 154, 107, 0.25);
}

.shop-product-image {
    position: relative;
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%);
    padding: 2.5rem;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-placeholder.large {
    width: 100%;
    height: 100%;
}

.shop-product-info {
    padding: 2rem;
}

.shop-product-title {
    font-size: 1.75rem;
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.shop-product-description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-specs-detailed {
    background: var(--navy-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--gray-medium);
    font-weight: 600;
}

.spec-value {
    color: var(--wood-light);
    font-weight: 500;
}

.shop-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(193, 154, 107, 0.2);
}

.shop-product-footer form {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.length-select {
    padding: 0.75rem 1rem;
    background: var(--navy-dark);
    color: var(--wood-light);
    border: 2px solid var(--wood-tan);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.length-select:hover {
    background: var(--navy-light);
}

.shop-product-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--wood-tan);
}

.discount-banner {
    background: linear-gradient(135deg, var(--wood-tan) 0%, var(--wood-light) 100%);
    padding: 4rem 0;
    text-align: center;
    margin-top: var(--spacing-lg);
}

.discount-banner h2 {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.discount-banner p {
    font-size: 1.25rem;
    color: var(--navy-medium);
    margin-bottom: 2rem;
}

.discount-banner .btn-primary {
    background: var(--navy-dark);
    color: var(--wood-tan);
    border-color: var(--navy-dark);
}

.discount-banner .btn-primary:hover {
    background: var(--navy-medium);
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-title {
    font-size: 2.5rem;
    color: var(--wood-tan);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    background: var(--navy-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--wood-tan);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    text-align: center;
    color: var(--wood-tan);
}

.placeholder-content p {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--navy-medium);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--wood-tan);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--wood-tan);
    transform: translateY(-5px);
}

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

.value-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(193, 154, 107, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.75rem;
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

.why-buy-content {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.reason-item {
    display: flex;
    gap: 2rem;
    background: var(--navy-medium);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--wood-tan);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.15);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--wood-tan);
    flex-shrink: 0;
}

.reason-text h3 {
    font-size: 1.5rem;
    color: var(--wood-tan);
    margin-bottom: 0.75rem;
}

.reason-text p {
    color: var(--gray-light);
    line-height: 1.7;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-card {
    background: var(--navy-medium);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition);
}

.guide-card:hover {
    border-color: var(--wood-tan);
}

.guide-card h3 {
    font-size: 1.5rem;
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.guide-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

.guide-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--slate) 0%, var(--navy-medium) 100%);
    border-radius: var(--radius-lg);
}

.guide-cta-text {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.comparison-col h3 {
    font-size: 2rem;
    color: var(--wood-tan);
    margin-bottom: 1.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 1rem 0 1rem 2.5rem;
    color: var(--gray-light);
    line-height: 1.7;
    position: relative;
}

.comparison-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--wood-tan);
    font-size: 1.25rem;
}

.comparison-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--navy-medium);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-accent);
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--wood-tan);
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    background: var(--navy-medium);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.15);
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.method-details h3 {
    font-size: 1.25rem;
    color: var(--wood-tan);
    margin-bottom: 0.75rem;
}

.method-details p {
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.method-details a {
    color: var(--wood-light);
    font-weight: 600;
}

.method-details a:hover {
    color: var(--wood-tan);
}

.method-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: var(--wood-tan);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--wood-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: var(--navy-dark);
    color: var(--off-white);
    border: 2px solid rgba(193, 154, 107, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wood-tan);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--navy-medium);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--wood-tan);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.15);
}

.faq-item h3 {
    font-size: 1.5rem;
    color: var(--wood-tan);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--navy-dark);
    border-top: 3px solid var(--wood-tan);
    padding: 4rem 0 2rem;
    margin-top: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--wood-tan);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--wood-tan);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(193, 154, 107, 0.2);
    text-align: center;
    color: var(--gray-medium);
}

.footer-seo {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--wood-tan);
    }
    
    .brands-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
}
