/* Cache-busted version 2.0 - Fixed layout and branding */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 0 40px 0;
    text-align: center;
    display: block !important;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
    display: block !important;
}

.hero-text {
    display: block !important;
    width: 100% !important;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    color: rgba(255,255,255,0.8);
}

.trust-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

/* Compact Form Section */
.compact-form-section {
    max-width: 500px;
    margin: 0 auto;
    display: block !important;
    clear: both !important;
    float: none !important;
}

/* Hero Form */
.hero-form {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #333;
}

.hero-form h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
}

/* Jotform Wrapper */
.jotform-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.jotform-wrapper iframe {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
    background: transparent !important;
    border-radius: 10px !important;
}

/* Prevent duplicate iframes */
.jotform-wrapper iframe:nth-child(n+2) {
    display: none !important;
}

/* CTA Button */
.cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.cta-btn:active {
    transform: translateY(0);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1e3a8a;
}

/* Guarantees Section */
.guarantees {
    padding: 80px 0;
    background: #f8fafc;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guarantee-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.guarantee-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e3a8a;
    font-weight: 600;
}

.guarantee-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3.5rem;
    color: #3182ce;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e3a8a;
    font-weight: 600;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #3182ce;
    margin-right: 25px;
    min-width: 60px;
    text-align: center;
}

.service-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1e3a8a;
    font-weight: 600;
}

.service-text p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
}

/* Second CTA Section */
.second-cta {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    text-align: center;
}

.second-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.second-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: #333;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-form h3 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

/* Urgency Badge */
.urgency-badge {
    background: #fbbf24;
    color: #92400e;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f3f4f6;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Fallback Form Styles */
.fallback-form {
    display: none;
}

.fallback-form .form-group {
    margin-bottom: 15px;
}

.fallback-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.fallback-form input,
.fallback-form select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.fallback-form input:focus,
.fallback-form select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.fallback-form input::placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
}

.cta-form .cta-btn {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1rem;
}

/* Override any grid layouts */
.hero * {
    display: block !important;
    float: none !important;
}

.hero-content {
    display: block !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        margin-bottom: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .second-cta h2 {
        font-size: 2.2rem;
    }

    .trust-indicators {
        justify-content: center;
        gap: 30px;
    }

    .compact-form-section {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-form {
        padding: 25px 20px;
    }

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

    .jotform-wrapper iframe {
        height: 500px !important;
    }

    .guarantees-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .guarantee-card,
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0 30px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .second-cta h2 {
        font-size: 1.8rem;
    }

    .compact-form-section {
        padding: 0 10px;
    }

    .jotform-wrapper iframe {
        height: 600px !important;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}