
        /* CSS Custom Properties */
        :root {
            --primary: #0F172A;
            --secondary: #334155;
            --accent: #D97706;
            --accent-hover: #B45309;
            --bg: #F8FAFC;
            --surface: #FFFFFF;
            --fg: #020617;
            --muted: #E8ECF1;
            --border: #E2E8F0;
            --radius: 8px;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
            --font-family: 'Inter', sans-serif;
        }
        
        /* Light Theme Overrides */
        [data-theme="light"] {
            --primary: #FFFFFF;
            --secondary: #F1F5F9;
            --bg: #F8FAFC;
            --surface: #FFFFFF;
            --fg: #020617;
            --muted: #E8ECF1;
            --border: #E2E8F0;
        }
        
        /* Base Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-family);
            background-color: var(--bg);
            color: var(--fg);
            line-height: 1.6;
        }
        
        /* Utility Classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 4rem 0;
        }
        
        .section-bg {
            background-color: var(--muted);
        }
        
        @media (min-width: 768px) {
            .section {
                padding: 5rem 0;
            }
        }
        
        @media (min-width: 1200px) {
            .section {
                padding: 6rem 0;
            }
        }
        
        .hidden {
            display: none !important;
        }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        
        /* Focus Styles */
        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            text-align: center;
            transition: all 200ms ease;
            cursor: pointer;
            border: none;
            text-decoration: none;
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-accent:hover {
            background-color: var(--accent-hover);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }
        
        .btn-outline:hover {
            background-color: rgba(217, 119, 6, 0.1);
        }
        
        .btn-emergency {
            background-color: var(--accent);
            color: white;
            font-size: 1.25rem;
            padding: 1rem 2rem;
        }
        
        .btn-emergency:hover {
            background-color: var(--accent-hover);
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.25rem;
            font-weight: 800;
        }
        
        h2 {
            font-size: 1.75rem;
            font-weight: 700;
        }
        
        h3 {
            font-size: 1.25rem;
            font-weight: 600;
        }
        
        @media (min-width: 768px) {
            h1 {
                font-size: 2.75rem;
            }
            h2 {
                font-size: 2.25rem;
            }
        }
        
        @media (min-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
        }
        
        /* Form Styles */
        .form-row {
            margin-bottom: 1rem;
        }
        
        .form-row label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-row input,
        .form-row select,
        .form-row textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background-color: var(--surface);
            color: var(--fg);
            transition: border-color 200ms ease;
        }
        
        .form-row input:focus,
        .form-row select:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        
        .form-error {
            color: #EF4444;
            font-size: 0.875rem;
            margin-top: 0.25rem;
            display: none;
        }
        
        .form-error.show {
            display: block;
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        /* Respect Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
                animation: none !important;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0F172A, #1E293B);
            color: white;
            padding: 5.5rem 0;
        }
        
        .hero-inner {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 1200px) {
            .hero-inner {
                grid-template-columns: 1fr 1fr;
                align-items: center;
            }
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
        }
        
        .hero-content p {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .hero-visual {
            background: linear-gradient(45deg, rgba(217, 119, 6, 0.2), rgba(217, 119, 6, 0.1)), radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: var(--radius);
            height: 200px;
            display: none;
        }
        
        @media (min-width: 1200px) {
            .hero-visual {
                display: block;
                height: 300px;
                animation: float 6s ease-in-out infinite;
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .trust-badges {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }
        
        /* Navigation */
        .nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: var(--primary);
            padding: 1rem 0;
            box-shadow: var(--shadow-sm);
        }
        
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .brand {
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
            text-decoration: none;
        }
        
        .nav-links {
            display: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 200ms ease;
        }
        
        .nav-links a:hover {
            opacity: 0.8;
        }
        
        .nav-cta {
            display: none;
        }
        
        .nav-hamburger {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .nav-hamburger svg {
            width: 24px;
            height: 24px;
            stroke: white;
        }
        
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .nav-cta {
                display: block;
            }
            
            .nav-hamburger {
                display: none;
            }
        }
        
        .mobile-menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 300ms ease, visibility 0s 300ms;
        }
        
        .mobile-menu-backdrop--open {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
            transition: opacity 300ms ease, visibility 0s;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 360px;
            height: 100%;
            background-color: var(--primary);
            z-index: 999;
            padding: 5rem 1.5rem 1.5rem;
            transform: translateX(100%);
            visibility: hidden;
            pointer-events: none;
            transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 300ms;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu--open {
            transform: translateX(0);
            visibility: visible;
            pointer-events: all;
            transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
        }
        
        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }
        
        .mobile-menu-links a {
            color: white;
            text-decoration: none;
            font-size: 1.25rem;
            display: block;
            padding: 0.5rem 2rem;
            border-radius: var(--radius);
            transition: background-color 200ms ease;
        }
        
        .mobile-menu-links a:hover,
        .mobile-menu-links a:focus-visible {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .nav-hamburger {
            transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-hamburger[aria-expanded="true"] {
            transform: rotate(90deg);
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (min-width: 576px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .service-card {
            background-color: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: transform 200ms ease, box-shadow 200ms ease;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(217, 119, 6, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .service-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent);
        }
        
        .service-card h3 {
            margin-bottom: 0.5rem;
        }
        
        /* Pricing Section */
        .pricing-table {
            background-color: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        
        .pricing-row {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            align-items: center;
        }
        
        .pricing-row:last-child {
            border-bottom: none;
        }
        
        @media (min-width: 768px) {
            .pricing-row {
                grid-template-columns: 2fr 1fr 1fr;
                padding: 1.25rem 2rem;
            }
        }
        
        .pricing-price {
            color: var(--accent);
            font-weight: 600;
            font-variant-numeric: tabular-nums;
        }
        
        /* Booking Section */
        .booking-wrap {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .booking-wrap {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .booking-calendar {
            background-color: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }
        
        .calendar-weekday {
            text-align: center;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--secondary);
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 200ms ease;
        }
        
        .calendar-day:hover:not(.inactive) {
            background-color: rgba(217, 119, 6, 0.1);
        }
        
        .calendar-day.inactive {
            color: var(--muted);
            cursor: default;
        }
        
        .calendar-day.selected {
            background-color: var(--accent);
            color: white;
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        
        @media (min-width: 420px) {
            .time-slots {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .time-slot {
            background-color: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0.75rem;
            text-align: center;
            cursor: pointer;
            transition: background-color 200ms ease;
        }
        
        .time-slot:hover {
            background-color: rgba(217, 119, 6, 0.1);
        }
        
        .time-slot.selected {
            background-color: var(--accent);
            color: white;
            border-color: var(--accent);
        }
        
        /* 24/7 Tow Section */
        .laweta-section {
            text-align: center;
        }
        
        .emergency-cta {
            margin-bottom: 2rem;
        }
        
        .laweta-form-wrap {
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            font-style: italic;
        }
        
        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }
        
        .testimonials-grid {
            display: grid;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .testimonial-card {
            background-color: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        
        .testimonial-quote::before {
            content: '\201C';
            font-size: 2rem;
            color: var(--accent);
        }
        
        .stars {
            color: var(--accent);
            margin: 0.5rem 0;
        }
        
        /* Contact Section */
        .contact-grid {
            display: grid;
            gap: 2rem;
        }
        
        @media (min-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .contact-info {
            background-color: var(--surface);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .contact-item svg {
            width: 24px;
            height: 24px;
            stroke: var(--accent);
        }
        
        .map-placeholder {
            background: linear-gradient(135deg, #334155, #475569);
            border-radius: var(--radius);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .map-placeholder::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(217, 119, 6, 0.3), transparent);
        }
        
        .map-pin {
            width: 40px;
            height: 40px;
            fill: var(--accent);
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 2.5rem 0 1rem;
        }
        
        .footer-inner {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .footer-inner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: opacity 200ms ease;
        }
        
        .footer-links a:hover {
            opacity: 0.8;
        }
            transform: scale(1.1);
        }
            outline: 2px solid white;
            outline-offset: 2px;
        }
        
        /* Toast */
        #toast {
            position: fixed;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--secondary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            z-index: 1001;
            opacity: 0;
            transition: opacity 300ms ease;
            max-width: 90%;
        }
        
        #toast.show {
            opacity: 1;
        }
    

/* Blog Grid */
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 300ms ease;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
}

.blog-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

.blog-card-body h3 {
    margin-bottom: 0.5rem;
}

.blog-card-body h3 a {
    color: var(--fg);
    text-decoration: none;
}

.blog-card-body h3 a:hover {
    color: var(--accent);
}

.blog-card-meta {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.blog-card-meta a {
    color: var(--accent);
    text-decoration: none;
}

.blog-card-body p {
    color: var(--secondary);
    line-height: 1.6;
}

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

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--fg);
    text-decoration: none;
    transition: background-color 200ms ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Single Post */
.post-content h1, .post-content h2, .post-content h3 {
    margin-top: 2rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
}

.post-content ul, .post-content ol {
    padding-left: 2rem;
    margin: 1rem 0;
}

.post-content blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--secondary);
    font-style: italic;
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.comment-meta {
    font-size: 0.875rem;
    color: var(--secondary);
}

.comment-content {
    margin-top: 0.5rem;
}

/* ===== Blog & Single Post — RS Garage Theme Overrides ===== */
/* Reset block theme defaults on blog pages */
body.blog,
body.archive,
body.single-post {
    background-color: var(--bg) !important;
    color: var(--fg) !important;
    font-family: var(--font-family) !important;
}

body.blog .wp-site-blocks,
body.archive .wp-site-blocks,
body.single-post .wp-site-blocks {
    max-width: none !important;
    padding: 0 !important;
}

body.blog .wp-block-template-part,
body.archive .wp-block-template-part,
body.single-post .wp-block-template-part {
    display: none !important;
}

body.blog .entry-content,
body.archive .entry-content {
    padding: 0 !important;
}

/* Blog pagination */
body.blog .wp-block-query-pagination,
body.archive .wp-block-query-pagination {
    display: none !important;
}
