:root {
    --deep-petrol: #123B42;
    --steel-blue: #416878;
    --burnt-orange: #C66A38;
    --copper: #A65D3B;
    --warm-sand: #E7D8C5;
    --light-grey: #E8ECEB;
    --mist: #F3F5F2;
    --white: #FFFFFF;
    --dark-slate: #27353A;
    --muted-teal: #6C9291;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--dark-slate);
    background-color: var(--mist);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Typography */
h1, h2, h3, h4 { color: var(--deep-petrol); margin-bottom: 1rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 800; }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; border-bottom: 3px solid var(--muted-teal); display: inline-block; padding-bottom: 0.2rem; }
h3 { font-size: 1.6rem; color: var(--steel-blue); }
p { margin-bottom: 1.2rem; }
a { color: var(--steel-blue); text-decoration: underline; font-weight: 600; transition: var(--transition); }
a:hover { color: var(--burnt-orange); }

/* Technical Elements */
.tech-bg {
    background-image: linear-gradient(45deg, var(--light-grey) 25%, transparent 25%, transparent 75%, var(--light-grey) 75%, var(--light-grey)),
                      linear-gradient(45deg, var(--light-grey) 25%, transparent 25%, transparent 75%, var(--light-grey) 75%, var(--light-grey));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }

/* In-page Anchor Targets */
.motorcycle-section {
    scroll-margin-top: 110px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--steel-blue);
    color: var(--white);
    font-weight: 800;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
}
.btn:hover { background-color: var(--deep-petrol); color: var(--white); }
.btn-primary { background-color: var(--burnt-orange); }
.btn-primary:hover { background-color: var(--copper); }
.btn-outline { background-color: transparent; border: 2px solid var(--deep-petrol); color: var(--deep-petrol); }
.btn-outline:hover { background-color: var(--deep-petrol); color: var(--white); }

/* Header */
.site-header {
    background-color: var(--deep-petrol);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--burnt-orange);
    box-shadow: 0 4px 8px rgba(18, 59, 66, 0.4);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.brand-name {
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
}
.brand-name:hover { color: var(--warm-sand); }
.main-nav { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.main-nav a { color: var(--white); font-size: 1.05rem; text-transform: uppercase; font-weight: 800; text-decoration: none; }
.main-nav a:hover, .main-nav a.active { color: var(--burnt-orange); }
.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 2.2rem; cursor: pointer; }

/* Hero */
.hero {
    background-color: var(--dark-slate);
    color: var(--white);
    padding: 8rem 20px;
    text-align: center;
    position: relative;
    border-bottom: 8px solid var(--steel-blue);
}
.hero h1 { color: var(--white); border: none; font-size: 3.8rem; margin-bottom: 1.5rem; text-shadow: 2px 2px 6px rgba(39, 53, 58, 0.8); }
.hero p { font-size: 1.5rem; font-weight: 600; max-width: 800px; margin: 0 auto 2.5rem auto; color: var(--white); text-shadow: 1px 1px 4px rgba(39, 53, 58, 0.8); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Cards & Service Finder */
.card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    padding: 2rem;
    border-top: 5px solid var(--steel-blue);
    box-shadow: 0 4px 12px rgba(39, 53, 58, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.card h3 { color: var(--deep-petrol); width: 100%; }
.card p { width: 100%; }
.card img { width: 100%; margin-bottom: 1.5rem; }
.card .btn { margin-top: auto; align-self: flex-start; }

.service-finder-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; border-bottom: 2px solid var(--light-grey); padding-bottom: 1rem; }
.sf-tab { background: var(--light-grey); color: var(--dark-slate); border: none; padding: 12px 20px; cursor: pointer; font-weight: 800; font-size: 1.05rem; transition: var(--transition); text-decoration: none; }
.sf-tab.active, .sf-tab:hover { background: var(--steel-blue); color: var(--white); }
.sf-content { display: none; background: var(--white); padding: 2rem; border-left: 5px solid var(--burnt-orange); }
.sf-content.active { display: block; animation: fadeIn 0.5s; }
.sf-content .btn { margin-top: 1rem; }

/* Checklist */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.2rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    width: 100%;
}
.checklist-item input[type="checkbox"] { width: 24px; height: 24px; accent-color: var(--burnt-orange); cursor: pointer; flex-shrink: 0; }
.checklist-item label { cursor: pointer; flex-grow: 1; font-weight: 700; font-size: 1.15rem; color: var(--dark-slate); }
.checklist-progress { background: var(--light-grey); height: 12px; border-radius: 6px; margin-bottom: 2rem; overflow: hidden; width: 100%; }
.progress-bar { background: var(--burnt-orange); height: 100%; width: 0%; transition: width 0.3s ease; }

/* FAQ Accordion */
.faq-item { margin-bottom: 1.5rem; }
.faq-question { display: flex; flex-direction: column; align-items: flex-start; cursor: pointer; width: 100%; }
.faq-title { font-weight: 800; font-size: 1.2rem; color: var(--deep-petrol); margin-bottom: 1rem; }
.faq-answer { display: none; padding-top: 1.5rem; color: var(--dark-slate); border-top: 2px solid var(--light-grey); margin-top: 1.5rem; font-weight: 500; font-size: 1.1rem; width: 100%; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question .btn { background-color: var(--deep-petrol); color: var(--white); }

/* Forms */
.form-group { margin-bottom: 1.5rem; width: 100%; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 800; color: var(--deep-petrol); font-size: 1.1rem; }
.form-control { width: 100%; padding: 14px; border: 2px solid var(--muted-teal); background: var(--white); color: var(--dark-slate); font-family: var(--font-main); font-size: 1.1rem; font-weight: 500; transition: var(--transition); border-radius: 4px; }
.form-control:focus { outline: none; border-color: var(--deep-petrol); background: var(--mist); }
textarea.form-control { resize: vertical; min-height: 150px; }
.form-hint { font-size: 0.95rem; color: var(--muted-teal); margin-top: 0.5rem; font-weight: 600; }
.disclaimer-box { background: var(--warm-sand); padding: 1.5rem; border-left: 5px solid var(--copper); margin: 2rem 0; font-size: 1.1rem; font-weight: 700; color: var(--dark-slate); box-shadow: 0 2px 8px rgba(39, 53, 58, 0.05); }

/* Notice / Warning */
.security-notice { background-color: var(--dark-slate); color: var(--white); padding: 1.5rem; border-left: 6px solid var(--burnt-orange); margin: 2rem 0; font-size: 1.1rem; font-weight: 600; box-shadow: 0 4px 10px rgba(39, 53, 58, 0.15); }
.security-notice strong { color: var(--burnt-orange); font-weight: 800; }

/* Images */
.img-responsive { max-width: 100%; height: auto; display: block; }
.tech-img { border: 4px solid var(--white); box-shadow: 0 4px 15px rgba(39, 53, 58, 0.2); margin-bottom: 1.5rem; width: 100%; }

/* Footer */
.site-footer { background-color: var(--deep-petrol); color: var(--white); padding: 4rem 20px 2rem; margin-top: 4rem; border-top: 5px solid var(--muted-teal); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { color: var(--white); border-bottom: 2px solid var(--steel-blue); padding-bottom: 0.5rem; margin-bottom: 1rem; font-weight: 800; font-size: 1.2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: var(--white); font-size: 1.05rem; font-weight: 500; text-decoration: none; }
.footer-links a:hover { color: var(--burnt-orange); text-decoration: underline; }
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--steel-blue); font-size: 1.05rem; color: var(--white); font-weight: 500; }
.footer-bottom p { color: var(--white); }
.footer-bottom a { color: var(--white); font-weight: 700; text-decoration: underline; }
.footer-bottom a:hover { color: var(--burnt-orange); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background-color: var(--dark-slate); color: var(--white); padding: 2.5rem 20px; z-index: 9999; transition: bottom 0.5s ease; box-shadow: 0 -4px 15px rgba(39, 53, 58, 0.3); border-top: 4px solid var(--burnt-orange); }
.cookie-banner.show { bottom: 0; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.cookie-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cookie-banner h4 { color: var(--white); margin-bottom: 0.5rem; border:none; font-size: 1.3rem; font-weight: 800; }
.cookie-banner p { font-size: 1.05rem; font-weight: 500; color: var(--white); margin-bottom: 0; }
.cookie-settings-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(18, 59, 66, 0.95); z-index: 10000; align-items: center; justify-content: center; }
.cookie-settings-modal.active { display: flex; }
.modal-content { background: var(--white); padding: 2.5rem; max-width: 600px; width: 90%; color: var(--dark-slate); border-top: 5px solid var(--steel-blue); box-shadow: 0 10px 30px rgba(39, 53, 58, 0.5); }

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

/* Responsive */
@media (max-width: 1200px) {
    .container { max-width: 100%; }
}
@media (max-width: 900px) {
    .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--deep-petrol); flex-direction: column; padding: 2rem 0; border-top: 2px solid var(--steel-blue); box-shadow: 0 10px 15px rgba(39, 53, 58, 0.3); align-items: center; }
    .main-nav.active { display: flex; }
    .mobile-toggle { display: block; }
    .nav-cta { margin-top: 1rem; }
}
@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .hero { padding: 5rem 20px; }
    .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; padding: 16px 20px; }
    .cookie-btns { flex-direction: column; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}