/* 
 * Tri-Cities Junk Pros - Landing Page Styles
 * Colors:
 * - Dark Green: #0E3F2A
 * - Junk Orange: #FF9B1A
 * - Cream: #F5F1E6
 * - White: #FFFFFF
 */


:root {
    --dark-green: #0E3F2A;
    --junk-orange: #FF9B1A;
    --cream: #F5F1E6;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --error: #EF4444;
    --success: #10B981;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --size-xs: 0.25rem;
    --size-sm: 0.5rem;
    --size-md: 1rem;
    --size-lg: 1.5rem;
    --size-xl: 2rem;
    --size-2xl: 3rem;
    --size-3xl: 4rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--junk-orange);
}

.container {
    width: 100%;
    max-width: none; /* Allow full width for hero section */
    margin: 0 auto;
    padding: 0; /* Remove padding for full-width sections */
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--size-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--size-md);
}

/* Discount Banner */
.discount-banner {
    background-color: var(--junk-orange);
    color: var(--white);
    text-align: center;
    padding: var(--size-sm) var(--size-md);
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.discount-banner.hidden {
    transform: translateY(-100%);
}

/* Header Styles */
.site-header {
    padding: var(--size-md) 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 60px; /* Account for fixed discount banner */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/garage-before-after-hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 63, 42, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--size-xl);
    color: var(--white);
}

.hero-content h1,
.hero-content p {
    color: var(--white);
}

.hero-badges {
    display: flex;
    gap: var(--size-md);
    margin-top: var(--size-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: var(--size-sm) var(--size-md);
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Before & After Section */
.before-after-section {
    padding: var(--size-3xl) 0;
    background-color: var(--cream);
}

.before-after-section .section-header {
    text-align: center;
    margin-bottom: var(--size-2xl);
}

.before-after-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: var(--size-md);
}

.before-after-section .section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--size-lg);
    margin-top: var(--size-xl);
}

.before-after-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.before-after-item:hover {
    transform: translateY(-5px);
}

.before-after-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--size-3xl) 0;
    background-color: var(--white);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: var(--size-2xl);
}

.testimonials-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: var(--size-md);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--size-xl);
    margin-top: var(--size-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--size-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: var(--size-lg);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: var(--dark-green);
    font-weight: 600;
}

.testimonial-stars {
    color: var(--junk-orange);
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    padding: var(--size-xl) 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content {
        padding: var(--size-md);
    }

    .hero-headline {
        font-size: 2rem;
    }

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

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        text-align: center;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: var(--size-md);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--size-md);
    }

    .testimonial-card {
        padding: var(--size-lg);
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--size-sm);
    }

    .before-after-section .section-header h2,
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }

    .content-container {
        padding: 0 var(--size-md);
    }
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subhead {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background-color: var(--junk-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 155, 26, 0.3);
}

.btn-hero-primary:hover {
    background-color: #e8891a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 155, 26, 0.4);
    color: var(--white);
}

.hero-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-phone i {
    color: var(--white);
    font-size: 1.2rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.phone-number:hover {
    color: var(--junk-orange);
}

.hero-sms-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sms-intro {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    text-align: center;
}

.sms-button {
    background-color: var(--junk-orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--junk-orange);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sms-button:hover {
    background-color: #e8891a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 155, 26, 0.4);
    color: var(--white);
    text-decoration: none;
}

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

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.stars i {
    color: var(--dark-green);
    font-size: 1.5rem;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-guarantee i {
    color: var(--dark-green);
    font-size: 1.2rem;
}

.hero-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-trust-elements {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: -50px;
    padding: 0 2rem;
    z-index: 1;
}

.trust-bubble {
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    color: var(--dark-green);
    font-size: 0.9rem;
    transform: translateY(20px);
}

.trust-bubble i {
    color: var(--junk-orange);
    font-size: 1.1rem;
}

.trust-left {
    animation: float-left 3s ease-in-out infinite;
}

.trust-right {
    animation: float-right 3s ease-in-out infinite 1.5s;
}

@keyframes float-left {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(10px); }
}

@keyframes float-right {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(15px); }
}

/* Mobile Responsive Styles for Hero Card */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
        min-height: 70vh;
    }

    .hero-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 16px;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .hero-subhead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero-primary {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .hero-sms-cta {
        margin: 1rem 0;
        padding: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .sms-intro {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .sms-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        text-align: center;
    }

    .stars i {
        font-size: 1.3rem;
    }

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

    .hero-trust-elements {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: -30px;
        padding: 0 1rem;
    }

    .trust-bubble {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-card {
        padding: 1.5rem 1rem;
    }

    .hero-headline {
        font-size: clamp(1.6rem, 7vw, 2rem);
        line-height: 1.1;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .hero-trust-elements {
        margin-top: -20px;
    }

    .trust-bubble {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--dark-green);
    color: var(--dark-green);
}

.btn-outline:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: rgba(14, 63, 42, 0.9);
    border: 2px solid var(--white);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-group {
    display: flex;
    gap: var(--size-md);
    margin-top: var(--size-lg);
}

/* How It Works Section */
.how-it-works {
    padding: var(--size-2xl) 0;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    margin-bottom: var(--size-xl);
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--junk-orange);
    border-radius: 2px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: var(--size-lg);
    margin-top: var(--size-xl);
}

.step-card {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--size-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dark-green);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--size-md);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--size-sm);
}

/* Services Grid */
.services-section {
    padding: var(--size-2xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--size-lg);
    margin-top: var(--size-xl);
}

.service-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--size-md);
}

.service-name {
    font-weight: 600;
}

/* Quote Form Section */
.quote-form-section {
    padding: var(--size-2xl) 0;
    background-color: var(--cream);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--size-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--size-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--size-xs);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--dark-green);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--size-xs);
}

.photo-upload-button {
    background-color: var(--junk-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: var(--size-md);
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 155, 26, 0.3);
}

.photo-upload-button:hover {
    background-color: #e8891a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 155, 26, 0.4);
    color: var(--white);
}

.photo-upload-button i {
    font-size: 1.2rem;
}

.photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: var(--size-md);
    margin-top: var(--size-md);
    position: relative;
}

.photo-count {
    width: 100%;
    text-align: center;
    color: var(--gray-600);
    margin-bottom: var(--size-sm);
    padding: var(--size-xs);
    background-color: var(--gray-100);
    border-radius: var(--radius-sm);
}

.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2px 5px;
    font-size: 0.7rem;
    text-align: center;
}

.processing-message {
    color: var(--gray-600);
    font-style: italic;
    padding: var(--size-sm);
    width: 100%;
    text-align: center;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style for HEIC/HEIF images that can't be previewed directly */
.heic-preview {
    background-color: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.heic-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--size-xs);
    font-size: 0.7rem;
    width: 100%;
    height: 100%;
}

.heic-icon {
    font-size: 1.5rem;
    margin-bottom: var(--size-xs);
}

.heic-placeholder span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
}

.form-submit {
    text-align: center;
    margin-top: var(--size-xl);
}

.call-now-link {
    margin: 0.75rem 0;
}

.phone-link {
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--dark-green);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--size-2xl) 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--size-xl);
}

.testimonials-header .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: var(--size-sm);
}

.testimonials-header .star {
    color: var(--junk-orange);
}

.testimonials-carousel {
    display: flex;
    gap: var(--size-lg);
    overflow-x: auto;
    padding: var(--size-md) 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.testimonial-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    padding: var(--size-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--junk-orange);
    margin-bottom: var(--size-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--size-md);
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Savings Banner */
.savings-banner {
    background-color: var(--junk-orange);
    color: var(--white);
    text-align: center;
    padding: var(--size-lg) var(--size-md);
    margin: var(--size-2xl) 0;
    border-radius: var(--radius-lg);
}

.savings-banner h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--size-2xl) 0;
}

.accordion {
    max-width: 800px;
    margin: var(--size-xl) auto 0;
}

.accordion-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--size-md);
}

.accordion-header {
    padding: var(--size-md);
    background-color: var(--gray-100);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 var(--size-md);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: var(--size-md);
    max-height: 200px;
}

/* Final CTA */
.final-cta {
    background-color: var(--dark-green);
    color: var(--white);
    text-align: center;
    padding: var(--size-2xl) 0;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: var(--size-xl);
    font-size: 2rem;
}

/* Footer */
.site-footer {
    background-color: var(--gray-800);
    color: var(--gray-300);
    padding: var(--size-2xl) 0 var(--size-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--size-xl);
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-links li {
    margin-bottom: var(--size-sm);
}

.footer-links a {
    color: var(--gray-300);
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: var(--size-md);
    margin-top: var(--size-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-700);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--junk-orange);
    transform: translateY(-2px);
    color: var(--white);
}

.footer-bottom {
    margin-top: var(--size-2xl);
    padding-top: var(--size-md);
    border-top: 1px solid var(--gray-700);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--size-md);
}

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: var(--size-lg);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--junk-orange);
    color: var(--white);
    padding: var(--size-sm) var(--size-lg);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 90;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

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

/* Status Message */
.status-message {
    display: none;
    padding: var(--size-md);
    border-radius: var(--radius-md);
    margin-top: var(--size-md);
    font-weight: 500;
}

.status-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.status-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    margin-right: var(--size-xs);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Helper Classes */
.text-center { text-align: center; }
.hidden { display: none !important; }

/* Responsive styles */
@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
    }

    .btn-group {
        flex-direction: row;
    }

    .zip-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-call-btn {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--size-sm);
    }

    .hero-container {
        text-align: center;
        padding: var(--size-lg) 0;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 6vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: var(--size-lg);
    }

    .hero-content h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: var(--size-xl);
        line-height: 1.3;
    }

    .trust-tags {
        justify-content: center;
        gap: var(--size-sm);
        margin-top: var(--size-xl);
    }

    .trust-tag {
        font-size: 1rem;
        padding: 0.5rem 0.8rem;
        background-color: rgba(14, 63, 42, 0.85);
        color: var(--white);
        border-radius: var(--radius-md);
        backdrop-filter: blur(4px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 155, 26, 0.4);
    }

    .trust-tag i {
        color: var(--junk-orange);
    }

    .text-link {
        margin-top: var(--size-lg) !important;
    }

    .text-link a {
        font-size: 1.1rem !important;
        font-weight: 600;
        padding: 0.5rem;
        background-color: rgba(255, 155, 26, 0.2);
        border-radius: var(--radius-md);
        display: inline-block;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    /* Enhanced mobile phone button visibility */
    .btn-outline-light {
        background-color: var(--dark-green);
        border: 2px solid var(--junk-orange);
        color: var(--white);
        font-weight: 700;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    }

    .btn-outline-light:hover {
        background-color: var(--junk-orange);
        border-color: var(--white);
        transform: translateY(-1px);
    }

    .steps-container {
        flex-direction: column;
    }

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

    .form-container {
        padding: var(--size-md);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--size-lg);
    }

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

    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: var(--size-xs);
    }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background-color: var(--success);
}

.toast.error {
    background-color: var(--error);
}

.toast.warning {
    background-color: #F59E0B; /* Amber/yellow for warnings */
}