:root {
    --primary: #00d426;
    --primary-dark: #00b321;
    --accent: #39ff14;
    --gradient: linear-gradient(135deg, #00d426, #39ff14);
    --gradient-warm: linear-gradient(135deg, #00d426, #00b321);
    --bg-dark: #0a0a0a;
    --bg-dark-alt: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --radius: 16px;
    --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: #fff;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-icon {
    color: var(--primary);
}

.btn-gradient {
    background: var(--gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00b321, #39ff14);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-gradient:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 38, 0.4);
}

.btn-gradient:hover::before { opacity: 1; }
.btn-gradient > * { position: relative; z-index: 1; }
.btn-gradient i, .btn-gradient span { position: relative; z-index: 1; }

.btn-outline-light {
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 38, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    transition: all 0.3s ease;
    max-width: 200px;
    height: auto;
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        max-width: 160px;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 60%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.7rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(0, 212, 38, 0.4);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 17, 23, 0.92) 0%, rgba(15, 17, 23, 0.7) 50%, rgba(15, 17, 23, 0.85) 100%);
}

#heroParticles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 38, 0.15);
    border: 1px solid rgba(0, 212, 38, 0.3);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
    text-decoration: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   PAGE HERO (sub-pages)
============================================ */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.page-hero-sm {
    background: var(--bg-dark-alt);
    min-height: 300px;
    padding: 8rem 0 4rem;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 17, 23, 0.6), rgba(15, 17, 23, 0.95));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
}

.breadcrumb-dark {
    margin-bottom: 1rem;
}

.breadcrumb-dark .breadcrumb-item a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-dark .breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ============================================
   CONTENT SECTIONS
============================================ */
.content-section {
    padding: 5rem 0;
}

.bg-dark-alt {
    background: var(--bg-dark-alt);
}

.section-badge {
    display: inline-block;
    background: rgba(0, 212, 38, 0.1);
    color: var(--primary);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICE CARDS
============================================ */
.service-card {
    cursor: pointer;
}

a .service-card,
a .service-card * {
    text-decoration: none !important;
}

a .service-card p,
a .service-card .text-light {
    color: rgba(255, 255, 255, 0.65) !important;
}

a .service-card h3 {
    color: #fff !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px rgba(0, 212, 38, 0.4);
}

.btn-glow-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-card:hover .btn-glow-link {
    color: #fff;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0, 212, 38, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ============================================
   FEATURE ITEMS
============================================ */
.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ============================================
   IMAGE SHOWCASE
============================================ */
.image-showcase {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.image-showcase img {
    width: 100%;
    transition: all 0.6s ease;
}

.image-showcase:hover img {
    transform: scale(1.03);
}

.image-showcase-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   GALLERY
============================================ */
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 212, 38, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

#galleryModalImg[src=""],
#galleryModalImg:not([src]) {
    display: none;
}

/* ============================================
   REVIEWS CAROUSEL
============================================ */
.reviews-carousel {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: reviewsScroll 60s linear infinite;
    width: max-content;
}

.review-slide {
    flex-shrink: 0;
    width: 380px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.review-source {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-source .bi-facebook {
    color: #1877f2;
}

.review-source .bi-google {
    color: #ea4335;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-carousel:hover .reviews-track {
    animation-play-state: paused;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-dark-alt);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 38, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
    background: #0a0c12;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
}

.footer-logo {
    opacity: 0.9;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links i {
    color: var(--primary);
    width: 1.2em;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.opening-hours .day {
    color: var(--text-muted);
}

.opening-hours .hours {
    color: var(--text);
    font-weight: 500;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

.footer-credit-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credit-link:hover {
    color: var(--accent);
}

/* ============================================
   FORMS
============================================ */
.form-control-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    transition: all 0.3s ease;
}

.form-control-dark:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 38, 0.2);
}

.form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-select.form-control-dark {
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23aaaaaa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select.form-control-dark option {
    background: #1a1a1a;
    color: #fff;
}

/* ============================================
   FAQ ACCORDION
============================================ */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 212, 38, 0.08);
    color: var(--accent);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(60%) sepia(98%) saturate(1000%) hue-rotate(90deg);
}

.accordion-body {
    color: var(--text-muted);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

/* ============================================
   SCROLL REVEAL
============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
============================================ */
.min-vh-75 {
    min-height: 75vh;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991.98px) {
    .navbar {
        background: rgba(15, 17, 23, 0.97) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .navbar-collapse {
        background: rgba(20, 22, 32, 0.98);
        border-radius: var(--radius);
        padding: 1.5rem;
        margin-top: 0.75rem;
        border: 1px solid var(--border-glass);
    }

    .navbar-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navbar-nav .nav-item {
        list-style: none;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: var(--radius-sm);
        font-size: 1.05rem;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(0, 212, 38, 0.1);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-glass);
    }

    .navbar-nav .nav-item.ms-lg-3 .btn {
        width: 100%;
        padding: 0.7rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hero-stat-value {
        font-size: 1.5rem;
        min-width: 60px;
    }

    .content-section {
        padding: 3.5rem 0;
    }

    .page-hero {
        padding: 7rem 0 3rem;
        min-height: 300px;
    }

    .review-slide {
        width: 85vw;
    }

    .review-card {
        padding: 1.25rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-cta .me-3 {
        margin-right: 0 !important;
    }

    .cta-section .d-flex.gap-3 {
        flex-direction: column;
    }

    .cta-section .d-flex.gap-3 .btn {
        width: 100%;
    }
}

/* ============================================
   FLOATING CALL BUTTON (Mobile)
============================================ */
.floating-call-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 212, 38, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: callPulse 2s infinite;
}

.floating-call-btn:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 212, 38, 0.6);
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 212, 38, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(0, 212, 38, 0.8), 0 0 0 10px rgba(0, 212, 38, 0.1); }
}

@media (max-width: 991.98px) {
    .floating-call-btn { display: flex; }
}

/* ============================================
   BEFORE & AFTER RESULTS
============================================ */
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: rgba(0, 212, 38, 0.3);
    transform: translateY(-4px);
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.result-vehicle {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-glass);
}

/* ============================================
   REVIEW CTA
============================================ */
.review-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 38, 0.08) 0%, rgba(57, 255, 20, 0.04) 100%);
    border-top: 1px solid rgba(0, 212, 38, 0.15);
    border-bottom: 1px solid rgba(0, 212, 38, 0.15);
}

/* ============================================
   BLOG
============================================ */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 38, 0.2);
    transform: translateY(-4px);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-post-content {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-post-content h2, .blog-post-content h3 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   SERVICE AREA PAGES
============================================ */
.suburb-hero-badge {
    display: inline-block;
    background: rgba(0, 212, 38, 0.15);
    border: 1px solid rgba(0, 212, 38, 0.3);
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ============================================
   CROSS-LINK OTHER SERVICES
============================================ */
.other-services-grid .glass-card {
    text-align: center;
    padding: 1.5rem;
}

.other-services-grid a {
    text-decoration: none;
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero-bg {
        animation: none;
        transform: scale(1);
    }

    .reviews-track {
        animation: none;
    }
}
