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

/* Dirt/Industrial Theme - Root Variables - RED/BLACK THEME */
:root {
    /* Primary Colors - Red/Black Theme */
    --primary-dark: #000000;        /* Pure black */
    --primary-brown: #1a1a1a;       /* Dark gray */
    --primary-tan: #333333;         /* Medium gray */
    --primary-orange: #dc143c;      /* Crimson red */
    --primary-rust: #b22222;        /* Firebrick red */

    /* Secondary Colors - Red Accents */
    --secondary-steel: #2c1810;     /* Dark red-brown */
    --secondary-silver: #666666;    /* Gray */
    --secondary-bronze: #8b0000;    /* Dark red */
    --secondary-copper: #a52a2a;    /* Brown red */

    /* Accent Colors - Bright Reds */
    --accent-yellow: #ff4500;       /* Orange red */
    --accent-red: #ff0000;          /* Pure red */
    --accent-green: #32cd32;        /* Lime green */

    /* Background Colors - Black Theme */
    --bg-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --bg-secondary: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --bg-tertiary: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    --bg-overlay: rgba(26, 26, 26, 0.95);

    /* Text Colors - High Contrast for Legibility */
    --text-primary: #ffffff;         /* Pure white */
    --text-secondary: #cccccc;      /* Light gray */
    --text-muted: #999999;          /* Medium gray */

    /* Border/Shadow Colors */
    --border-color: #666666;        /* Medium gray */
    --shadow-color: rgba(0, 0, 0, 0.8);
    --glow-color: rgba(220, 20, 60, 0.4);

    /* Typography - BOLD */
    --font-primary: 'Oswald', 'Arial Black', sans-serif;
    --font-secondary: 'Roboto Condensed', Arial, sans-serif;
    --font-accent: 'Bebas Neue', cursive;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-primary);
    background: url('https://www.nycjunkcarbuyer.com/wp-content/uploads/junk-1.jpg') center/cover fixed no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 
        2px 2px 4px var(--shadow-color),
        0 0 10px var(--accent-red),
        0 0 20px var(--accent-red),
        0 0 30px var(--accent-red),
        0 0 40px var(--accent-red);
    color: var(--text-primary);
    animation: redGlow 2s ease-in-out infinite alternate;
}

h2 {
    font-size: 2.25rem;
    color: var(--primary-orange);
    text-shadow: 1px 1px 2px var(--shadow-color);
}

h3 {
    font-size: 1.75rem;
    color: var(--secondary-bronze);
    text-shadow: 1px 1px 2px var(--shadow-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

a {
    color: var(--accent-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(44, 24, 16, 0.9));
    backdrop-filter: blur(20px);
    border-bottom: 3px solid var(--border-color);
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-image: linear-gradient(90deg, var(--primary-rust), var(--secondary-bronze), var(--primary-orange)) 1;
}

.header::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" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="rust" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23b86f2d" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%238b7355" opacity="0.08"/><rect x="0" y="0" width="100" height="100" fill="none" stroke="%235d4e37" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23rust)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
}

.nav {
    padding: 1.2rem 0;
    position: relative;
    z-index: 2;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.nav-logo h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-family: var(--font-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    font-weight: 800;
}

.nav-logo p {
    font-size: 0.8rem;
    color: var(--secondary-silver);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.nav-logo-image {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
}

.nav-logo-image:hover {
    transform: scale(1.05);
}

.hero-logo-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px var(--glow-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    background-color: #f01000;
    color: #000000 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border: 3px solid #929087;
    border-radius: 50px;
    padding: 6px 24px;
    box-shadow: 1px 9px 17px 4px #9c9c9c;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #000000 !important;
    color: #ff0000 !important;
    text-shadow: none;
    transform: none;
}

.nav-cta {
    flex-shrink: 0;
    display: flex;
    gap: 1rem;
}

.nav-cta .cta-button {
    background-color: #000000;
    background-image: none;
    border-radius: 48px;
    border: 5px solid #ff1100;
    box-shadow: 1px -10px 80px 0px #000000;
    box-sizing: border-box;
    color: #ff0000;
    cursor: pointer;
    display: inline-block;
    font-family: 'Raleway', -apple-system, system-ui, "Segoe UI", "Liberation Sans", sans-serif;
    font-size: 13px;
    font-weight: bold;
    font-style: italic;
    line-height: 1.15385;
    margin: 0;
    outline: none;
    padding: 0px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
    min-width: 90px;
    min-height: 40px;
    transition: all 0.3s ease;
}

.nav-cta .cta-button:hover {
    background-color: #ff1100;
    color: #000000;
    box-shadow: 1px -10px 80px 0px #000000;
    transform: none;
}

.nav-cta .cta-button::before {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(61, 43, 31, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    padding: 0.75rem;
    gap: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(61, 43, 31, 0.9);
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(184, 111, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(184, 111, 45, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="none" fill-rule="evenodd"><g fill="%23b86f2d" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/><circle cx="10" cy="10" r="1"/><circle cx="50" cy="10" r="1"/><circle cx="10" cy="50" r="1"/><circle cx="50" cy="50" r="1"/></g></g></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px var(--shadow-color);
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-bronze));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 600;
    color: var(--text-secondary);
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(61, 43, 31, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 4px var(--glow-color));
}

.feature-item.highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.3));
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    transform: scale(1.05);
}

@keyframes pulse {
    0% { transform: scale(1.05); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.05); }
}

.google-bonus {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.2));
    border: 2px solid #ffc107;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.bonus-text {
    color: #ff8f00;
    font-size: 1.1rem;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
    line-height: 1.3;
}

/* Google Review Bonus Section */
.google-bonus-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 24, 16, 0.8));
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.google-bonus-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" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23ffc107" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23ff8f00" opacity="0.08"/><circle cx="50" cy="10" r="1" fill="%23ffd54f" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bonus-icon {
    font-size: 8rem;
    text-align: center;
    color: #ffc107;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.5));
    animation: starPulse 3s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-text-content h2 {
    color: #ffc107;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-text-content h3 {
    color: #ff8f00;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bonus-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.bonus-step {
    background: rgba(255, 193, 7, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.bonus-step:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.step-number {
    display: block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.bonus-step span:last-child {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-cta {
    background: linear-gradient(135deg, #ffc107, #ff8f00) !important;
    border: 2px solid #e65100 !important;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4) !important;
    color: #000 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.bonus-cta:hover {
    background: linear-gradient(135deg, #ff8f00, #e65100) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6) !important;
    border-color: #bf360c !important;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.car-placeholder {
    background: var(--bg-overlay);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 2px solid var(--border-color);
    box-shadow: 0 8px 32px var(--shadow-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.car-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(139, 115, 85, 0.1) 10px,
        rgba(139, 115, 85, 0.1) 20px
    );
    animation: slide 20s linear infinite;
}

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

.car-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 8px var(--glow-color));
    position: relative;
    z-index: 1;
}

.car-placeholder p {
    position: relative;
    z-index: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.car-text {
    font-family: 'Courier New', 'Arial Black', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-shadow: 3px 3px 0px var(--shadow-color), 6px 6px 0px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 3px solid var(--border-color);
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    display: inline-block;
    transform: rotate(-1deg);
    box-shadow: 5px 5px 0px var(--shadow-color);
}

.car-subtitle {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 2px 2px 0px var(--shadow-color);
    letter-spacing: 1px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 56px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-rust), var(--secondary-copper));
    color: var(--text-primary);
    box-shadow: 0 6px 20px var(--glow-color);
    border-color: var(--secondary-bronze);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--secondary-copper), var(--primary-rust));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--glow-color);
    border-color: var(--accent-yellow);
}

.cta-button.secondary {
    background: rgba(61, 43, 31, 0.8);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.cta-button.secondary:hover {
    background: rgba(61, 43, 31, 0.9);
    border-color: var(--accent-yellow);
    box-shadow: 0 6px 20px var(--glow-color);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    min-height: 64px;
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

/* Services Section */
.services {
    background: rgba(44, 24, 16, 0.9);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.services h2,
.process h2,
.about h2,
.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-overlay);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-color);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 111, 45, 0.1), rgba(139, 115, 85, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-color);
    border-color: var(--accent-yellow);
}

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

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-yellow);
    filter: drop-shadow(0 0 6px var(--glow-color));
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px var(--shadow-color);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.service-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.service-list li::before {
    content: '⚙️';
    color: var(--accent-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Process Section */
.process {
    background: rgba(61, 43, 31, 0.85);
    border-top: 2px solid var(--border-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-overlay);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    position: relative;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid var(--bg-overlay);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-rust), var(--secondary-copper));
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px var(--glow-color);
    border: 3px solid var(--secondary-bronze);
}

.process-cta {
    text-align: center;
}

/* About Section */
.about {
    background: rgba(44, 24, 16, 0.9);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    padding: 1.5rem;
    background: var(--bg-overlay);
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px var(--shadow-color);
}

.about-feature h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.stats {
    text-align: center;
}

.stat {
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    display: block;
    line-height: 1;
    text-shadow: 2px 2px 4px var(--shadow-color);
    filter: drop-shadow(0 0 8px var(--glow-color));
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

/* FAQ Section */
.faq {
    background: rgba(26, 26, 26, 0.85);
    color: var(--text-primary);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.faq h2 {
    color: var(--text-primary);
    text-align: center;
}

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

.faq-item {
    background: var(--bg-overlay);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 8px var(--shadow-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px var(--shadow-color);
    border-color: var(--primary-orange);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(184, 111, 45, 0.1), rgba(255, 193, 7, 0.05));
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(184, 111, 45, 0.15), rgba(255, 193, 7, 0.1));
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.faq-toggle {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    text-shadow: 0 0 4px var(--glow-color);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-answer strong {
    color: var(--accent-yellow);
    text-shadow: 0 0 2px var(--glow-color);
}

.faq-image-container {
    text-align: center;
    margin: 1rem 0 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px var(--shadow-color);
}

/* Contact Section */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-overlay);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    text-align: center;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.contact-card h3 {
    color: var(--secondary-bronze);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.contact-card a {
    color: var(--accent-yellow);
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-overlay);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(61, 43, 31, 0.3);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px var(--glow-color);
    background: rgba(61, 43, 31, 0.5);
}

/* Car Calculator Section */
.calculator {
    background: var(--bg-secondary);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(184, 111, 45, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(139, 115, 85, 0.06) 0%, transparent 50%);
    opacity: 0.7;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.calculator-header h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px var(--shadow-color);
}

.calculator-header h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.calculator-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.calculator-form {
    background: var(--bg-overlay);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(15px);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: rgba(61, 43, 31, 0.3);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px var(--glow-color);
    background: rgba(61, 43, 31, 0.5);
}

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="none" stroke="%23b86f2d" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"><polyline points="6,9 12,15 18,9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
}

.calculator-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.calculator-btn {
    font-size: 1.1rem;
    padding: 1.25rem 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 60px;
}

.calculator-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.calculator-disclaimer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.quote-results {
    background: var(--bg-overlay);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px var(--glow-color);
    backdrop-filter: blur(15px);
    margin-top: 2rem;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-results-content {
    text-align: center;
}

.quote-results-content h3 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.quote-amount {
    margin-bottom: 1.5rem;
}

.quote-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.quote-value {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px var(--glow-color);
    display: block;
    font-family: var(--font-accent);
}

.quote-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    animation: modalFadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(8px);
    animation: backdropFadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--bg-overlay);
    border: 3px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 60px var(--shadow-color);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    backdrop-filter: blur(20px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-dark));
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.75rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.modal-close:hover {
    background: rgba(184, 111, 45, 0.2);
    color: var(--accent-yellow);
    transform: rotate(90deg);
}

.modal-close::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.modal-body {
    padding: 0;
}

/* Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
}

/* Modal Calculator Overrides */
.modal .calculator-container {
    max-width: none;
    margin: 0;
}

.modal .calculator-header {
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 2rem;
}

.modal .calculator-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal .calculator-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
}

.modal .calculator-form {
    padding: 0 2rem 2rem;
    margin-bottom: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.modal .form-row {
    margin-bottom: 1rem;
}

.modal .calculator-actions {
    margin-top: 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
}

.modal .calculator-btn {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
}

.modal .calculator-disclaimer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.modal .quote-results {
    margin-top: 1rem;
    border-radius: 8px;
    padding: 1.5rem;
}

/* Mobile Modal Adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2rem auto;
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal .calculator-form {
        padding: 0 1.5rem 1.5rem;
    }

    .modal .calculator-header {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1rem auto;
        max-height: 98vh;
    }

    .modal .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .modal .calculator-actions {
        gap: 0.5rem;
    }
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.9);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--border-color);
}

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

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.footer-section a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

/* Mobile-First Optimizations */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Improved Navigation for Mobile */
    .header {
        padding: 0.5rem 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .nav-container {
        padding: 0 1rem;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
        flex-wrap: nowrap;
    }

    .nav-logo {
        flex-shrink: 0;
        order: 1;
    }

    .nav-logo h1 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.1rem;
        line-height: 1.2;
    }

    .nav-logo p {
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        line-height: 1.1;
    }

    .nav-logo::before {
        top: -6px;
        left: -10px;
        right: -10px;
        bottom: -6px;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        order: 2;
        gap: 0.3rem;
        flex-shrink: 0;
        display: flex;
    }

    /* Better Touch Targets */
    .nav-cta .cta-button {
        padding: 0 12px;
        font-size: 0.7rem;
        height: 40px;
        line-height: 40px;
        min-height: 40px;
        letter-spacing: 0.3px;
        box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
        border-radius: 6px;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 90px;
        text-align: center;
    }

    /* Enhanced Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        flex-shrink: 0;
        padding: 0.6rem;
        border-radius: 6px;
        background: rgba(61, 43, 31, 0.8);
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-toggle:hover {
        background: rgba(61, 43, 31, 0.9);
        border-color: var(--accent-yellow);
        transform: scale(1.05);
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Improved Hero Section */
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
        margin-top: 60px; /* Account for fixed header */
    }

    .hero-container {
        gap: 2rem;
        padding: 0 1rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        padding: 0.8rem;
        border-radius: 8px;
        font-size: 0.8rem;
        text-align: center;
        min-height: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .feature-item.highlight {
        grid-column: 1 / -1;
        transform: scale(1);
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 152, 0, 0.35));
        border: 2px solid #ffc107;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    }

    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta .cta-button {
        width: 100%;
        height: 50px;
        font-size: 1rem;
        border-radius: 8px;
        font-weight: 800;
    }

    .hero-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .car-placeholder {
        padding: 1.5rem;
        border-radius: 12px;
        background: rgba(61, 43, 31, 0.8);
        border: 2px solid var(--border-color);
        backdrop-filter: blur(10px);
        text-align: center;
    }

    .car-text {
        font-size: 1.4rem;
        padding: 0.5rem;
        letter-spacing: 0.8px;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        color: var(--primary-orange);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .car-subtitle {
        font-size: 0.9rem;
        margin-top: 0.8rem;
        color: var(--text-secondary);
        line-height: 1.3;
    }

    .google-bonus {
        padding: 0.8rem;
        margin-top: 1rem;
        border-radius: 8px;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.25));
        border: 2px solid #ffc107;
        box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    }

    .bonus-text {
        font-size: 0.85rem;
        color: #ff8f00;
        font-weight: 900;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        margin: 0;
        line-height: 1.3;
    }

    .hero-stats {
        margin-top: 1.5rem;
        padding: 1rem;
        background: rgba(26, 26, 26, 0.8);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .hero-stats p {
        margin: 0.5rem 0;
        font-size: 0.85rem;
        color: var(--text-secondary);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        line-height: 1.4;
    }

    /* Improved Sections */
    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Better Card Layouts */
    .services-grid,
    .process-steps,
    .testimonials-grid,
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .step,
    .testimonial-card,
    .about-feature {
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 0;
    }

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

    /* Enhanced Forms */
    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 800;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        border-radius: 6px;
        font-size: 16px; /* Prevent zoom on iOS */
        min-height: 44px;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }

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

    /* Better Buttons */
    .cta-button {
        height: 48px;
        font-size: 1rem;
        border-radius: 8px;
        font-weight: 800;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    /* Enhanced Modal */
    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 2rem auto;
        border-radius: 12px;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 0 1.5rem 1.5rem;
        max-height: calc(90vh - 80px);
        overflow-y: auto;
    }

    /* Google Review Bonus Section */
    .google-bonus-section {
        padding: 60px 0;
    }

    .bonus-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

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

    .bonus-text-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .bonus-text-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .bonus-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .bonus-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .bonus-step {
        padding: 1rem;
        border-radius: 8px;
        min-height: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .bonus-cta {
        width: 100%;
        height: 50px;
        font-size: 1rem;
        border-radius: 8px;
    }

    /* Footer Optimization */
    .footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }

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

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Ultra-compact mobile layout */
    body {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 0.8rem;
        gap: 0.4rem;
        min-height: 55px;
    }

    .nav-logo h1 {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
        margin-bottom: 0.05rem;
    }

    .nav-logo p {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .nav-logo::before {
        top: -6px;
        left: -10px;
        right: -10px;
        bottom: -6px;
    }

    .nav-cta .cta-button {
        padding: 0 12px;
        font-size: 0.65rem;
        height: 40px;
        line-height: 40px;
        min-height: 40px;
        max-width: 100px;
    }

    .mobile-menu-toggle {
        padding: 0.6rem;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
    }

    /* Hero optimizations */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        letter-spacing: 0.8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .feature-item {
        padding: 0.8rem;
        min-height: 50px;
        font-size: 0.85rem;
    }

    .feature-item.highlight {
        transform: scale(1.02);
    }

    .hero-cta {
        gap: 0.6rem;
    }

    .hero-cta .cta-button {
        height: 45px;
        font-size: 0.9rem;
    }

    .hero-image {
        margin-bottom: 1.5rem;
    }

    .car-placeholder {
        padding: 1.5rem 1.2rem;
    }

    .car-text {
        font-size: 1.3rem;
        padding: 0.6rem;
        letter-spacing: 0.5px;
    }

    .car-subtitle {
        font-size: 0.9rem;
        margin-top: 0.8rem;
    }

    .google-bonus {
        padding: 0.8rem;
        margin-top: 1rem;
    }

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

    /* Section optimizations */
    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    /* Card optimizations */
    .service-card,
    .step,
    .testimonial-card,
    .about-feature {
        padding: 1.2rem;
        border-radius: 8px;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .service-card h3,
    .step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    /* Form optimizations */
    .contact-form {
        padding: 1.5rem 1.2rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 16px;
        min-height: 40px;
        border-radius: 5px;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .cta-button {
        height: 44px;
        font-size: 0.95rem;
        min-height: 44px;
    }

    /* Modal optimizations */
    .modal-content {
        width: 98%;
        margin: 1rem auto;
        max-height: 95vh;
        border-radius: 10px;
    }

    .modal-header {
        padding: 1.2rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 0 1.2rem 1.2rem;
        max-height: calc(95vh - 70px);
    }

    .calculator-form {
        padding: 0 1rem 1rem;
    }

    .form-row {
        gap: 0.6rem;
    }

    .calculator-actions {
        gap: 0.5rem;
    }

    .calculator-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Google bonus optimizations */
    .google-bonus-section {
        padding: 50px 0;
    }

    .bonus-content {
        gap: 1.5rem;
        padding: 0 0.8rem;
    }

    .bonus-icon {
        font-size: 3.5rem;
        margin-bottom: 0.8rem;
    }

    .bonus-text-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .bonus-text-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .bonus-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .bonus-steps {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }

    .bonus-step {
        padding: 0.8rem;
        min-height: 60px;
        gap: 0.4rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .bonus-step span:last-child {
        font-size: 0.85rem;
    }

    .bonus-cta {
        height: 45px;
        font-size: 0.95rem;
    }

    /* Footer optimizations */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }

    /* Enhanced touch targets */
    a, button, .cta-button, .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent horizontal scrolling */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

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

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce motion for better performance */
    *, *::before, *::after {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
        transition-duration: 0.3s !important;
        transition-delay: 0s !important;
    }

    /* Optimize transforms */
    .cta-button:hover {
        will-change: transform;
    }

    /* Optimize scrolling */
    .modal-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Better focus indicators */
    *:focus {
        outline: 2px solid var(--accent-yellow);
        outline-offset: 2px;
    }

    /* Remove focus outline on touch */
    *:focus:not(:focus-visible) {
        outline: none;
    }

    /* Better contrast for links */
    a {
        text-decoration-thickness: 2px;
        text-underline-offset: 2px;
    }

    /* Skip to content link (for screen readers) */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--text-primary);
        color: var(--bg-primary);
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 1000;
    }

    .skip-link:focus {
        top: 6px;
    }
}

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

/* Dirt/Grunge Effects */
.grunge-overlay {
    position: relative;
    overflow: hidden;
}

.grunge-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(139, 115, 85, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(184, 111, 45, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(61, 43, 31, 0.08) 3px, transparent 3px);
    background-size: 50px 50px, 30px 30px, 70px 70px;
    background-position: 0 0, 25px 25px, 15px 15px;
    opacity: 0.3;
    pointer-events: none;
}

/* Metallic text effect for headings */
.metallic-text {
    background: linear-gradient(135deg, var(--secondary-bronze), var(--primary-orange), var(--secondary-copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 2px rgba(184, 111, 45, 0.5));
}

/* Rusty border effect */
.rusty-border {
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--primary-rust), var(--secondary-bronze), var(--primary-orange)) 1;
}

/* Industrial shadow effect */
.industrial-shadow {
    box-shadow:
        0 4px 20px var(--shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.hero-stats {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-overlay);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.hero-stats p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-secondary);
    text-shadow: 1px 1px 2px var(--shadow-color);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
    text-shadow: 1px 1px 2px var(--shadow-color);
}

/* Red Glow Animation */
@keyframes redGlow {
    0% {
        text-shadow: 
            2px 2px 4px var(--shadow-color),
            0 0 10px var(--accent-red),
            0 0 20px var(--accent-red),
            0 0 30px var(--accent-red);
    }
    100% {
        text-shadow: 
            2px 2px 4px var(--shadow-color),
            0 0 20px var(--accent-red),
            0 0 30px var(--accent-red),
            0 0 40px var(--accent-red),
            0 0 50px var(--accent-red);
    }
}
