/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background-color: #2563eb;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-title {
    font-size: 1.5rem;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #666;
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button.cta-red {
    background-color: #dc2626;
    color: white;
}

.cta-button.cta-red:hover {
    background-color: #b91c1c;
}

.cta-button.cta-white {
    background-color: white;
    color: #1e3a8a;
}

.cta-button.cta-white:hover {
    background-color: #ee5a6f;
    color: white;
}

.cta-button.cta-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button .icon {
    font-size: 1.25rem;
}

.call-label {
    display: none;
}

@media (max-width: 640px) {
    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-button.cta-large {
        width: 100%;
        justify-content: center;
    }
    
    .call-label {
        display: none;
    }
}

@media (min-width: 641px) {
    .call-label {
        display: inline;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, #1e3a8a, #1e40af);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMTRjMy4zMTQgMCA2IDIuNjg2IDYgNnMtMi42ODYgNi02IDYtNi0yLjY4Ni02LTYgMi42ODYtNiA2LTZ6TTI0IDM0YzMuMzE0IDAgNiAyLjY4NiA2IDZzLTIuNjg2IDYtNiA2LTYtMi42ODYtNi02IDIuNjg2LTYgNi02eiIvPjwvZz48L2c+PC9zdmc+");
    opacity: 0.1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background-color: #facc15;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkmark {
    color: #4ade80;
    font-weight: bold;
}

.hero-form-container {
    display: flex;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-form-container {
        display: none;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}

/* Contact Form Styles */
.contact-form-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.contact-form-large {
    max-width: 48rem;
}

.form-title {
    font-size: 1.875rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.25rem;
    z-index: 1;
}

.textarea-icon {
    top: 0.75rem;
    transform: translate(0, 0);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    padding-left: 2.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background-color: white;
}

.contact-form textarea {
    padding-left: 2.75rem;
    resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), inset 0 0 0 2px #2563eb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.submit-button {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

.form-success {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.success-text {
    color: #16a34a;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-success p {
    color: #333;
}

.hidden {
    display: none !important;
}

/* Features Strip */
.features-strip {
    background: white;
    padding: 3rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.875rem;
    color: #666;
}

/* Services Section */
.services-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.services-grid.four-col {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #dbeafe;
    color: #2563eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.services-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.check {
    color: #16a34a;
    font-weight: bold;
    flex-shrink: 0;
}

/* Emergency CTA Banner */
.emergency-banner {
    background-color: #dc2626;
    color: white;
    padding: 3rem 0;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.banner-content h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 1.25rem;
    color: #fecaca;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .banner-content {
        flex-direction: row;
    }
    
    .banner-content > div {
        flex: 1;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #f3f4f6;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-author {
    color: #1f2937;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(to right, #f0f9ff, #eff6ff);
    padding: 5rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose-image {
    display: none;
}

.section-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
}

.why-icon {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.why-item p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-image {
        display: block;
    }
}

/* Contact Section */
.contact-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

/* Service Area Section */
.service-area-section {
    background: linear-gradient(to right, #111827, #1f2937);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.white-title {
    color: white;
}

.white-subtitle {
    color: #d1d5db;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 56rem;
    margin: 3rem auto;
}

.area-box {
    background-color: #374151;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.service-area-text {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-top: 2rem;
}

.service-area-text a {
    color: #60a5fa;
    text-decoration: none;
}

.service-area-text a:hover {
    color: #93c5fd;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

.final-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .final-buttons {
        flex-direction: row;
    }
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    background-color: #2563eb;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* How It Works Section */
.how-it-works-section {
    background-color: white;
    padding: 5rem 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Our Commitment Section */
.commitment-section {
    background-color: white;
    padding: 5rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.commitment-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.commitment-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.commitment-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.commitment-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.commitment-cta {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button.cta-large {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-checks {
        font-size: 0.75rem;
        gap: 1rem;
    }
    
    .final-buttons {
        width: 100%;
    }
    
    .final-buttons .cta-button {
        width: 100%;
    }
}
