/**
 * Precision Auto Care - Mechanic Shop Template
 * Custom Styles for RSL Template
 *
 * Color Palette:
 * - Primary: Deep Blue (#1a365d)
 * - Accent: Orange/Amber (#dd6b20)
 * - Secondary: Silver/Gray (#718096)
 * - Success: Green (#38a169)
 * - Background: Light (#f7fafc) / Dark (#1a202c)
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors */
    --mechanic-primary: #1a365d;
    --mechanic-primary-dark: #0f2744;
    --mechanic-primary-light: #2c5282;
    --mechanic-accent: #dd6b20;
    --mechanic-accent-dark: #c05621;
    --mechanic-accent-light: #ed8936;
    --mechanic-secondary: #718096;
    --mechanic-success: #38a169;

    /* Light Mode */
    --mechanic-bg: #f7fafc;
    --mechanic-bg-card: #ffffff;
    --mechanic-text: #2d3748;
    --mechanic-text-muted: #718096;
    --mechanic-border: #e2e8f0;

    /* Typography */
    --mechanic-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --mechanic-bg: #1a202c;
    --mechanic-bg-card: #2d3748;
    --mechanic-text: #e2e8f0;
    --mechanic-text-muted: #a0aec0;
    --mechanic-border: #4a5568;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
    font-family: var(--mechanic-font);
    background-color: var(--mechanic-bg);
    color: var(--mechanic-text);
    line-height: 1.6;
}

/* ============================================
   NAVBAR CUSTOMIZATION
   ============================================ */
.rsl-navbar {
    background: var(--mechanic-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.rsl-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--mechanic-accent);
}

.brand-text {
    display: none;
}

@media (min-width: 768px) {
    .brand-text {
        display: inline;
    }
}

.rsl-navbar-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.rsl-navbar-link:hover,
.rsl-navbar-link.active {
    color: var(--mechanic-accent) !important;
}

/* Emergency Button in Navbar */
.btn-emergency {
    background: var(--mechanic-accent);
    color: #fff !important;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-emergency 2s infinite;
}

.btn-emergency:hover {
    background: var(--mechanic-accent-dark);
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 0 0 0 rgba(221, 107, 32, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(221, 107, 32, 0); }
}

.btn-emergency .btn-text {
    display: none;
}

@media (min-width: 992px) {
    .btn-emergency .btn-text {
        display: inline;
    }
}

/* Theme Toggle Override - Light Mode (sun icon visible) */
.rsl-theme-toggle {
    background: var(--mechanic-primary-light) !important;
    border: 1px solid var(--mechanic-primary) !important;
}

.rsl-theme-toggle:hover {
    background: var(--mechanic-primary) !important;
}

.rsl-theme-toggle .icon-sun {
    color: var(--mechanic-accent) !important;
}

.rsl-theme-toggle .icon-moon {
    color: #fff !important;
}

/* Theme Toggle Override - Dark Mode */
[data-theme="dark"] .rsl-theme-toggle {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

[data-theme="dark"] .rsl-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

/* ============================================
   ACCESSIBILITY WIDGET THEMING
   ============================================ */
:root {
    --rsl-a11y-primary: var(--mechanic-primary);
    --rsl-a11y-primary-dark: var(--mechanic-primary-dark);
    --rsl-a11y-button-gradient: linear-gradient(135deg, var(--mechanic-accent) 0%, var(--mechanic-accent-dark) 100%);
    --rsl-a11y-button-shadow: 0 4px 16px rgba(221, 107, 32, 0.4);
}

/* Accessibility widget floating button */
.rsl-a11y-widget-button {
    background: linear-gradient(135deg, var(--mechanic-accent) 0%, var(--mechanic-accent-dark) 100%) !important;
    box-shadow: 0 4px 16px rgba(221, 107, 32, 0.4) !important;
}

.rsl-a11y-widget-button:hover {
    background: linear-gradient(135deg, var(--mechanic-accent-dark) 0%, var(--mechanic-accent) 100%) !important;
}

/* Panel header */
.rsl-a11y-panel-header {
    background: linear-gradient(135deg, var(--mechanic-primary) 0%, var(--mechanic-primary-dark) 100%) !important;
}

.rsl-a11y-panel-header h2,
.rsl-a11y-panel-header .rsl-a11y-title {
    color: #fff !important;
}

.rsl-a11y-panel-header button,
.rsl-a11y-close {
    color: #fff !important;
}

/* Primary buttons in widget */
.rsl-a11y-btn-primary {
    background: var(--mechanic-accent) !important;
    border-color: var(--mechanic-accent) !important;
}

.rsl-a11y-btn-primary:hover {
    background: var(--mechanic-accent-dark) !important;
    border-color: var(--mechanic-accent-dark) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--mechanic-primary) 0%, var(--mechanic-primary-dark) 100%);
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(221, 107, 32, 0.15) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--mechanic-accent);
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    color: #fff;
}

[data-theme="dark"] .hero-section h1 {
    color: #fff;
}

.hero-section h1 .highlight {
    color: var(--mechanic-accent);
}

[data-theme="dark"] .hero-section h1 .highlight {
    color: var(--mechanic-accent-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features i {
    color: var(--mechanic-success);
}

/* ============================================
   PAGE HEADER (Interior Pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--mechanic-primary) 0%, var(--mechanic-primary-dark) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #fff;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--mechanic-accent);
    color: #fff;
    border-color: var(--mechanic-accent);
}

.btn-primary:hover {
    background: var(--mechanic-accent-dark);
    border-color: var(--mechanic-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(221, 107, 32, 0.3);
}

/* Hero buttons in dark mode - dark grey with orange text */
[data-theme="dark"] .hero-section .btn-primary {
    background: #2d3748;
    color: var(--mechanic-accent);
    border-color: #2d3748;
}

[data-theme="dark"] .hero-section .btn-primary:hover {
    background: #1a202c;
    border-color: #1a202c;
    color: var(--mechanic-accent-light);
}

.btn-outline {
    background: transparent;
    color: var(--mechanic-primary);
    border-color: var(--mechanic-primary);
}

[data-theme="dark"] .btn-outline {
    color: var(--mechanic-accent);
    border-color: var(--mechanic-accent);
}

.btn-outline:hover {
    background: var(--mechanic-primary);
    color: #fff;
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--mechanic-accent);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(221, 107, 32, 0.1);
    color: var(--mechanic-accent);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--mechanic-primary);
    margin: 0 0 0.75rem;
}

[data-theme="dark"] .section-header h2 {
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--mechanic-text-muted);
    margin: 0;
}

/* ============================================
   TRUST STATS SECTION
   ============================================ */
.trust-stats-section {
    background: var(--mechanic-bg-card);
    padding: 2rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-stats-section {
    background: linear-gradient(135deg, var(--mechanic-primary) 0%, var(--mechanic-primary-dark) 100%);
    padding: 3rem 0;
}

.about-stats-section .rsl-stat {
    color: #fff;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section {
    background: var(--mechanic-bg);
}

.service-card {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card .card-header {
    padding: 1.5rem;
    text-align: center;
    background: transparent;
    border-bottom: none;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.75rem;
    color: #fff;
}

.service-icon.oil { background: linear-gradient(135deg, #dd6b20, #ed8936); }
.service-icon.brakes { background: linear-gradient(135deg, #e53e3e, #fc8181); }
.service-icon.engine { background: linear-gradient(135deg, #1a365d, #2c5282); }
.service-icon.tires { background: linear-gradient(135deg, #38a169, #68d391); }
.service-icon.ac { background: linear-gradient(135deg, #3182ce, #63b3ed); }
.service-icon.transmission { background: linear-gradient(135deg, #805ad5, #b794f4); }
.service-icon.tune { background: linear-gradient(135deg, #dd6b20, #ed8936); }
.service-icon.fluids { background: linear-gradient(135deg, #3182ce, #63b3ed); }
.service-icon.heating { background: linear-gradient(135deg, #e53e3e, #fc8181); }
.service-icon.battery { background: linear-gradient(135deg, #38a169, #68d391); }
.service-icon.electrical { background: linear-gradient(135deg, #d69e2e, #f6e05e); }
.service-icon.alignment { background: linear-gradient(135deg, #718096, #a0aec0); }
.service-icon.suspension { background: linear-gradient(135deg, #1a365d, #2c5282); }

.service-card .card-body {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
    flex: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .service-card h3 {
    color: #fff;
}

.service-card p {
    color: var(--mechanic-text-muted);
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.service-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.service-meta .price {
    font-weight: 700;
    color: var(--mechanic-accent);
}

.service-meta .time {
    color: var(--mechanic-text-muted);
}

.service-card .card-footer {
    padding: 1rem 1.5rem;
    background: transparent;
    border-top: 1px solid var(--mechanic-border);
    text-align: center;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   SERVICE DETAIL CARDS (Services Page)
   ============================================ */
.services-tabs-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--mechanic-bg);
}

/* ============================================
   CUSTOM INDUSTRIAL TABS STYLING
   Rugged, mechanic-shop aesthetic
   ============================================ */
.services-tabs-section .tabs-display {
    background: var(--mechanic-bg-card);
    border-radius: 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--mechanic-border);
    overflow: hidden; /* Contain content within border */
}

/* Tab bar - industrial metal look */
.services-tabs-section .tabs {
    background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
    border-bottom: 4px solid var(--mechanic-accent);
    gap: 0 !important;
    padding: 0;
    display: flex !important;
    flex-wrap: wrap;
    grid-template-columns: unset !important; /* Override base tabs.css 3-column restriction */
}

/* Ensure tabs-content doesn't interfere with nested grids */
.services-tabs-section .tabs-content {
    display: block !important; /* Override base tabs.css grid display */
}

.services-tabs-section .tab-content .slot-layout {
    display: grid !important; /* Ensure nested RSL grid works */
    box-sizing: border-box;
    max-width: 100%;
}

/* Individual tabs - bold, angular */
.services-tabs-section .tab-link {
    background: transparent;
    color: #a0aec0;
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.services-tabs-section .tab-link:last-child {
    border-right: none;
}

.services-tabs-section .tab-link i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

/* Hover state - glow effect */
.services-tabs-section .tab-link:hover {
    background: rgba(221, 107, 32, 0.15);
    color: #fff;
}

.services-tabs-section .tab-link:hover i {
    transform: scale(1.1);
    color: var(--mechanic-accent);
}

/* Active tab - orange accent with industrial edge */
.services-tabs-section .tab-link.active {
    background: linear-gradient(180deg, var(--mechanic-accent) 0%, var(--mechanic-accent-dark) 100%);
    color: #fff;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
}

.services-tabs-section .tab-link.active::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mechanic-accent-light);
}

.services-tabs-section .tab-link.active i {
    color: #fff;
}

/* Focus state for accessibility */
.services-tabs-section .tab-link:focus-visible {
    outline: 3px solid var(--mechanic-accent-light);
    outline-offset: -3px;
    z-index: 1;
}

/* Tab content area - padding added to earlier rule */
/* Note: display: block !important is set above to override base tabs.css */
.services-tabs-section .tabs-content {
    padding: 2.5rem;
    background: var(--mechanic-bg-card);
    display: block !important; /* Override base tabs.css grid display */
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.services-tabs-section .tab-content {
    animation: tabFadeIn 0.4s ease;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .services-tabs-section .tabs-display {
    border-color: #4a5568;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .services-tabs-section .tabs {
    background: linear-gradient(180deg, #1a202c 0%, #0f1419 100%);
}

[data-theme="dark"] .services-tabs-section .tab-link {
    border-right-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .services-tabs-section .tabs-content {
    background: var(--mechanic-bg-card);
}

/* Responsive - stack on mobile */
@media (max-width: 767px) {
    .services-tabs-section .tabs {
        flex-direction: column;
    }

    .services-tabs-section .tab-link {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 100%;
        padding: 1rem 1.5rem;
    }

    .services-tabs-section .tab-link:last-child {
        border-bottom: none;
    }

    .services-tabs-section .tab-link.active::before {
        display: none;
    }

    .services-tabs-section .tabs-content {
        padding: 1.5rem;
    }
}

.tab-intro {
    margin-bottom: 2rem;
}

.tab-intro h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mechanic-primary);
    margin: 0 0 0.5rem;
}

[data-theme="dark"] .tab-intro h2 {
    color: #fff;
}

.tab-intro p {
    color: var(--mechanic-text-muted);
    font-size: 1rem;
}

.service-detail-card {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail-card .service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--mechanic-border);
}

.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-detail-card .service-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .service-detail-card .service-title h3 {
    color: #fff;
}

.price-badge {
    display: inline-block;
    background: rgba(221, 107, 32, 0.1);
    color: var(--mechanic-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-detail-card .service-body {
    padding: 1.5rem;
    flex: 1;
}

.service-detail-card .service-body > p {
    color: var(--mechanic-text-muted);
    margin: 0 0 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--mechanic-text);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--mechanic-success);
    margin-top: 0.25rem;
}

.service-detail-card .service-meta {
    justify-content: flex-start;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--mechanic-border);
}

.service-detail-card .service-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--mechanic-border);
}

/* ============================================
   TABS STYLING
   ============================================ */
.tabs-display .tabs {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.tabs-display .tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--mechanic-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tabs-display .tab-link:hover {
    background: var(--mechanic-bg);
    color: var(--mechanic-primary);
}

.tabs-display .tab-link.active {
    background: var(--mechanic-accent);
    color: #fff;
}

.tabs-display .tab-link i {
    font-size: 1.1rem;
}

/* ============================================
   WHY CHOOSE US / FEATURE CARDS
   ============================================ */
.why-section {
    background: var(--mechanic-bg-card);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--mechanic-bg);
    border-radius: 12px;
    border: 1px solid var(--mechanic-border);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--mechanic-accent), var(--mechanic-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .feature-card h3 {
    color: #fff;
}

.feature-card p {
    color: var(--mechanic-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   VALUE CARDS (About Page)
   ============================================ */
.values-section {
    background: var(--mechanic-bg-card);
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--mechanic-bg);
    border-radius: 12px;
    border: 1px solid var(--mechanic-border);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(221, 107, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--mechanic-accent);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .value-card h3 {
    color: #fff;
}

.value-card p {
    color: var(--mechanic-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--mechanic-bg);
}

.rsl-testimonial-card {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-vehicle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mechanic-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rsl-testimonial-card blockquote {
    flex: 1;
    font-size: 1rem;
    font-style: italic;
    color: var(--mechanic-text);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.rsl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--mechanic-border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--mechanic-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.author-info cite {
    display: block;
    font-weight: 600;
    font-style: normal;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .author-info cite {
    color: #fff;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--mechanic-text-muted);
}

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

[data-theme="dark"] .testimonials-cta .btn-outline {
    color: #fff !important;
    border-color: #fff !important;
}

[data-theme="dark"] .testimonials-cta .btn-outline:hover {
    background: #fff !important;
    color: var(--mechanic-primary) !important;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--mechanic-accent), var(--mechanic-accent-dark));
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--mechanic-accent);
    border-color: #fff;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* CTA button in dark mode - dark grey with orange text */
[data-theme="dark"] .cta-section .btn-primary {
    background: #2d3748 !important;
    color: var(--mechanic-accent) !important;
    border-color: #2d3748 !important;
}

[data-theme="dark"] .cta-section .btn-primary:hover {
    background: #1a202c !important;
    border-color: #1a202c !important;
    color: var(--mechanic-accent-light) !important;
}

/* Phone number button in dark mode - dark grey text */
[data-theme="dark"] .cta-section .btn-outline-light {
    background: transparent !important;
    color: #2d3748 !important;
    border-color: #2d3748 !important;
}

[data-theme="dark"] .cta-section .btn-outline-light:hover {
    background: #2d3748 !important;
    color: var(--mechanic-accent) !important;
    border-color: #2d3748 !important;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    background: var(--mechanic-bg-card);
}

.location-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .location-section h3 {
    color: #fff;
}

.location-section h3 i {
    color: var(--mechanic-accent);
    margin-right: 0.5rem;
}

.location-info p {
    margin: 0 0 0.5rem;
    color: var(--mechanic-text);
}

.location-info .btn {
    margin-top: 1rem;
}

[data-theme="dark"] .location-info .btn-outline {
    color: #fff !important;
    border-color: #fff !important;
}

[data-theme="dark"] .location-info .btn-outline:hover {
    background: #fff !important;
    color: var(--mechanic-primary) !important;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--mechanic-bg);
    border-radius: 8px;
}

.hours-row .day {
    font-weight: 600;
    color: var(--mechanic-text);
}

.hours-row .time {
    color: var(--mechanic-text-muted);
}

.hours-row.highlight {
    background: rgba(221, 107, 32, 0.1);
    border: 1px solid rgba(221, 107, 32, 0.2);
}

.hours-row.highlight .time {
    color: var(--mechanic-accent);
    font-weight: 600;
}

.emergency-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(221, 107, 32, 0.1);
    border-radius: 8px;
    color: var(--mechanic-accent);
    font-size: 0.95rem;
}

.emergency-note i {
    margin-right: 0.5rem;
}

/* ============================================
   PRICING SECTION (Services Page)
   ============================================ */
.pricing-section {
    background: var(--mechanic-bg-card);
    padding: 3rem 0;
}

.pricing-box {
    background: var(--mechanic-bg);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 2rem;
}

.pricing-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mechanic-primary);
    margin: 0 0 1rem;
}

[data-theme="dark"] .pricing-box h2 {
    color: #fff;
}

.pricing-box h2 i {
    color: var(--mechanic-accent);
    margin-right: 0.5rem;
}

.pricing-box > p {
    color: var(--mechanic-text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--mechanic-text);
}

.pricing-features li i {
    color: var(--mechanic-success);
}

.warranty-box {
    background: linear-gradient(135deg, var(--mechanic-primary), var(--mechanic-primary-dark));
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.warranty-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.warranty-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
}

.warranty-box p {
    opacity: 0.9;
    margin: 0 0 1.5rem;
}

.warranty-box .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.warranty-box .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

[data-theme="dark"] .warranty-box .btn-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

[data-theme="dark"] .warranty-box .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff !important;
}

/* ============================================
   STORY SECTION (About Page)
   ============================================ */
.story-section {
    background: var(--mechanic-bg);
}

.story-content {
    padding-right: 2rem;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mechanic-primary);
    margin: 0.5rem 0 1.5rem;
}

[data-theme="dark"] .story-content h2 {
    color: #fff;
}

.story-content p {
    color: var(--mechanic-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--mechanic-border);
}

.signature-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .signature-name {
    color: var(--mechanic-accent);
}

.signature-title {
    font-size: 0.875rem;
    color: var(--mechanic-text-muted);
}

.story-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--mechanic-primary), var(--mechanic-primary-dark));
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.image-placeholder span {
    font-size: 0.875rem;
}

.image-placeholder.large {
    aspect-ratio: 1/1;
}

.story-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--mechanic-accent);
    color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(221, 107, 32, 0.3);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* ============================================
   TEAM SECTION (About Page)
   ============================================ */
.team-section {
    background: var(--mechanic-bg);
}

.team-card {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--mechanic-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #fff;
}

.team-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .team-info h3 {
    color: #fff;
}

.team-role {
    display: block;
    color: var(--mechanic-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cert-badge {
    background: rgba(221, 107, 32, 0.1);
    color: var(--mechanic-accent);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.team-info p {
    color: var(--mechanic-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   CERTIFICATIONS SECTION (About Page)
   ============================================ */
.certifications-section {
    background: var(--mechanic-bg-card);
}

.cert-card {
    background: var(--mechanic-bg);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.cert-card .cert-icon {
    width: 60px;
    height: 60px;
    background: var(--mechanic-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.cert-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .cert-card h4 {
    color: #fff;
}

.cert-card p {
    font-size: 0.875rem;
    color: var(--mechanic-text-muted);
    margin: 0;
}

/* ============================================
   COMMUNITY SECTION (About Page)
   ============================================ */
.community-section {
    background: var(--mechanic-bg);
}

.community-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mechanic-primary);
    margin: 0.5rem 0 1rem;
}

[data-theme="dark"] .community-section h2 {
    color: #fff;
}

.community-section > .container > .slot-layout > .slot-item:first-child > p {
    color: var(--mechanic-text-muted);
    margin-bottom: 1.5rem;
}

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

.community-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--mechanic-border);
}

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

.community-list li i {
    width: 40px;
    height: 40px;
    background: rgba(221, 107, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mechanic-accent);
    flex-shrink: 0;
}

.community-list li strong {
    display: block;
    color: var(--mechanic-primary);
    margin-bottom: 0.25rem;
}

[data-theme="dark"] .community-list li strong {
    color: #fff;
}

.community-list li span {
    font-size: 0.9rem;
    color: var(--mechanic-text-muted);
}

.community-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-section {
    background: var(--mechanic-bg-card);
    padding: 3rem 0;
}

.contact-card {
    background: var(--mechanic-bg);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mechanic-accent), var(--mechanic-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #fff;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--mechanic-primary);
}

[data-theme="dark"] .contact-card h3 {
    color: #fff;
}

.contact-primary {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.contact-primary a {
    color: var(--mechanic-accent);
    text-decoration: none;
}

.contact-secondary {
    color: var(--mechanic-text-muted);
    margin: 0 0 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--mechanic-success);
    margin: 0.75rem 0 0;
}

.hours-compact {
    text-align: left;
}

.hours-compact .hours-row {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
}

.hours-compact .hours-row.closed {
    opacity: 0.6;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 0 0 3rem;
    background: var(--mechanic-bg-card);
}

.map-placeholder {
    background: var(--mechanic-bg);
    border: 2px dashed var(--mechanic-border);
    border-radius: 12px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--mechanic-text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
}

.map-placeholder p {
    font-size: 0.875rem;
    margin: 0.5rem 0 0;
}

/* ============================================
   APPOINTMENT FORM
   ============================================ */
.appointment-section {
    background: var(--mechanic-bg);
}

.form-wrapper {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 2rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mechanic-primary);
    margin: 0 0 0.5rem;
}

[data-theme="dark"] .form-header h2 {
    color: #fff;
}

.form-header h2 i {
    color: var(--mechanic-accent);
    margin-right: 0.5rem;
}

.form-header p {
    color: var(--mechanic-text-muted);
    margin: 0;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--mechanic-border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mechanic-primary);
    margin: 0 0 1.25rem;
}

[data-theme="dark"] .form-section h3 {
    color: #fff;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--mechanic-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group label .required {
    color: var(--mechanic-accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--mechanic-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--mechanic-bg);
    color: var(--mechanic-text);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mechanic-accent);
    box-shadow: 0 0 0 3px rgba(221, 107, 32, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--mechanic-text-muted);
}

/* Dark mode form styling */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: var(--mechanic-bg);
    color: var(--mechanic-text);
    border-color: var(--mechanic-border);
}

[data-theme="dark"] .form-group input::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    accent-color: var(--mechanic-accent);
}

.checkbox-text {
    font-weight: normal;
    color: var(--mechanic-text);
}

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

.form-note {
    color: var(--mechanic-text-muted);
    font-size: 0.875rem;
    margin: 1rem 0 0;
}

.form-note i {
    margin-right: 0.25rem;
}

/* ============================================
   SIDEBAR CONTENT (Contact Page)
   ============================================ */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--mechanic-bg-card);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 1.5rem;
    overflow: hidden;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mechanic-primary);
    margin: 0 0 1rem;
}

[data-theme="dark"] .sidebar-card h3 {
    color: #fff;
}

.sidebar-card h3 i {
    color: var(--mechanic-accent);
    margin-right: 0.5rem;
}

.sidebar-card p {
    color: var(--mechanic-text-muted);
    margin: 0 0 1rem;
}

.sidebar-card .small-text {
    font-size: 0.875rem;
    text-align: center;
    margin: 1rem 0 0;
}

.sidebar-card .btn-emergency {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    flex-wrap: wrap;
    word-break: break-word;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

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

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.trust-list li i {
    color: var(--mechanic-success);
    margin-top: 0.25rem;
}

.trust-list li span {
    color: var(--mechanic-text);
    font-size: 0.95rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mechanic-accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--mechanic-bg-card);
}

.faq-card {
    background: var(--mechanic-bg);
    border: 1px solid var(--mechanic-border);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
}

.faq-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mechanic-primary);
    margin: 0 0 0.75rem;
}

[data-theme="dark"] .faq-card h4 {
    color: #fff;
}

.faq-card h4 i {
    color: var(--mechanic-accent);
    margin-right: 0.5rem;
}

.faq-card p {
    color: var(--mechanic-text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--mechanic-primary-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--mechanic-accent);
    font-size: 1.5rem;
}

.site-footer p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--mechanic-accent);
    transform: translateY(-3px);
}

.site-footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--mechanic-accent);
    margin-top: 0.25rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-certifications {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-certifications i {
    margin-right: 0.5rem;
    color: var(--mechanic-accent);
}

/* ============================================
   MOBILE STICKY PHONE BUTTON
   ============================================ */
.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--mechanic-accent);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(221, 107, 32, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-phone-btn:hover {
    background: var(--mechanic-accent-dark);
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .mobile-phone-btn {
        display: none;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    section {
        padding: var(--section-padding-sm);
    }

    .hero-section {
        padding: 6rem 0 4rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .story-content {
        padding-right: 0;
    }

    .story-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-flex;
        flex-direction: column;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .rsl-navbar,
    .mobile-phone-btn,
    .rsl-theme-toggle,
    .btn-emergency,
    .cta-section {
        display: none !important;
    }

    .hero-section {
        background: #1a365d !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
