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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 50;
}

.top-bar {
    background: #1e40af;
    color: white;
    padding: 0.5rem 0;
}

.phone-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.phone-text {
    font-weight: 600;
}

.main-header {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.cta-button {
    background: #f59e0b;
    color: #000;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cta-button:hover {
    background: #d97706;
    transform: scale(1.05);
}

.button-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #1f2937;
}

.mobile-nav {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

.mobile-cta-button {
    background: #f59e0b;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-button:hover {
    background: #d97706;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-icon svg {
    width: 4rem;
    height: 4rem;
    color: #f59e0b;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: #f59e0b;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    line-height: 1.5;
}

.hero-description strong {
    color: white;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.primary-cta-button {
    background: #f59e0b;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.primary-cta-button:hover {
    background: #d97706;
    transform: scale(1.05);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: white;
    color: #1e40af;
}

.offer-banner {
    background: #f59e0b;
    color: #000;
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.offer-banner h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.offer-banner p {
    font-size: 1.125rem;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-decoration-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: #f59e0b;
}

.hero-decoration-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: white;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.feature-icon {
    background: #dbeafe;
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    line-height: 1.5;
}

.features-cta {
    text-align: center;
    margin-top: 4rem;
}

.features-cta-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.features-cta-button:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    position: relative;
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
}

.testimonial-text {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.author-location {
    color: #6b7280;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
}

.testimonials-cta-content {
    background: #2563eb;
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    display: inline-block;
}

.testimonials-cta-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.testimonials-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.testimonials-cta-button {
    background: #f59e0b;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-cta-button:hover {
    background: #d97706;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #eff6ff;
}

.contact-container {
    max-width: 72rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-method-primary {
    background: #fef3c7;
}

.contact-method-email {
    background: #eff6ff;
}

.contact-icon {
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-phone {
    background: #f59e0b;
}

.contact-icon-email {
    background: #2563eb;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details h4 {
    font-weight: 600;
    color: #1f2937;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.email-address {
    color: #2563eb;
}

.contact-note {
    color: #6b7280;
}

.special-offer {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.special-offer h4 {
    font-weight: bold;
    color: #166534;
    margin-bottom: 0.5rem;
}

.special-offer p {
    color: #15803d;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-form-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: none;
}

.form-submit-button {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-submit-button:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.form-footer {
    text-align: center;
    color: #6b7280;
    margin-top: 1rem;
}

.phone-highlight {
    font-weight: bold;
    color: #2563eb;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #f59e0b;
    margin-right: 0.5rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-phone {
    display: flex;
    align-items: center;
    color: #f59e0b;
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-phone-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    text-align: center;
    color: #d1d5db;
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.exit-popup-content {
    background: white;
    border-radius: 1rem;
    max-width: 28rem;
    width: 100%;
    padding: 2rem;
    position: relative;
    animation: pulse 2s infinite;
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
}

.exit-popup-close:hover {
    color: #374151;
}

.exit-popup-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.exit-popup-body {
    text-align: center;
}

.exit-popup-icon {
    width: 4rem;
    height: 4rem;
    color: #f59e0b;
    margin: 0 auto 1rem;
}

.exit-popup-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.exit-popup-offer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.exit-popup-text {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.exit-popup-urgency {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.exit-popup-urgency p {
    color: #dc2626;
    font-weight: 600;
}

.exit-popup-cta {
    width: 100%;
    background: #f59e0b;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.exit-popup-cta:hover {
    background: #d97706;
    transform: scale(1.05);
}

.exit-popup-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .8;
    }
}