/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand: #0a5bd3;
    --accent: #f4b740;
    --bg: #f6f7fb;
    --text: #0f172a;
    --text-muted: #4b5563;
    --surface: #ffffff;
    --surface-muted: #eef2f7;
    --surface-strong: #e4ebf5;
    --border: #d6deea;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 28px 60px rgba(15, 23, 42, 0.16);
    --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --primary-blue: var(--brand);
    --dark-blue: #0846a8;
    --light-blue: #e0ecff;
    --text-dark: var(--text);
    --text-gray: var(--text-muted);
    --white: #ffffff;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(10, 91, 211, 0.08), transparent 50%),
        radial-gradient(circle at 85% 0%, rgba(244, 183, 64, 0.08), transparent 45%),
        var(--bg);
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', 'Times New Roman', serif;
    color: var(--text);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(246, 247, 251, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn.btn-sm {
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    border-radius: 999px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(140deg, rgba(10, 91, 211, 0.2), rgba(244, 183, 64, 0.2));
    border: 1px solid rgba(10, 91, 211, 0.2);
}

.brand-name {
    font-size: 1.05rem;
    color: var(--text);
}

.site-nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

.site-nav a {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0.4rem;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
    color: var(--text);
    background: rgba(10, 91, 211, 0.08);
}

.header-cta {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}

:focus-visible {
    outline: 3px solid rgba(10, 91, 211, 0.4);
    outline-offset: 3px;
}

/* Install Banner */
.install-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1rem;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.install-banner.hidden {
    display: none;
}

.install-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
    font-size: 0.9rem;
}

.install-btn-small {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.install-btn-small:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.dismiss-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--text);
    padding: 7.5rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(10, 91, 211, 0.18), transparent 55%),
        radial-gradient(circle at 85% 0%, rgba(244, 183, 64, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(246, 247, 251, 0.95), rgba(246, 247, 251, 0.9));
}

.hero-content {
    grid-column: 1 / span 7;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content .btn {
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.inline-emoji {
    height: 1em;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-aside {
    grid-column: 8 / span 5;
    display: grid;
    gap: 1.25rem;
    z-index: 2;
}

.hero-media {
    margin: 0;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-media picture,
.hero-media img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 2;
}

.hero-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-chip {
    background: rgba(10, 91, 211, 0.1);
    color: var(--text);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
}

/* Weather Widget */
.weather-widget {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.weather-loading {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.weather-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.weather-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-icon {
    font-size: 2.5rem;
}

.weather-temp {
    font-size: 2rem;
    font-weight: bold;
}

.weather-desc {
    font-size: 0.9rem;
    text-transform: capitalize;
    color: var(--text-muted);
}

.weather-details {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.weather-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-detail-label {
    opacity: 0.8;
    font-size: 0.75rem;
}

.weather-alert {
    background: rgba(255, 152, 0, 0.9);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Forecast Section */
.forecast-section {
    margin: 1.5rem 0;
}

.forecast-section-standalone {
    padding: 3rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.forecast-section-standalone .forecast-title {
    color: var(--text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.forecast-section-standalone .forecast-container {
    background: var(--surface-muted);
    border: 1px solid var(--border);
}

.forecast-section-standalone .forecast-day {
    background: var(--surface);
    border: 1px solid var(--border);
}

.forecast-section-standalone .forecast-day:hover {
    background: var(--surface-strong);
    box-shadow: var(--shadow-sm);
}

.forecast-title {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    opacity: 0.95;
}

.forecast-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    background: var(--surface-muted);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid var(--border);
}

.forecast-day {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    transition: transform 0.2s, background 0.2s;
}

.forecast-day:hover {
    transform: translateY(-3px);
    background: var(--surface-strong);
}

.forecast-day-name {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.forecast-icon {
    font-size: 2rem;
    margin: 0.5rem 0;
}

.forecast-temp {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text);
    margin: 0.5rem 0;
}

.forecast-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.9;
    text-transform: capitalize;
    line-height: 1.2;
}

.snow-indicator {
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
}

/* Mobile adjustments for forecast */
@media (max-width: 640px) {
    .forecast-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .forecast-day {
        padding: 0.5rem 0.25rem;
    }
    
    .forecast-icon {
        font-size: 1.5rem;
    }
    
    .forecast-temp {
        font-size: 1rem;
    }
    
    .forecast-desc {
        font-size: 0.7rem;
    }
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.95rem 1.7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-large {
    min-height: 54px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #094fb7;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #0f172a;
    color: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.2);
}

.btn-secondary:hover {
    background: #111c33;
    transform: translateY(-2px);
}

.helper-text {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 1rem;
    color: var(--text-muted);
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--surface);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(10, 91, 211, 0.35);
}

.pricing-card-featured {
    background: linear-gradient(140deg, rgba(10, 91, 211, 0.12), rgba(244, 183, 64, 0.2));
    color: var(--text);
    border: 1px solid rgba(10, 91, 211, 0.25);
    box-shadow: var(--shadow);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--brand);
    margin-bottom: 0.5rem;
}

.pricing-card-featured .price {
    color: var(--white);
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-card-featured .price-desc {
    color: var(--text-muted);
}

.senior-discount-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(140deg, rgba(10, 91, 211, 0.12), rgba(244, 183, 64, 0.25));
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.senior-discount-note p {
    color: var(--text);
    font-size: 1.2rem;
    margin: 0;
}

.senior-discount-note strong {
    font-size: 1.3rem;
}

/* Equipment Section */
.equipment {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.equipment-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid var(--border);
    min-height: 380px;
}

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(10, 91, 211, 0.3);
}

.equipment-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.equipment-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--text);
}

.equipment-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

.emergency-banner {
    background: linear-gradient(135deg, rgba(10, 91, 211, 0.18), rgba(244, 183, 64, 0.4));
    color: var(--text);
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid var(--border);
    min-height: 220px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(10, 91, 211, 0.3);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text);
    font-style: italic;
}

.testimonial-author {
    color: var(--text-muted);
    font-weight: 600;
    text-align: right;
}

/* Payment Section */
.payment {
    padding: 4rem 0;
    background: var(--surface);
}

.payment-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.payment-preferred h3,
.payment-also h3 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.payment-email {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    word-break: break-word;
    color: var(--text);
}

.payment-email strong {
    color: var(--brand);
    font-size: 1.1rem;
}

.payment-note {
    color: #2f855a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-also p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Road Conditions Section */
.road-conditions {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.road-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.road-info-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    min-height: 320px;
}

.road-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(10, 91, 211, 0.3);
}

.road-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.road-info-card h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.road-info-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline-dark {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-outline-dark:hover {
    background: rgba(10, 91, 211, 0.08);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .road-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Area Section */
.service-area {
    padding: 3rem 0;
    background: var(--surface);
    text-align: center;
}

.service-area-text {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.map-container {
    max-width: 900px;
    margin: 2rem auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section h4 {
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    color: var(--white);
    text-decoration: underline;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design - Tablet */
@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Design - Desktop */
@media (min-width: 768px) {
    .site-nav {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-content {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .hero-content,
    .hero-aside {
        grid-column: 1 / -1;
        text-align: center;
    }

    .hero-actions,
    .hero-meta {
        justify-content: center;
    }

    .hero-aside {
        justify-items: center;
    }

    .hero-card {
        text-align: left;
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .hero-media {
        width: min(100%, 520px);
    }
}

/* Updates */
.updates {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.updates-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.updates-card h3 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.news-feed {
    display: grid;
    gap: 0.75rem;
}

.bolt-player {
    margin-top: 0.75rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-muted);
}

.bolt-player iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.news-loading {
    color: var(--text-muted);
}

.news-item {
    display: block;
    padding: 0.85rem;
    border-radius: 12px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    transition: transform 0.2s ease, background 0.2s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    background: var(--surface-strong);
}

.news-item-title {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.news-item-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.updates-links {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.updates-links a {
    display: inline-flex;
    width: 100%;
    padding: 0.85rem;
    border-radius: 12px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 650;
}

.updates-note {
    margin-top: 0.9rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

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

/* Game */
.game {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.game-shell {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.game-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface-muted);
}

.game-score {
    color: var(--text);
    font-weight: 800;
}

.game-canvas {
    width: 100%;
    height: auto;
    display: block;
    background: radial-gradient(circle at 20% 20%, rgba(10, 91, 211, 0.12), transparent 55%), var(--surface-muted);
}

.game-hint {
    padding: 0.9rem 1rem 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Buttons (ensure outline button exists) */
.btn.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn.btn-outline:hover {
    background: rgba(10, 91, 211, 0.08);
}

/* Shared Pages */
.page-hero {
    padding: 7.25rem 0 2.75rem;
    background:
        radial-gradient(circle at 20% 10%, rgba(10, 91, 211, 0.14), transparent 55%),
        radial-gradient(circle at 85% 0%, rgba(244, 183, 64, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(246, 247, 251, 0.9), rgba(246, 247, 251, 0.7));
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    color: var(--text);
    font-size: 2.4rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-hero p {
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-size: 1.05rem;
    max-width: 70ch;
}

.page-shell {
    padding: 3.25rem 0 4.25rem;
    background: var(--surface-muted);
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.page-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.page-card h2 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}

.page-card p,
.page-card li {
    color: var(--text);
    line-height: 1.65;
}

.page-card ul {
    padding-left: 1.25rem;
    margin-top: 0.65rem;
    display: grid;
    gap: 0.4rem;
}

.page-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 920px) {
    .page-split {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 720px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post-card {
    display: block;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.post-title {
    color: var(--text);
    font-weight: 800;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.post-meta {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.post-excerpt {
    color: var(--text);
    margin-top: 0.65rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Print Styles */
@media print {
    .install-banner,
    .btn,
    .weather-widget {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border-width: 3px;
    }
}

/* ========================================
   FLOATING CHAT WIDGET
   ======================================== */

.chat-widget-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(10, 91, 211, 0.95), rgba(244, 183, 64, 0.9));
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: bounce 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.chat-widget-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-lg);
    animation: none;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(10, 91, 211, 0.3);
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(10, 91, 211, 0.6);
    box-shadow: 0 0 0 3px rgba(10, 91, 211, 0.15);
}

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

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note a {
    color: var(--brand);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #2f855a;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    background: #0f172a;
    color: var(--white);
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1200;
    font-size: 0.95rem;
}

.toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Booking */
.booking-shell {
    padding: 4rem 0;
    background: var(--surface-muted);
}

.booking-layout {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.booking-card h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.booking-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.booking-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1300;
}

.booking-overlay-visible {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
    width: min(560px, 92vw);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.booking-modal h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.booking-modal p {
    color: var(--text-muted);
}

.booking-details {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.booking-detail {
    background: var(--surface-muted);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
}

.booking-detail span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.booking-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-muted);
}

.booking-retry {
    margin-top: 1rem;
    display: none;
}

.is-loading [data-booking-submit] {
    opacity: 0.7;
    cursor: wait;
}

/* Admin */
.admin-shell {
    padding: 4rem 0;
    background: var(--surface-muted);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-grid {
    display: grid;
    gap: 1.5rem;
}

.admin-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.admin-warning {
    background: rgba(244, 183, 64, 0.18);
    border: 1px solid rgba(244, 183, 64, 0.4);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.admin-list {
    display: grid;
    gap: 1rem;
}

.admin-booking {
    background: var(--surface-muted);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 1rem;
}

.admin-booking select,
.admin-booking textarea {
    margin-top: 0.4rem;
    width: 100%;
}

.admin-booking-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.admin-booking-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(10, 91, 211, 0.12);
    color: var(--text);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (min-width: 960px) {
    .admin-grid {
        grid-template-columns: 1fr 1.6fr;
        align-items: start;
    }
}

@media (min-width: 900px) {
    .booking-layout {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }
}


/* ========================================
   SECTION GRADIENTS
   ======================================== */

.services {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.equipment {
    background: linear-gradient(180deg, var(--surface-muted) 0%, #fdfefe 100%);
}

.testimonials {
    background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 100%);
}

.payment {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.road-conditions {
    background: linear-gradient(180deg, var(--surface-muted) 0%, var(--surface) 100%);
}

.service-area {
    background: linear-gradient(180deg, var(--surface) 0%, #fdfefe 100%);
}

.gallery {
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

/* Mobile responsiveness for chat widget */
@media (max-width: 768px) {
    .chat-widget-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-avatar {
        width: 38px;
        height: 38px;
    }
    
}
