/**
 * ASR Autobreakers Ltd - Core Design System & Theme Styles
 */

:root {
    /* Color Palette */
    --color-primary: #0f172a;       /* Deep Slate Navy */
    --color-primary-dark: #070c18;
    --color-primary-light: #1e293b;
    --color-surface: #ffffff;
    --color-surface-subtle: #f8fafc;
    --color-surface-card: #ffffff;
    
    --color-accent: #f59e0b;        /* Safety Amber / Automotive Gold */
    --color-accent-hover: #d97706;
    --color-accent-dark: #b45309;
    --color-accent-subtle: #fef3c7;
    
    --color-success: #10b981;
    --color-success-bg: #ecfdf5;
    --color-danger: #ef4444;
    --color-danger-bg: #fef2f2;
    --color-warning: #f59e0b;
    
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    --color-text-inverse: #ffffff;
    
    --color-border: #e2e8f0;
    --color-border-dark: #334155;
    
    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-plate: 'Charles Wright', 'Impact', monospace, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-amber: 0 10px 25px -5px rgba(245, 158, 11, 0.25);
    
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Container Width */
    --container-max: 1360px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* SVG Vector Icons System */
.asr-svg-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.btn .asr-svg-icon {
    margin-right: 4px;
}

.asr-gb-flag {
    display: inline-block;
    border-radius: 2px;
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
}


html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-surface-subtle);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
}
p:last-child {
    margin-bottom: 0;
}

/* Top Bar */
.asr-topbar {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.asr-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.asr-topbar-left, .asr-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.asr-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
}

.asr-topbar-item a:hover {
    color: var(--color-accent);
}

.asr-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.asr-badge-online.is-open {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.asr-badge-online.is-open .asr-pulse-dot {
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: asrPulseGreen 2s infinite;
}

.asr-badge-online.is-closed {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.asr-badge-online.is-closed .asr-pulse-dot {
    background-color: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: asrPulseRed 2s infinite;
}

.asr-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: asrPulseGreen 2s infinite;
}

@keyframes asrPulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes asrPulseRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Main Header */
.asr-header {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.asr-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 16px;
    flex-wrap: nowrap;
}

.asr-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.asr-logo-img {
    height: 42px;
    width: auto;
    max-width: 220px;
    display: block;
}

.asr-nav {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.asr-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: clamp(8px, 1.25vw, 22px);
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.asr-nav-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.asr-nav-item a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(13px, 0.88vw, 15px);
    color: var(--color-primary);
    position: relative;
    padding: 8px 4px;
    white-space: nowrap;
    display: inline-block;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.asr-nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
    transition: var(--transition);
}

.asr-nav-item a:hover::after,
.asr-nav-item.active a::after {
    width: 100%;
}

.asr-nav-item a:hover {
    color: var(--color-accent-dark);
}

.asr-nav-item.active a {
    color: var(--color-primary-dark);
}

.asr-header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.asr-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.asr-nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: #ffffff;
    box-shadow: var(--shadow-amber);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--color-primary);
    color: #ffffff;
}
.btn-dark:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
}
.btn-whatsapp:hover {
    background-color: #1eb956;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-border-dark);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline-light:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.asr-hero {
    background: linear-gradient(135deg, #070c18 0%, #0f172a 50%, #1e293b 100%);
    color: #ffffff;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}

.asr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 158, 11, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    pointer-events: none;
}

.asr-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.asr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.asr-hero-title {
    color: #ffffff;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    margin-bottom: 18px;
    line-height: 1.1;
}

.asr-hero-title span {
    color: var(--color-accent);
}

.asr-hero-desc {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 28px;
    max-width: 580px;
}

.asr-hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.asr-hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
}

.asr-hero-highlight-item .icon {
    font-size: 18px;
    color: var(--color-accent);
}

/* Service Hero Typography Global Safety */
.asr-service-hero h1,
.asr-service-hero h2,
.asr-service-hero h3,
.asr-service-hero h4,
.asr-service-hero-content h1,
.asr-service-hero-content h2,
.asr-service-hero-content h3 {
    color: #ffffff !important;
}

.asr-service-hero p,
.asr-service-hero-content p {
    color: #cbd5e1 !important;
}

/* Trust Bar / Accreditations */
.asr-trust-bar {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 22px 0;
    box-shadow: var(--shadow-sm);
}

/* Live Yard Status Badge */
.asr-live-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    transition: var(--transition);
}

.asr-live-status-badge .asr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.asr-live-status-badge .asr-status-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    animation: asrPulse 2s infinite ease-in-out;
}

.asr-badge-open {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.asr-badge-open .asr-status-dot {
    background: #10b981;
}

.asr-badge-open .asr-status-dot::after {
    background: rgba(16, 185, 129, 0.4);
}

.asr-badge-closed {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.asr-badge-closed .asr-status-dot {
    background: #ef4444;
}

.asr-badge-closed .asr-status-dot::after {
    background: rgba(239, 68, 68, 0.4);
}

.asr-status-sub {
    font-weight: 400;
    opacity: 0.9;
    font-size: 12px;
}

@keyframes asrPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.asr-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.asr-hours-table td {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.asr-hours-table tr:last-child td {
    border-bottom: none;
}

.asr-hours-table .day-name {
    font-weight: 600;
    color: #f1f5f9;
}

.asr-hours-table .day-hours {
    text-align: right;
    color: #cbd5e1;
}

.asr-hours-table .day-closed {
    color: #f87171;
    font-weight: 500;
}


.asr-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: center;
}

.asr-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.asr-trust-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent-subtle);
    color: var(--color-accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.asr-trust-text h4 {
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--color-primary);
}

.asr-trust-text p {
    font-size: 12px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Section Header */
.asr-section {
    padding: 80px 0;
}

.asr-section-alt {
    background-color: var(--color-surface);
}

.asr-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.asr-section-tag {
    display: inline-block;
    color: var(--color-accent-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.asr-section-title {
    margin-bottom: 16px;
}

.asr-section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Services 4-Grid */
.asr-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.asr-service-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.asr-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
    opacity: 0;
    transition: var(--transition);
}

.asr-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.asr-service-card:hover::before {
    opacity: 1;
}

.asr-service-card-featured {
    border-color: var(--color-accent);
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
    box-shadow: var(--shadow-lg);
}
.asr-service-card-featured::before {
    opacity: 1;
}

.asr-service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.asr-service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.asr-service-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.asr-service-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.asr-service-features {
    list-style: none;
    margin-bottom: 25px;
    font-size: 13px;
    color: #475569;
}

.asr-service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.asr-service-features li .check {
    color: #10b981;
    font-weight: bold;
}

/* How It Works 3-Step */
.asr-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.asr-step-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    position: relative;
}

.asr-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.asr-step-icon {
    font-size: 44px;
    margin: 15px 0 18px;
}

/* FAQ Accordion */
.asr-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.asr-faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.asr-faq-question {
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.asr-faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--color-accent-dark);
}

.asr-faq-answer {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    font-size: 15px;
    display: none;
}

.asr-faq-item.active {
    border-color: var(--color-accent);
}
.asr-faq-item.active .asr-faq-arrow {
    transform: rotate(180deg);
}

/* Location Map / Yard Card */
.asr-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.asr-yard-info {
    background: var(--color-primary);
    color: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.asr-yard-info h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.asr-yard-details {
    list-style: none;
    margin: 25px 0;
}

.asr-yard-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #cbd5e1;
}

.asr-yard-details li strong {
    color: #ffffff;
}

.asr-yard-details .icon {
    color: var(--color-accent);
    font-size: 20px;
}

.asr-map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 380px;
}

.asr-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.asr-footer {
    background-color: var(--color-primary-dark);
    color: #94a3b8;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.asr-footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.asr-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.asr-footer-links {
    list-style: none;
}

.asr-footer-links li {
    margin-bottom: 10px;
}

.asr-footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.asr-footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.asr-footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.asr-footer-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.asr-footer-directions-btn .asr-icon,
.asr-footer-directions-btn svg {
    color: var(--color-accent);
    transition: var(--transition);
}

.asr-footer-directions-btn:hover {
    background: var(--color-accent);
    color: var(--color-primary-dark) !important;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.asr-footer-directions-btn:hover .asr-icon,
.asr-footer-directions-btn:hover svg {
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Responsive Navigation & Header Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
    .asr-header-ctas .btn-outline {
        display: none; /* Keep primary CTA so 7 nav items stay strictly on 1 row */
    }
}

@media (max-width: 1080px) {
    .asr-nav-toggle {
        display: flex;
    }

    .asr-nav {
        flex: 0 0 auto;
    }

    .asr-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-surface);
        border-bottom: 3px solid var(--color-accent);
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px;
        z-index: 999;
    }

    .asr-nav-menu.open {
        display: flex;
    }

    .asr-nav-item {
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .asr-nav-item:last-child {
        border-bottom: none;
    }

    .asr-nav-item a {
        display: block;
        padding: 12px 6px;
        font-size: 15px;
        color: var(--color-primary);
    }

    .asr-nav-item a::after {
        display: none;
    }

    .asr-nav-item.active a {
        color: var(--color-accent-dark);
        font-weight: 800;
    }
}

@media (max-width: 768px) {
    .asr-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .asr-topbar-right {
        display: none; /* Accessible in sticky bar and menu */
    }

    .asr-header-inner {
        height: 70px;
    }

    .asr-logo-img {
        height: 36px;
    }

    .asr-header-ctas .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }

    .asr-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

