body {
    font-family: 'Zodiak-Variable', Georgia, serif;
}

/* Header Styles */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Mobile Hamburger Button */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        position: static;
        padding: 0;
        box-shadow: none;
        flex-direction: row;
        gap: 2rem;
    }

    .nav-links a {
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #007bff;
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: #007bff;
    }

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


/* Add these after your existing header CSS */

main {
    margin-top: 70px; /* Adjust based on your header height */
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    padding: 2rem 0;
    text-align: center;
    background: #f8f9fa;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.alt-bg {
    background-color: #f8f9fa;
}

.content-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-family: "Zodiak", Georgia, serif;
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero .lead {
        font-size: 1.5rem;
    }

    /* Base content block styles */
    .content-block {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .content-block.reverse {
        flex-direction: row-reverse;
    }

    /* 50/50 split */
    .layout-half .text-content,
    .layout-half .section-image {
        flex: 1;
        max-width: 50%;
    }

    /* 1/4 : 3/4 split */
    .layout-quarter-three .text-content {
        flex: 1;
        max-width: 25%;
    }

    .layout-quarter-three .section-image {
        flex: 3;
        max-width: 75%;
    }

    /* 2/3 : 1/3 split */
    .layout-two-third .text-content {
        flex: 2;
        max-width: 66.67%;
    }

    .layout-two-third .section-image {
        flex: 1;
        max-width: 33.33%;
    }

    /* 3/4 : 1/4 split */
    .layout-three-quarter .text-content {
        flex: 3;
        max-width: 75%;
    }

    .layout-three-quarter .section-image {
        flex: 1;
        max-width: 25%;
    }

    /* 1/3 : 2/3 split */
    .layout-third .text-content {
        flex: 1;
        max-width: 33.33%;
    }

    .layout-third .section-image {
        flex: 2;
        max-width: 66.67%;
    }

    /* Responsive text sizing */
    .text-content h2 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1.2rem;
    }

    /* Adjust text spacing based on content width */
    .layout-quarter-three .text-content,
    .layout-third .text-content {
        padding-right: 1rem;
    }

    .layout-two-third .text-content,
    .layout-three-quarter .text-content {
        padding-left: 1rem;
    }
}

/* Larger Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 40px;
    }

    .content-block {
        gap: 6rem;
    }
}

.modern-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 4rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand .footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.brand-tagline {
    color: #b3b3b3;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: #0056b3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b3b3b3;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-newsletter {
        grid-column: 1 / -1;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Product Selection Styles */
.product-selection {
    display: flex;
    width: 100%;
    height: 600px;
}

.product-option {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.product-link {
    text-decoration: none;
    color: white;
    display: block;
    height: 100%;
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background-color 0.5s ease;
}

.product-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.product-text h2 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-text p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Product selection Hover Effects */
.product-option:hover .product-overlay {
    background-color: rgba(0, 123, 255, 0.8); /* Using your existing blue accent color */
}

.product-option:hover .product-image {
    transform: scale(1.05);
}

/* Product Selection Responsive adjustments */
@media (max-width: 768px) {
    .product-selection {
        flex-direction: column;
        height: auto;
    }

    .product-option {
        height: 400px;
    }

    .product-text h2 {
        font-size: 2rem;
    }

    .product-text p {
        font-size: 1rem;
    }
}

/* Support Page Specific Styles */
.support-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../assets/images/support-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

.support-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

/* Quick Links Section */
.support-quick-links {
    padding: 4rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.quick-link-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.quick-link-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #333;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-method h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.contact-method p {
    margin: 0;
    color: #666;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        margin-top: 2rem;
    }

    .support-hero {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessories Page Styles */
.accessories-grid {
    padding: 4rem 0;
}

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

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
}

.category-content h2 {
    margin: 0 0 1rem;
    color: #333;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.category-content li {
    margin: 0.5rem 0;
    color: #666;
}

.category-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.category-button:hover {
    background: #34495e;
}

.featured-products {
    padding: 4rem 0;
}

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

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin: 0.5rem 0;
    color: #333;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: bold;
    margin: 1rem 0;
}

.add-to-cart {
    background: #27ae60;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #219a52;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-grid,
    .product-showcase {
        grid-template-columns: 1fr;
    }
}

/* Warranty Page Styles */
.warranty-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.coverage-item {
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.coverage-item .duration {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.warranty-registration {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Maintenance Page Styles */
.maintenance-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../assets/images/maintenance-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

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

.checklist-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.checklist-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.checklist-item ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.checklist-item li {
    padding: 0.5rem 0;
    color: #666;
}

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

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline-header {
    border-bottom: 2px solid #007bff;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    margin: 0;
    color: #333;
}

.duration {
    color: #666;
    font-size: 0.9rem;
}

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

.component-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.component-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.component-card h3, 
.component-card p {
    padding: 1rem;
    margin: 0;
}

.guide-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.guide-button:hover {
    background: #0056b3;
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .maintenance-timeline,
    .component-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Bike Sizing Page Styles */
.sizing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../assets/images/sizing-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
}

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

.measurement-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.measurement-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.measurement-card h3,
.measurement-card p {
    padding: 1.5rem;
    margin: 0;
}

.measurement-card h3 i {
    color: #007bff;
    margin-right: 0.5rem;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.size-calculator select,
.size-calculator input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.calculate-button {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculate-button:hover {
    background: #0056b3;
}

.size-result {
    margin-top: 2rem;
    text-align: center;
}

.size-display {
    margin-top: 1rem;
}

.size-display .size {
    font-size: 2.5rem;
    color: #007bff;
    font-weight: bold;
}

.chart-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-button {
    padding: 0.8rem 2rem;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.tab-button.active {
    background: #007bff;
    color: white;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.size-table th,
.size-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.size-table th {
    background: #f8f9fa;
    font-weight: bold;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tip-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .measurement-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-tabs {
        flex-direction: column;
    }
}