.lead-hero {
    padding: 150px 20px 100px;
    text-align: center;
    background: linear-gradient(rgba(23, 20, 36, 0.85), rgba(23, 20, 36, 0.45)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=70');
    /* background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=70'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.lead-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.lead-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #eb595f;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(235, 89, 95, 0.4);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button:hover {
    background-color: #d63d44;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 89, 95, 0.6);
}

.section {
    padding: 100px 20px;
    position: relative;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #171424;
    color: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    display: block;
    width: 100%;
}

.bg-dark .section-title {
    color: white;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #eb595f;
    margin: 15px auto 0;
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #eb595f;
}

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

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 3rem;
    color: #eb595f;
    margin-bottom: 20px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-study-content {
    padding: 20px;
}

.case-study-stat {
    font-size: 1.5rem;
    color: #eb595f;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-question {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
}

/* Lead Types Grid */
.lead-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.lead-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border-top: 5px solid transparent;
}

.lead-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-top-color: #eb595f;
}

.lead-card-header {
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.lead-card-header h3 {
    font-size: 1.8rem;
    color: #171424;
    margin-bottom: 10px;
}

.lead-card-icon {
    font-size: 3rem;
    color: #eb595f;
    margin-bottom: 15px;
}

.lead-card-body {
    padding: 30px;
}

.lead-card-body ul {
    list-style: none;
    padding: 0;
}

.lead-card-body li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.lead-card-body li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #eb595f;
    position: absolute;
    left: 0;
    top: 2px;
}

.lead-card-footer {
    padding: 20px 30px 30px;
    text-align: center;
    background: white;
}

.card-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #eef0f2;
    color: #666;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Section */
.contact-form-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Enhancements */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

.hero-title {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: #eb595f;
    color: white;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background-color: white;
    color: #eb595f;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.industry-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-img {
    transform: scale(1.1);
}

.industry-content {
    padding: 25px;
    position: relative;
    background: white;
    text-align: center;
}

.industry-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #eb595f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(235, 89, 95, 0.4);
}

.industry-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #171424;
}

.industry-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -40px auto 50px;
    color: #666;
    font-size: 1.2rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #171424 0%, #2a2442 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../source/test.webp');
    opacity: 0.1;
    background-size: cover;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.big-btn {
    font-size: 1.3rem;
    padding: 20px 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #eb595f;
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .lead-hero h1 {
        font-size: 2.5rem;
    }
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 3rem;
    color: #eb595f;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    color: #555;
}

/* Lead Offer Section */
.bg-white {
    background-color: white;
}

.lead-offer-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.lead-offer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.circle-image-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 15px solid #f0f0f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}

.circle-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.circle-image-container:hover .circle-image {
    transform: scale(1.1);
}

.lead-offer-content {
    flex: 1;
    text-align: left;
}

.section-title-left {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #171424;
    font-weight: 800;
}

.lead-offer-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-proof {
    margin-bottom: 30px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    margin-right: -15px;
    object-fit: cover;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.avatar-more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eb595f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid white;
    margin-left: -15px; /* Overlap the last image */
    z-index: 2;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.lead-list-container {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.lead-list-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.lead-list-col {
    flex: 1;
    min-width: 300px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    background: #eb595f;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .lead-offer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .lead-offer-content {
        text-align: center;
    }

    .circle-image-container {
        width: 300px;
        height: 300px;
    }

    .avatars {
        justify-content: center;
    }
    
    .lead-list-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 2rem;
    color: #eb595f;
    margin-bottom: 20px;
    opacity: 0.3;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: #888;
    display: block;
}