:root {
    --primary-color: #9B1C1C;
    --primary-dark: #7F1D1D;
    --primary-light: #B91C1C;
    --secondary-color: #771D1D;
    --accent-color: #DC2626;
    --text-color: #1f2937;
    --light-gray: #f9fafb;
    --dark-gray: #111827;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: var(--shadow-sm);
}

.logo-container {
    text-align: center;
    padding: 1rem;
    background: white;
}

.logo-container h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Remove old nav styles */
nav {
    display: none;
}

/* ZIP Search Section */
.zip-search,
.zip-form {
    display: none;
}

/* Add new CTA styles */
.cta-primary {
    margin: 3rem 0;
    text-align: center;
}

.cta-primary p {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button .phone-icon {
    width: 24px;
    height: 24px;
}

/* Hero Section with Background */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1593784991095-a205069533b8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    color: white;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    z-index: 1;
}

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

.hero h1, .hero h2, .hero p {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-color);
    font-size: 1.1rem;
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* Hero content text colors */
.hero-content .features-grid .feature-box {
    background-color: rgba(255, 255, 255, 0.95);
}

.hero-content .features-grid .feature-box h3 {
    color: var(--primary-color);
}

.hero-content .features-grid .feature-box p {
    color: var(--text-color);
}

/* Benefits Section */
.benefits {
    padding: 6rem 2rem;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--dark-gray);
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    background-color: var(--light-gray);
    padding: 6rem 2rem;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--dark-gray);
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 1.5rem 0;
    line-height: 1;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-card li {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.pricing-card .button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card .button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--dark-gray);
    font-weight: 800;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: var(--light-gray);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.author {
    margin-top: 2rem;
}

.author p {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
    font-size: 1.1rem;
}

.author span {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.contact-info {
    text-align: center;
    padding: 2rem;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-phone:hover {
    transform: scale(1.05);
}

.support-hours {
    color: var(--white);
    opacity: 0.8;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Contact Bar Styles */
.contact-bar {
    background-color: var(--primary-color);
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.phone-number {
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
}

.phone-icon {
    vertical-align: middle;
}

/* Call to Action in ZIP search */
.call-to-action {
    margin-top: 1.5rem;
    text-align: center;
}

.call-to-action p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.phone-button:hover {
    background-color: var(--light-gray);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background-color: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-color);
    text-align: center;
}

/* Coverage Area Section */
.coverage-area {
    padding: 6rem 2rem;
    background-color: var(--light-gray);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.coverage-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.coverage-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

/* Popular Packages Section */
.popular-packages {
    padding: 6rem 2rem;
    background-color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.package-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 800;
}

.package-price span {
    font-size: 1.1rem;
    font-weight: 500;
}

.package-content {
    padding: 2rem;
}

.package-content ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
    padding-left: 0;
}

.package-content li {
    margin: 1rem 0;
    padding-left: 0;
    text-align: center;
}

.package-content li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
    position: static;
    display: inline;
}

.package-cta {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background-color: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    text-align: center;
}

/* Global text alignment */
.hero-content,
.features-grid,
.benefits,
.benefits-grid,
.benefit-item,
.feature-box,
.how-it-works,
.coverage-area,
.popular-packages,
.package-card,
.package-content,
.faq-item,
.testimonial,
.contact-info {
    text-align: center;
}

/* Update specific elements that need centered text */
.hero p {
    text-align: center;
    margin: 0 auto 2rem;
}

.step-content p {
    text-align: center;
}

.package-content ul {
    text-align: center;
    padding-left: 0;
}

.package-content li {
    text-align: center;
    padding-left: 0;
}

.package-content li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
    position: static;
    display: inline;
}

.faq-item p {
    text-align: center;
}

.testimonial p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1.5rem;
    }

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

    .steps-container,
    .coverage-grid,
    .packages-grid,
    .faq-grid {
        gap: 1.5rem;
    }

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

    .package-header {
        padding: 1.5rem;
    }

    .package-price {
        font-size: 2.5rem;
    }
}

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

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

    .coverage-item img {
        height: 150px;
    }

    .package-content {
        padding: 1.5rem;
    }
}

.legal-disclaimer {
    padding: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.legal-disclaimer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto 1rem;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
} 