/* ===================================
   TWO WHEEL COLLECTIVE
   Cardiff's Premier Two-Wheel Repair Shop
   Color Scheme: Burnt Orange (#fb5b0b) + Yellow (#fbe70b)
   =================================== */

:root {
    --burnt-orange: #d94a0a;
    --bright-orange: #fb5b0b;
    --yellow: #fbe70b;
    --black: #000;
    --white: #fff;
    --light-gray: #f0f0f0;
    --dark-gray: #333;
    --border-gray: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    color: var(--black);
    background: var(--white);
}

h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 2.5em;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: bold;
}

h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1.8em;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.1em;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
}

p {
    font-weight: normal;
    line-height: 1.8;
    font-size: 15px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    max-width: 700px;
}

ul {
    list-style: none;
}

/* ===================================
   HEADER / MENU
   =================================== */

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--burnt-orange);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(251, 91, 11, 0.1);
}

.menu .container {
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.logo-text {
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text img {
    height: 120px;
    width: auto;
}

.logo-text:hover {
    color: var(--yellow);
}

.menu nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 320px;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.menu nav.active {
    right: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--bright-orange);
    color: var(--white);
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--burnt-orange);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-button:hover {
    color: var(--yellow);
}

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

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--burnt-orange);
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: var(--yellow);
}

@media (min-width: 968px) {
    .menu nav {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    
    .nav-links {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    
    .nav-links a {
        padding: 8px 15px;
    }
    
    .close-button {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--bright-orange);
    color: var(--white);
    border: 2px solid var(--bright-orange);
    box-shadow: 0 4px 12px rgba(251, 91, 11, 0.3);
}

.btn-primary:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 231, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--burnt-orange);
    border: 2px solid var(--burnt-orange);
}

.btn-secondary:hover {
    background: var(--burnt-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 14px;
}

.btn-nav {
    padding: 10px 25px;
    font-size: 12px;
}

/* ===================================
   CONTAINER
   =================================== */

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-main {
    padding: 80px 20px 60px;
    background-color: var(--light-gray);
    text-align: center;
}

.hero-content h1 {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 2.5em;
}

.hero-location {
    display: inline-block;
    background: var(--bright-orange);
    color: var(--white);
    padding: 10px 25px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-radius: 4px;
}

.hero-tagline {
    font-size: 1.1em;
    font-weight: normal;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.hero-image-section {
    padding: 0;
    background: var(--black);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* ===================================
   QUICK ACTIONS
   =================================== */

.quick-actions {
    background: var(--white);
    padding: 80px 0;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    background: var(--light-gray);
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.action-card:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 91, 11, 0.2);
}

.action-card-highlight {
    background: var(--bright-orange);
}

.action-card-highlight .action-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.action-card-highlight h3,
.action-card-highlight p {
    color: var(--white);
}

.action-card-highlight:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.action-card-highlight:hover .action-icon {
    filter: brightness(0);
}

.action-card-highlight:hover h3,
.action-card-highlight:hover p {
    color: var(--black);
}

.action-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.action-card h3 {
    color: var(--burnt-orange);
    margin-bottom: 10px;
    text-align: center;
}

.action-card p {
    font-size: 14px;
    color: var(--dark-gray);
    margin: 0;
    max-width: 100%;
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 80px 0;
}

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

.trust-item h2 {
    color: var(--yellow);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.trust-item p {
    color: var(--white);
    max-width: 100%;
    font-size: 16px;
}

/* ===================================
   ABOUT HOME
   =================================== */

.about-home {
    background: var(--white);
    padding: 80px 0;
}

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

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid var(--burnt-orange);
    border-radius: 8px;
}

.about-content {
    max-width: 100%;
}

.about-content h2 {
    margin-bottom: 30px;
    text-align: left;
    color: var(--burnt-orange);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 100%;
}

@media (max-width: 968px) {
    .about-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        text-align: center;
    }
}

/* ===================================
   SERVICES HOME
   =================================== */

.services-home {
    background: var(--white);
    padding: 80px 0;
}

.service-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item-home {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 8px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-item-home:hover {
    border-color: var(--burnt-orange);
    box-shadow: 0 8px 20px rgba(251, 91, 11, 0.15);
}

.service-item-home h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    color: var(--burnt-orange);
}

.service-item-home ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-item-home ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
    font-weight: normal;
    font-size: 14px;
}

.service-item-home ul li:last-child {
    border-bottom: none;
}

.service-item-home ul li:before {
    content: "✓ ";
    color: var(--burnt-orange);
    font-weight: bold;
    margin-right: 8px;
}

.service-link-home {
    display: block;
    text-align: center;
    color: var(--burnt-orange);
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.service-link-home:hover {
    color: var(--yellow);
}

/* ===================================
   WORK GALLERY
   =================================== */

.work-gallery {
    background: var(--light-gray);
    padding: 80px 0;
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    font-weight: normal;
    color: var(--dark-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 3px solid var(--white);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.gallery-item:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 91, 11, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder svg {
    width: 100%;
    height: 100%;
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    background: var(--white);
    letter-spacing: 1px;
    color: var(--burnt-orange);
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
    background: var(--white);
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 35px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--burnt-orange);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--dark-gray);
    max-width: 100%;
}

.testimonial-author {
    font-weight: bold;
    font-size: 14px;
    color: var(--burnt-orange);
    max-width: 100%;
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how-it-works {
    background: var(--light-gray);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 8px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--burnt-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: var(--yellow);
    color: var(--black);
}

.step-item h3 {
    color: var(--burnt-orange);
    margin-bottom: 15px;
    text-align: center;
}

.step-item p {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto;
}

/* ===================================
   COVERAGE AREA
   =================================== */

.coverage-area {
    background: var(--white);
    padding: 80px 0;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.area-badge {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.area-badge:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.05);
}

.coverage-note {
    text-align: center;
    font-size: 14px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-main {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-main h2 {
    color: var(--white);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-main p {
    font-size: 1.2em;
    margin: 0 auto 40px;
    max-width: 600px;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-main .btn-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.cta-main .btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

.cta-main .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-main .btn-secondary:hover {
    background: var(--white);
    color: var(--burnt-orange);
}

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
    background: var(--burnt-orange);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.1em;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   PRICING TABLE
   =================================== */

.pricing-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: var(--burnt-orange);
    color: var(--white);
}

.pricing-table th {
    padding: 20px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-gray);
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(251, 91, 11, 0.05);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 18px 20px;
    font-weight: normal;
    font-size: 15px;
}

.price-from {
    color: var(--burnt-orange);
    font-weight: bold;
    font-size: 1.1em;
}

/* ===================================
   SERVICES PAGE
   =================================== */

.services {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--burnt-orange);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--light-gray);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 91, 11, 0.15);
}

.service-icon {
    color: var(--burnt-orange);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--yellow);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--burnt-orange);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-gray);
    max-width: 100%;
    margin: 0;
}

/* ===================================
   HERO (SERVICE PAGES)
   =================================== */

.hero {
    background: var(--light-gray);
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    color: var(--burnt-orange);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--dark-gray);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FORMS
   =================================== */

.form-section {
    background: var(--white);
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 8px;
    border: 3px solid var(--burnt-orange);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--burnt-orange);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    color: var(--burnt-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--white);
    font-weight: normal;
    margin-bottom: 8px;
    max-width: 100%;
}

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--yellow);
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    max-width: 100%;
    margin: 0;
}

/* ===================================
   SCROLL TO TOP
   =================================== */

#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--bright-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(251, 91, 11, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

#scroll-to-top.visible {
    display: flex;
}

#scroll-to-top:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(251, 231, 11, 0.5);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-main {
        padding: 60px 20px 50px;
    }
    
    .btn-large {
        padding: 18px 40px;
    }
    
    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
