/* ===== FONTS ===== */
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-ExtraLightItalic.ttf') format('truetype'); font-weight: 200; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-SemiBoldItalic.ttf') format('truetype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-ExtraBoldItalic.ttf') format('truetype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('/assets/fonts/Mulish-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red: #B5362A;
    --teal: #2E4F5C;
    --teal-dark: #1E3640;
    --teal-light: #3A6B7C;
    --white: #FFFFFF;
    --off-white: #F5F5F3;
    --gray-light: #E8E8E6;
    --gray: #888;
    --text: #2A2A2A;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Mulish', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    z-index: 1000;
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo img { height: 60px; }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--teal-dark);
    letter-spacing: 0.02em;
    transition: color 0.2s;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--red); }

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
    background: #9C2E24 !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--teal-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform 0.25s;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 260px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--teal-dark) !important;
    text-transform: none;
    transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--red) !important;
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-light);
    margin: 6px 0;
}

.dropdown-all {
    font-weight: 700 !important;
    color: var(--red) !important;
}

/* ===== HERO ===== */
.hero {
    margin-top: 80px;
    position: relative;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
    color: var(--white);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(181,54,42,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* hero::after red bar removed — replaced by section divider */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--red); display: inline; }

.hero p {
    font-size: 1.15rem;
    max-width: 560px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}
.btn-primary:hover {
    background: #9C2E24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181,54,42,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}
.stat p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.7;
    margin-bottom: 0;
}

/* ===== SPECIALTIES BAR ===== */
.specialties {
    background: var(--off-white);
    padding: 48px 0;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.spec-item {
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.2s;
}

.spec-item--featured {
    background: var(--white);
    border: 2px solid var(--red);
    box-shadow: 0 4px 24px rgba(181, 54, 42, 0.1);
    position: relative;
    transform: scale(1.04);
}

.spec-featured-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.spec-item--featured .spec-icon {
    background: var(--red);
}

.spec-item--featured h3 {
    color: var(--red);
}

.spec-item--featured .brand-tag {
    border-color: rgba(181, 54, 42, 0.2);
    color: var(--red);
}

.spec-icon {
    width: 64px;
    height: 64px;
    background: var(--teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
}

.spec-item h3 {
    font-size: 1.15rem;
    color: var(--teal-dark);
    margin-bottom: 6px;
}

.spec-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.spec-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.brand-tag {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
}

/* ===== SECTION HEADINGS ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .label {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--teal-dark);
    font-weight: 800;
}

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

/* ===== SERVICES ===== */
.services {
    padding: 96px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-story-content .label {
    display: inline-block;
    background: rgba(181, 54, 42, 0.08);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.about-story-content h2 {
    font-size: 2rem;
    color: var(--teal-dark);
    margin-bottom: 24px;
    line-height: 1.25;
}

.about-story-content p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-highlight {
    background: var(--off-white);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gray-light);
}

.about-highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 4px;
}

.about-highlight-label {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 600;
}

.about-commitment {
    padding: 80px 0;
}

.about-promises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.about-promise {
    text-align: center;
    padding: 32px 24px;
}

.about-promise-icon {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
}

.about-promise h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 10px;
}

.about-promise p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us {
    background: var(--teal-dark);
    color: var(--white);
    padding: 96px 0;
}

.why-us .section-header h2 { color: var(--white); }
.why-us .section-header p { color: rgba(255,255,255,0.65); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
}

.why-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 96px 0;
    background: var(--off-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--gray-light);
    position: relative;
}

.testimonial-stars {
    color: #F4A623;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-name { font-weight: 700; color: var(--teal-dark); }
.testimonial-vehicle { font-size: 0.82rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #9C2E24 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--red);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 800;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-hours {
    margin-top: 24px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== CONTACT CTA (Homepage) ===== */
.contact-cta {
    padding: 96px 0;
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
}

.contact-cta-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--off-white);
    border-radius: 12px;
    border: 1px solid var(--gray-light);
}

.contact-cta-icon {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
}

.contact-cta-card h3 {
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.contact-cta-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== CONTACT / MAP ===== */
.contact {
    padding: 96px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: var(--teal-dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--teal);
}

.contact-item strong {
    display: block;
    color: var(--teal-dark);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.92rem;
    color: var(--gray);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.hours-table tr { border-bottom: 1px solid var(--gray-light); }

.hours-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--teal-dark);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--gray);
}

.contact-form {
    background: var(--off-white);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.3rem;
    color: var(--teal-dark);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--teal-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--teal);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.btn-submit:hover { background: var(--teal-dark); }

/* ===== FOOTER ===== */
footer {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Variant heights */
.section-divider--sm { margin: -1px 0; }
.section-divider--md { margin: -2px 0; }

/* Flip for bottom-of-section use */
.section-divider--flip svg {
    transform: scaleY(-1);
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
    color: var(--white);
    padding: 64px 0 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181,54,42,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 560px;
    line-height: 1.7;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.breadcrumb a {
    color: var(--white);
    transition: opacity 0.2s;
}

.breadcrumb a:hover { opacity: 0.6; }

.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== SERVICE CARD LINK ===== */
a.service-card--link {
    display: block;
    color: inherit;
    text-decoration: none;
}

a.service-card--link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
    padding: 72px 0 96px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    color: var(--teal-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 1.2rem;
    color: var(--teal-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--gray-light);
}

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

.service-feature-list svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: 104px;
}

.sidebar-cta {
    background: var(--off-white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.sidebar-cta h3 {
    font-size: 1.2rem;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sidebar-services {
    background: var(--off-white);
    border-radius: 16px;
    padding: 28px 32px;
}

.sidebar-services h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal-dark);
    margin-bottom: 16px;
}

.sidebar-services ul {
    list-style: none;
    padding: 0;
}

.sidebar-services li {
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-services li:last-child { border-bottom: none; }

.sidebar-services li a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
}

.sidebar-services li a:hover {
    color: var(--red);
    padding-left: 6px;
}

.sidebar-services li.active a {
    color: var(--red);
    font-weight: 700;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        border-bottom: 3px solid var(--red);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 16px;
    }

    /* Mobile dropdown */
    .nav-dropdown { position: static; }
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        min-width: auto;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu,
    .dropdown-menu { transform: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 6px 0; font-size: 0.85rem; }
    .dropdown-divider { margin: 4px 0; }

    .hero-content { padding: 48px 0; }
    .hero { min-height: auto; }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .spec-grid { grid-template-columns: 1fr; }
    .spec-item--featured { transform: scale(1); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .testimonial-grid { grid-template-columns: 1fr; }

    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-sidebar { position: static; }
    .page-hero { padding: 48px 0 56px; }

    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-story-content h2 { font-size: 1.6rem; }
    .about-promises-grid { grid-template-columns: 1fr; }
    .contact-cta-grid { grid-template-columns: 1fr; }
}
