/* NextLife Mobile-First CSS */

/* CSS Variables */
:root {
    --primary-red: #e70012;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-light: #e5e5e5;
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --focus: #007bff;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles (Mobile First) */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-nav:focus {
    top: 0;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

/* Typography (Mobile First) */
h1 {
    font-size: var(--font-size-3xl);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: var(--font-size-2xl);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--font-size-xl);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover,
a:focus {
    color: #c5000f;
}

/* Lists */
ul, ol {
    margin-bottom: var(--space-md);
}

li {
    margin-bottom: var(--space-xs);
}

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

/* Header (Mobile First) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all var(--transition-normal);
}

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

.logo img {
    height: 35px;
    width: auto;
}

/* Mobile Navigation */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: 4px;
}

.nav-toggle:hover,
.nav-toggle:focus {
    background: var(--bg-light);
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-normal);
}

.nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transition: left var(--transition-normal);
    border-top: 1px solid var(--border-light);
    overflow-y: auto;
}

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

.nav-links a {
    color: var(--text-dark);
    font-weight: 400;
    font-size: var(--font-size-lg);
    text-decoration: none;
    position: relative;
    padding: var(--space-sm) 0;
    display: block;
    transition: color var(--transition-normal);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-red);
}

.nav-links a[aria-current="page"] {
    color: var(--primary-red);
    font-weight: 500;
}

.cta-header {
    background: var(--primary-red);
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 4px;
    font-weight: 500;
    margin-top: var(--space-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.cta-header:hover,
.cta-header:focus {
    background: #c5000f;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Breadcrumb Navigation */
.breadcrumb-section {
    padding: var(--space-md);
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    margin-top: 70px;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    font-size: var(--font-size-sm);
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumb li::after {
    content: '/';
    margin: 0 var(--space-sm);
    color: var(--text-gray);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: #c5000f;
    text-decoration: underline;
}

.breadcrumb .active {
    color: var(--text-gray);
    font-weight: 500;
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: var(--space-2xl) var(--space-md);
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    margin-bottom: var(--space-lg);
}

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

.hero-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
    max-width: 300px;
}

.hero-image {
    order: -1;
    width: 100%;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Hero Section Variants */
.hero-section {
    margin-top: 70px;
    padding: var(--space-2xl) var(--space-md);
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    margin-bottom: var(--space-lg);
}

.hero-section .lead {
    font-size: var(--font-size-xl);
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

.badge {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 300px;
    text-align: left;
}

.badge-icon {
    font-size: var(--font-size-2xl);
    flex-shrink: 0;
}

/* Buttons (Mobile First) */
.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all var(--transition-normal);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #c5000f;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    font-weight: 500;
    transition: all var(--transition-normal);
    display: inline-block;
    cursor: pointer;
    font-size: var(--font-size-base);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    transition: all var(--transition-normal);
    margin: var(--space-xs);
    text-align: center;
    width: calc(100% - var(--space-md));
    box-sizing: border-box;
}

.btn-white:hover,
.btn-white:focus {
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--white);
    font-weight: 500;
    transition: all var(--transition-normal);
    text-align: center;
    width: calc(100% - var(--space-md));
    box-sizing: border-box;
    margin: var(--space-xs);
}

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

.btn-small {
    padding: var(--space-sm) var(--space-md);
    border-radius: 4px;
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all var(--transition-normal);
    text-align: center;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

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

.btn-primary-small:hover,
.btn-primary-small:focus {
    background: #c5000f;
    color: var(--white);
}

.btn-secondary-small {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.btn-secondary-small:hover,
.btn-secondary-small:focus {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Content Sections */
.content-section {
    padding: var(--space-2xl) var(--space-md);
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.info-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card h3,
.info-card h4 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.info-card p {
    margin-bottom: var(--space-md);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card ul {
    margin-bottom: var(--space-md);
}

.info-card li {
    margin-bottom: var(--space-xs);
}

.info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-xl);
}

/* Features Section */
.features {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: var(--font-size-2xl);
    color: var(--primary-red);
}

.feature-card h3 {
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

/* Stock Section */
.stock-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-light);
}

.stock-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.stock-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.stock-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.stock-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--primary-red);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.stock-details {
    padding: var(--space-lg);
}

.stock-header {
    margin-bottom: var(--space-md);
}

.stock-title {
    font-size: var(--font-size-xl);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.stock-price {
    color: var(--primary-red);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.stock-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

.stock-spec {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.stock-shipping {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
    font-size: var(--font-size-sm);
    color: var(--text-gray);
}

.stock-actions {
    margin-top: var(--space-md);
    display: flex;
    gap: var(--space-sm);
}

/* Filters Section */
.filters-section {
    padding: var(--space-lg) var(--space-md);
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.filter-select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: var(--white);
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: border-color var(--transition-normal);
    width: 100%;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-red);
    outline: none;
}

.results-count {
    color: var(--text-gray);
    font-size: var(--font-size-sm);
    text-align: center;
    margin-top: var(--space-md);
}

/* Stock Container */
.stock-container {
    padding: var(--space-2xl) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.pagination button {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 80px;
}

.pagination button:hover:not(:disabled) {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--text-dark);
}

.page-number:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.page-number.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Back Order Section */
.backorder-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

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

.backorder-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    align-items: center;
    text-align: center;
}

.backorder-text h2 {
    margin-bottom: var(--space-lg);
}

.backorder-text p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.backorder-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    width: 100%;
    max-width: 400px;
}

.backorder-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-base);
    justify-content: center;
}

.feature-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.backorder-image {
    order: -1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 400px;
}

.backorder-image img {
    width: 100%;
    height: auto;
}

/* Process Section */
.process-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: var(--space-2xl) auto;
    position: relative;
    padding: var(--space-xl) 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--border-light);
    z-index: 0;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    gap: var(--space-lg);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-content {
    padding: var(--space-xl);
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    order: 2;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
    font-size: var(--font-size-xl);
}

.step-content p {
    margin: 0;
    font-size: var(--font-size-base);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    order: 1;
    margin-left: -5px;
}

/* Process Overview */
.process-overview {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.overview-item {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.overview-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin: 0 auto var(--space-md);
}

.overview-item h3,
.overview-item h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.overview-item p {
    font-size: var(--font-size-base);
    margin: 0;
}

/* Detailed Steps */
.detailed-steps {
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-light);
}

.step-detail {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 600;
    flex-shrink: 0;
}

.step-title h3 {
    margin-bottom: var(--space-sm);
}

.step-title p {
    font-size: var(--font-size-base);
    margin: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.step-text h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.step-text ul {
    list-style: none;
    padding: 0;
}

.step-text ul li {
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--text-gray);
}

.step-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 600;
}

.step-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    order: -1;
}

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

/* Timeline */
.timeline-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.timeline {
    max-width: 1000px;
    margin: var(--space-2xl) auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--border-light);
    z-index: 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.timeline-icon,
.timeline-date {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    margin-left: -5px;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-red);
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h3,
.timeline-item h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.timeline-content p,
.timeline-item p {
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Documents Section */
.documents-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-light);
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.document-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 8px;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.document-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-md);
}

.document-card h3,
.document-card h4 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.document-card p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

.download-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
}

.download-link:hover,
.download-link:focus {
    text-decoration: underline;
}

/* Testimonials */
.testimonials {
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--text-gray);
    font-size: var(--font-size-base);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-red);
    flex-shrink: 0;
}

.author-info h4,
.author-info cite {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-style: normal;
}

.author-info p {
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.contact-content,
.contact-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-info h3 {
    margin-bottom: var(--space-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.info-item .info-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-red);
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.info-card {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--font-size-xl);
}

.info-content h3,
.info-content h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
}

.info-content a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.info-content a:hover,
.info-content a:focus {
    color: #c5000f;
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-light);
    border-radius: 8px;
}

.business-hours h3,
.business-hours h4 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.hours-list {
    list-style: none;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: 8px;
}

.contact-form-section {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-section h2,
.contact-form-section h3 {
    margin-bottom: var(--space-lg);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-dark);
    font-size: var(--font-size-base);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-normal);
    font-family: inherit;
    background: var(--white);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(231, 0, 18, 0.1);
}

.form-group input:invalid:not(:focus),
.form-group textarea:invalid:not(:focus),
.form-group select:invalid:not(:focus) {
    border-color: var(--error);
}

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

.form-group small {
    color: var(--text-gray);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
    display: block;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Error Messages */
.error-message {
    color: var(--error);
    font-size: var(--font-size-sm);
    margin-top: var(--space-xs);
    display: block;
    min-height: 1.2em;
}

/* Fieldsets */
fieldset {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}

fieldset legend {
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

fieldset legend.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: var(--font-size-base);
    padding: var(--space-sm);
    border-radius: 4px;
    transition: background-color var(--transition-normal);
}

.checkbox-label:hover {
    background-color: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.submit-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-md);
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    margin: var(--space-xl) auto;
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: var(--font-size-2xl);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--text-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-normal);
}

.modal-close:hover,
.modal-close:focus {
    background: var(--bg-light);
}

.modal-body {
    padding: var(--space-xl);
}

.form-section {
    margin-bottom: var(--space-xl);
}

.form-section h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

/* Map Section */
.map-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--bg-light);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-frame {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-container address {
    margin-top: var(--space-xl);
    font-style: normal;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Response Time Banner */
.response-banner {
    background: var(--primary-red);
    color: var(--white);
    padding: var(--space-xl);
    text-align: center;
    margin-top: var(--space-2xl);
}

.response-banner h2,
.response-banner h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.response-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background var(--transition-normal);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-size-base);
    color: var(--text-dark);
}

.faq-question:hover,
.faq-question:focus {
    background: rgba(231, 0, 18, 0.05);
}

.faq-toggle {
    font-size: var(--font-size-2xl);
    color: var(--primary-red);
    transition: transform var(--transition-normal);
    margin-left: var(--space-md);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 500px;
}

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

/* CTA Section */
.cta-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    margin-top: var(--space-2xl);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

/* Maintenance Categories */
.category-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.category-tab {
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    color: var(--text-dark);
    text-align: center;
    font-size: var(--font-size-base);
}

.category-tab.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.category-tab:hover:not(.active) {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Maintenance Cards */
.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.maintenance-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.maintenance-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: var(--primary-red);
    color: var(--white);
    padding: var(--space-lg);
}

.card-header h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-sm);
}

.frequency {
    font-size: var(--font-size-base);
    opacity: 0.9;
}

.card-content {
    padding: var(--space-lg);
}

.task-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.task-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--text-gray);
}

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

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: var(--space-md);
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.warning-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.tip-box {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: var(--space-md);
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
}

.success-box {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.success-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

/* Parts Guide Section */
.parts-section {
    margin-top: var(--space-2xl);
}

.parts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.part-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-normal);
}

.part-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.part-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.part-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
}

.part-card p {
    font-size: var(--font-size-base);
    margin: 0;
}

/* Video Section */
.video-section {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    border-radius: 12px;
    margin: var(--space-2xl) 0;
}

.video-section h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.video-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: var(--space-2xl) var(--space-xl);
    margin-top: var(--space-xl);
}

/* Schedule Table */
.schedule-table {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.table-container {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: var(--font-size-sm);
}

th {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-md);
    text-align: left;
    font-weight: 500;
    font-size: var(--font-size-sm);
}

td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
    font-size: var(--font-size-sm);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: var(--bg-light);
}

.interval {
    font-weight: 600;
    color: var(--primary-red);
}

.year-eligible {
    background: #d4edda;
    color: #155724;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    font-weight: 500;
    font-size: var(--font-size-xs);
}

/* Table of Contents */
.toc-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.toc-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: 12px;
}

.toc-container h3 {
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-xl);
}

.toc-list {
    list-style: none;
    display: grid;
    gap: var(--space-md);
}

.toc-list li {
    border-left: 3px solid var(--primary-red);
    padding-left: var(--space-md);
    margin-bottom: 0;
}

.toc-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
    display: block;
    padding: var(--space-sm);
}

.toc-list a:hover,
.toc-list a:focus {
    color: var(--primary-red);
}

/* Guide Content */
.guide-section {
    padding: var(--space-2xl) var(--space-md);
}

.guide-section:nth-child(even) {
    background: var(--bg-light);
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    font-weight: 600;
    margin-right: var(--space-md);
    margin-bottom: var(--space-md);
}

.guide-content {
    margin-top: var(--space-xl);
}

.guide-content p {
    margin-bottom: var(--space-lg);
}

.guide-list {
    list-style: none;
    margin: var(--space-lg) 0;
}

.guide-list li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

/* Country Tabs */
.country-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tab-button {
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: var(--font-size-base);
    text-align: center;
}

.tab-button.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.tab-button:hover:not(.active) {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.tab-content {
    display: none;
    animation: fadeIn var(--transition-normal) ease-in;
}

.tab-content.active {
    display: block;
}

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

/* Download Section */
.download-section {
    background: var(--primary-red);
    color: var(--white);
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    border-radius: 12px;
    margin-top: var(--space-2xl);
}

.download-section h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.download-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
    margin-top: var(--space-2xl);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    margin-bottom: var(--space-md);
    font-weight: 500;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.blog-post {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.blog-content {
    padding: var(--space-lg);
}

.blog-meta {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    margin-bottom: var(--space-md);
}

.blog-meta span {
    margin-right: var(--space-sm);
}

.blog-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.blog-content p {
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.read-more:hover,
.read-more:focus {
    color: #c5000f;
}

.coming-soon-notice {
    background: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: 12px;
    text-align: center;
    margin-top: var(--space-2xl);
}

.coming-soon-notice h3 {
    margin-bottom: var(--space-md);
}

.coming-soon-notice p {
    margin-bottom: var(--space-sm);
}

/* Price Display */
.price {
    font-size: var(--font-size-3xl);
    color: var(--primary-red);
    margin: var(--space-md) 0;
    font-weight: 600;
}

/* Report Preview Section */
.report-preview {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design - Mobile First Approach */

/* Small devices (480px and up) */
@media (min-width: 480px) {
    /* Typography adjustments */
    h1 {
        font-size: var(--font-size-4xl);
    }
    
    h2 {
        font-size: var(--font-size-3xl);
    }
    
    /* Button improvements */
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
    
    .btn-white,
    .btn-outline {
        width: auto;
        margin: var(--space-sm);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
    
    /* Grid improvements */
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkbox-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    /* Form improvements */
    .form-row {
        flex-direction: row;
        gap: var(--space-lg);
    }
    
    .submit-section {
        flex-direction: row;
        justify-content: flex-end;
    }
    
    .submit-section .btn-primary,
    .submit-section .btn-secondary {
        width: auto;
    }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
    /* Navigation - Desktop style */
    .nav-toggle {
        display: none;
    }
    
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: var(--space-2xl);
        transition: none;
        border: none;
        left: 0;
    }
    
    .nav-links a {
        font-size: var(--font-size-base);
        padding: 0;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-red);
        transition: width var(--transition-normal);
    }
    
    .nav-links a:hover::after,
    .nav-links a[aria-current="page"]::after {
        width: 100%;
    }
    
    .cta-header {
        margin-top: 0;
        text-align: left;
    }
    
    /* Hero section improvements */
    .hero-content {
        flex-direction: row;
        text-align: left;
    }
    
    .hero-image {
        order: 0;
        max-width: 500px;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .badge {
        max-width: 250px;
    }
    
    /* Grid improvements */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .maintenance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process timeline improvements */
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
        top: 30px;
        height: calc(100% - 60px);
    }
    
    .process-step {
        grid-template-columns: 1fr auto 1fr;
        gap: var(--space-2xl);
        margin-bottom: var(--space-2xl);
    }
    
    .process-step .step-number {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
        margin-left: 0;
        order: 2;
    }
    
    .process-step:nth-child(odd) .step-content {
        text-align: right;
        justify-self: end;
        order: 1;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: left;
        justify-self: start;
        order: 3;
    }
    
    /* Timeline improvements */
    .timeline {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .timeline::before {
        left: 10%;
        right: 10%;
        top: 30px;
        height: 2px;
        width: auto;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        max-width: 180px;
    }
    
    .timeline-content {
        order: 2;
    }
    
    .timeline-icon,
    .timeline-date {
        order: 1;
        margin-left: 0;
        margin-bottom: var(--space-md);
    }
    
    /* Contact section improvements */
    .contact-content,
    .contact-container {
        flex-direction: row;
        gap: var(--space-2xl);
    }
    
    .backorder-content {
        flex-direction: row;
        text-align: left;
    }
    
    .backorder-image {
        order: 0;
        max-width: 400px;
    }
    
    .backorder-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Step content improvements */
    .step-content {
        flex-direction: row;
    }
    
    .step-header {
        flex-direction: row;
        text-align: left;
    }
    
    .step-image {
        order: 0;
        max-width: 400px;
    }
    
    /* Filter improvements */
    .filters-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .filter-group {
        flex-direction: row;
        flex: 1;
    }
    
    .results-count {
        margin-top: 0;
        text-align: right;
    }
    
    /* Category tabs improvements */
    .category-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Country tabs improvements */
    .country-tabs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Map frame height increase */
    .map-frame {
        height: 400px;
    }
    
    /* Page header improvements */
    .page-header p {
        font-size: var(--font-size-xl);
        max-width: 700px;
    }
}

/* Large devices (1024px and up) */
@media (min-width: 1024px) {
    /* Grid improvements for larger screens */
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stock-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .maintenance-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .parts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer improvements */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Hero improvements */
    .hero {
        min-height: 80vh;
    }
    
    /* Larger buttons on desktop */
    .btn-primary,
    .btn-secondary {
        width: auto;
    }
    
    /* Timeline item improvements */
    .timeline-item {
        max-width: 200px;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    /* Container adjustments */
    .container {
        padding: 0 var(--space-xl);
    }
    
    /* Stock grid for very large screens */
    .stock-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Better spacing for large screens */
    nav {
        padding: var(--space-lg) var(--space-xl);
    }
    
    .content-section {
        padding: var(--space-2xl) var(--space-xl);
    }
    
    /* Typography scale up */
    .hero-section .lead {
        font-size: var(--font-size-2xl);
    }
    
    .response-banner p {
        font-size: var(--font-size-xl);
    }
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a,
    a:visited {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    
    .skip-nav,
    .nav-toggle,
    .modal-overlay,
    .cta-section,
    footer {
        display: none !important;
    }
    
    .page-header {
        margin-top: 0;
    }
    
    .breadcrumb-section {
        margin-top: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --text-gray: #000000;
        --bg-light: #ffffff;
    }
    
    .info-card {
        border: 2px solid var(--text-dark);
    }
    
    .btn-secondary {
        border: 2px solid var(--text-dark);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support (if enabled by user) */
@media (prefers-color-scheme: dark) {
    /* Note: This would only apply if we wanted to support 
       automatic dark mode. For now, we'll keep the brand 
       colors as they are designed. */
}

