/* ========================================
   Bolts & Bones Mobile Mechanics
   Main Stylesheet
   ======================================== */

/* ----------------------------------------
   CSS Custom Properties (Design Tokens)
   ---------------------------------------- */
:root {
    /* Primary Colors */
    --orange-primary: #E8954A;
    --orange-light: #F4A460;
    --orange-glow: #FFAB5C;
    --red-accent: #D94B2B;
    --red-dark: #B33D24;
    --gold: #D4A84B;
    --gold-light: #E8C068;
    
    /* Neutral Colors */
    --charcoal: #1E1E1E;
    --charcoal-light: #2D2D2D;
    --charcoal-mid: #3A3A3A;
    --white: #FFFFFF;
    --off-white: #F5F3EF;
    --gray-text: #B0B0B0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ----------------------------------------
   Utility Classes
   ---------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----------------------------------------
   Header / Navigation
   ---------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(30,30,30,0.98) 0%, rgba(30,30,30,0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red-accent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-logo-text span {
    color: var(--orange-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--red-accent);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(217, 75, 43, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(232, 149, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(217, 75, 43, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

/* Dot pattern overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232, 149, 74, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.hero-text h1 .highlight {
    color: var(--orange-primary);
    display: block;
}

.hero-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--orange-light);
    margin-bottom: 24px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--red-accent);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(217, 75, 43, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.badge-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-visual {
    position: relative;
}

.hero-logo-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: logo-float 4s ease-in-out infinite;
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(217, 75, 43, 0.4);
    }
}

/* Torn paper effect */
.torn-edge {
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--off-white);
    clip-path: polygon(
        0% 100%, 3% 85%, 6% 95%, 9% 80%, 12% 90%, 15% 75%, 18% 88%, 
        21% 70%, 24% 85%, 27% 72%, 30% 90%, 33% 78%, 36% 92%, 
        39% 68%, 42% 82%, 45% 73%, 48% 88%, 51% 65%, 54% 80%, 
        57% 75%, 60% 92%, 63% 70%, 66% 85%, 69% 78%, 72% 95%, 
        75% 72%, 78% 88%, 81% 68%, 84% 82%, 87% 75%, 90% 90%, 
        93% 70%, 96% 85%, 100% 78%, 100% 100%
    );
    z-index: 10;
}

.torn-edge-top {
    bottom: -1px;
}

.torn-edge-bottom {
    top: -1px;
    transform: rotate(180deg);
}

/* ----------------------------------------
   Value Props Section
   ---------------------------------------- */
.value-props {
    background: var(--off-white);
    padding: 80px 0 60px;
    position: relative;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--red-accent);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--red-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.value-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ----------------------------------------
   Services Section
   ---------------------------------------- */
.services {
    background: var(--charcoal);
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    letter-spacing: 2px;
}

.section-title .highlight {
    color: var(--orange-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--charcoal-light);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
    border: 1px solid var(--charcoal-mid);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--red-accent);
    transform: translateX(8px);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.service-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-content p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: var(--charcoal-mid);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ----------------------------------------
   Service Area Section
   ---------------------------------------- */
.service-area {
    background: var(--off-white);
    padding: 100px 0;
    position: relative;
}

.service-area .section-title {
    color: var(--charcoal);
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.area-map {
    background: var(--charcoal);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.area-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(232, 149, 74, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-visual {
    position: relative;
    z-index: 1;
}

.map-center {
    width: 120px;
    height: 120px;
    background: var(--red-accent);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 0 0 20px rgba(217, 75, 43, 0.2), 0 0 0 40px rgba(217, 75, 43, 0.1);
    animation: radar 2s ease-out infinite;
}

@keyframes radar {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 75, 43, 0.4), 0 0 0 0 rgba(217, 75, 43, 0.2);
    }
    100% {
        box-shadow: 0 0 0 40px rgba(217, 75, 43, 0), 0 0 0 80px rgba(217, 75, 43, 0);
    }
}

.map-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.city-tag {
    background: var(--charcoal-light);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 1px solid var(--charcoal-mid);
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: var(--orange-primary);
    color: var(--charcoal);
    border-color: var(--orange-primary);
}

.city-tag.primary {
    background: var(--red-accent);
    border-color: var(--red-accent);
}

.area-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.area-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.area-features {
    list-style: none;
}

.area-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.area-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--red-accent);
    font-size: 1.2rem;
}

/* ----------------------------------------
   Veteran Discount Banner
   ---------------------------------------- */
.veteran-banner {
    background: linear-gradient(135deg, var(--red-accent), var(--red-dark));
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.veteran-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.veteran-banner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.veteran-banner .discount {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.veteran-banner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto;
}

/* ----------------------------------------
   Testimonials Section
   ---------------------------------------- */
.testimonials {
    background: var(--charcoal);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--charcoal-light);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--charcoal-mid);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--red-accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-location {
    color: var(--orange-primary);
    font-size: 0.9rem;
}

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.cta-section {
    background: var(--charcoal-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 75, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--orange-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    color: var(--gold);
    transform: scale(1.05);
}

.cta-phone-icon {
    width: 60px;
    height: 60px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

/* ----------------------------------------
   Contact Form
   ---------------------------------------- */
.contact-form {
    background: var(--charcoal);
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    margin: 40px auto 0;
    border: 1px solid var(--charcoal-mid);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--charcoal-light);
    border: 2px solid var(--charcoal-mid);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange-primary);
}

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

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

.form-submit {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.form-submit .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.2rem;
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #F44336;
    color: #F44336;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
footer {
    background: var(--charcoal);
    border-top: 1px solid var(--charcoal-mid);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-brand h3 span {
    color: var(--orange-primary);
}

.footer-brand p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--charcoal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--red-accent);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--orange-primary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.footer-contact-item span:first-child {
    color: var(--orange-primary);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-mid);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* ----------------------------------------
   Mobile Responsive
   ---------------------------------------- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-logo-container {
        max-width: 350px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .area-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 2px solid var(--red-accent);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--charcoal-mid);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-logo-container {
        max-width: 280px;
    }

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-list {
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cta-phone {
        flex-direction: column;
    }
}
