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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(16, 58, 59, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    max-width: 100%;
    filter: brightness(0) invert(1);
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f2ebe1 0%, #ffffff 100%);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a202c;
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    color: #3182ce;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 500;
    color: #4a5568;
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    padding: 2rem;
}

.apply-now-btn {
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(16, 58, 59, 0.3);
}

.apply-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 58, 59, 0.4);
}

.cta-subtext {
    font-size: 1.1rem;
    color: #103a3b;
    font-weight: 500;
}



/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(242,235,225,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.how-it-works .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.how-it-works .section-title em {
    color: #f2ebe1;
    font-style: normal;
    background: linear-gradient(135deg, #f2ebe1 0%, #59b7c9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #f2ebe1;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-images-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 100px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}



/* Responsive adjustments for hero images */
@media (max-width: 768px) {
    .hero-images-container {
        gap: 30px;
        position: static;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(242, 235, 225, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(16, 58, 59, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
}

.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(2) {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) {
    animation-delay: 0.3s;
}

.step-item:nth-child(4) {
    animation-delay: 0.4s;
}

.step-item:hover {
    background: rgba(242, 235, 225, 0.95);
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #59b7c9 0%, #f2ebe1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #103a3b;
    box-shadow: 0 10px 20px rgba(89, 183, 201, 0.3);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(89, 183, 201, 0.4);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #103a3b;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #103a3b;
    margin: 0;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Testimonials Section */
.testimonials {
    background: #f7fafc;
    padding: 5rem 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3182ce 0%, #63b3ed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.verified {
    color: #103a3b;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.review-meta {
    color: #718096;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.stars {
    color: #f6ad55;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #103a3b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #59b7c9;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background: #103a3b;
}

/* Urgency Section */
.urgency {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.urgency-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgency-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-primary:hover {
    background: white;
    color: #e53e3e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-subtext {
    font-size: 1rem;
    opacity: 0.9;
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, #f2ebe1 0%, #ffffff 100%);
    color: #103a3b;
    padding: 5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(16,58,59,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.calculator-title {
    font-size: 3rem;
    font-weight: 700;
    color: #103a3b;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(16, 58, 59, 0.1);
}

.title-icon {
    display: inline-block;
    animation: pulse 2s infinite;
}

.calculator-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 500;
}

.calculator-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.calculator-input-section {
    animation: fadeInLeft 0.8s ease-out;
}

.input-card {
    background: rgba(242, 235, 225, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(16, 58, 59, 0.1);
    border: 1px solid rgba(242, 235, 225, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(16, 58, 59, 0.15);
}

.input-card h3 {
    color: #103a3b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #103a3b;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus {
    outline: none;
    border-color: #59b7c9;
    box-shadow: 0 0 0 3px rgba(89, 183, 201, 0.1);
    transform: translateY(-2px);
}

.calculate-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #59b7c9 0%, #103a3b 100%);
    color: #f2ebe1;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(89, 183, 201, 0.3);
}

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

.btn-icon {
    font-size: 1.2rem;
}

.calculator-results-section {
    animation: fadeInRight 0.8s ease-out;
}

.results-card {
    background: rgba(242, 235, 225, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(16, 58, 59, 0.1);
    border: 1px solid rgba(242, 235, 225, 0.2);
}

.results-card h3 {
    color: #103a3b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #59b7c9 0%, #103a3b 100%);
    border-radius: 12px;
    color: #f2ebe1;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

.chart-container {
    position: relative;
    height: 400px;
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta {
    background: #f7fafc;
    padding: 4rem 0;
    text-align: center;
}

.final-cta-btn {
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 58, 59, 0.3);
}

.final-cta-subtext {
    font-size: 1.1rem;
    color: #718096;
}

/* Footer */
.footer {
    background: #103a3b;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer .logo {
    align-items: center;
    margin-bottom: 2rem;
}

.footer .logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links a {
    color: #59b7c9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f2ebe1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        position: static;
        order: -1;
    }

    .step-item {
        padding: 25px;
        gap: 20px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }



    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

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

    .urgency-title {
        font-size: 2.5rem;
    }

    .summary-stats {
        grid-template-columns: 1fr;
    }

    .input-card,
    .results-card {
        padding: 1.5rem;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Application Questionnaire Overlay */
.application-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 58, 59, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.application-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.application-modal {
    background: #103a3b;
    border-radius: 24px;
    padding: 0;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(89, 183, 201, 0.2);
}

/* Progress Bar */
.progress-container {
    background: rgba(89, 183, 201, 0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(89, 183, 201, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.progress-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(242, 235, 225, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #59b7c9 0%, #f2ebe1 100%);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 16.67%;
    /* Start at step 1 of 6 */
}

.progress-text {
    color: #f2ebe1;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Question Container */
.question-container {
    padding: 40px 30px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.question-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    animation: slideIn 0.4s ease-out;
}

.question-step.active {
    display: flex;
}

.question-title {
    color: #f2ebe1;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 500px;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 500px;
}

.option-btn {
    background: transparent;
    border: 2px solid rgba(242, 235, 225, 0.3);
    border-radius: 16px;
    padding: 20px;
    color: #f2ebe1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    border-color: #59b7c9;
    background: rgba(89, 183, 201, 0.1);
    transform: translateY(-2px);
}

.option-btn.selected {
    background: #f2ebe1;
    color: #103a3b;
    border-color: #f2ebe1;
}

.option-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #59b7c9;
}

.option-letter {
    background: rgba(89, 183, 201, 0.2);
    color: #59b7c9;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.option-btn.selected .option-letter {
    background: #59b7c9;
    color: #f2ebe1;
}

.option-text {
    flex: 1;
    text-align: left;
}

/* Input Container */
.input-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question-input {
    background: rgba(242, 235, 225, 0.1);
    border: 2px solid rgba(242, 235, 225, 0.3);
    border-radius: 12px;
    padding: 18px 20px;
    color: #f2ebe1;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.question-input::placeholder {
    color: rgba(242, 235, 225, 0.6);
}

.question-input:focus {
    outline: none;
    border-color: #59b7c9;
    background: rgba(242, 235, 225, 0.15);
    transform: translateY(-2px);
}

/* Navigation Buttons */
.next-btn,
.submit-btn {
    background: linear-gradient(135deg, #59b7c9 0%, #f2ebe1 100%);
    color: #103a3b;
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 183, 201, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #f2ebe1 0%, #59b7c9 100%);
}

/* Close Button */
.close-btn {
    position: relative;
    background: rgba(242, 235, 225, 0.1);
    border: 1px solid rgba(242, 235, 225, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #f2ebe1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    z-index: 1000;
    /* Ensure no duplicate effects */
    box-shadow: none;
    outline: none;
}

.close-btn i {
    display: block;
    line-height: 1;
    /* Ensure icon is unique */
    position: relative;
    z-index: 1;
    /* Ensure Font Awesome icon is properly displayed */
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.close-btn:hover {
    background: rgba(242, 235, 225, 0.2);
    transform: scale(1.1);
}

/* Solar Process Timeline Section */
.solar-process {
    background: linear-gradient(135deg, #103a3b 0%, #0a2a2b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.solar-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(89,183,201,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #59b7c9 0%, #f2ebe1 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #59b7c9;
    border: 4px solid #103a3b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(89, 183, 201, 0.5);
}

/* Process Steps */
.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-content {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    background: rgba(242, 235, 225, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(89, 183, 201, 0.2);
    position: relative;
}

/* Removed step-content::before pseudo-elements that were creating dots */

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    color: #f2ebe1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(16, 58, 59, 0.3);
}

.step-title {
    color: #103a3b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    color: #103a3b;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Step Visuals */
.step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.visual-card {
    background: rgba(16, 58, 59, 0.8);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(89, 183, 201, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 200px;
}

/* Step 1 Visual: Roof & Sun Analysis */
.roof-icon {
    font-size: 48px;
    color: #f2ebe1;
    margin-bottom: 20px;
}

.sun-analysis {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.sun-ray {
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #59b7c9 0%, #f2ebe1 100%);
    border-radius: 2px;
    animation: sunRays 2s ease-in-out infinite;
}

.sun-ray:nth-child(2) {
    animation-delay: 0.3s;
}

.sun-ray:nth-child(3) {
    animation-delay: 0.6s;
}

/* Step 2 Visual: Qualification & Savings */
.qualification-check {
    font-size: 48px;
    color: #59b7c9;
    margin-bottom: 20px;
}

.savings-preview {
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: end;
}

.savings-bar {
    width: 8px;
    background: linear-gradient(180deg, #f2ebe1 0%, #59b7c9 100%);
    border-radius: 4px;
    animation: savingsBars 2s ease-in-out infinite;
}

.savings-bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.savings-bar:nth-child(2) {
    height: 30px;
    animation-delay: 0.2s;
}

.savings-bar:nth-child(3) {
    height: 40px;
    animation-delay: 0.4s;
}

/* Step 3 Visual: Installation & Progress */
.installation-icon {
    font-size: 48px;
    color: #f2ebe1;
    margin-bottom: 20px;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    background: #59b7c9;
    border-radius: 50%;
    animation: progressDots 1.5s ease-in-out infinite;
}

.progress-dot:nth-child(1) {
    animation-delay: 0s;
}

.progress-dot:nth-child(2) {
    animation-delay: 0.3s;
}

.progress-dot:nth-child(3) {
    animation-delay: 0.6s;
}

/* Call to Action */
.process-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(242, 235, 225, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(89, 183, 201, 0.2);
    backdrop-filter: blur(10px);
}

.start-solar-btn {
    background: linear-gradient(135deg, #f2ebe1 0%, #59b7c9 100%);
    color: #103a3b;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(89, 183, 201, 0.3);
}

.start-solar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(89, 183, 201, 0.4);
}

.cta-subtitle {
    color: #f2ebe1;
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(89, 183, 201, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(89, 183, 201, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(89, 183, 201, 0);
    }
}

@keyframes sunRays {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes savingsBars {

    0%,
    100% {
        opacity: 0.7;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

@keyframes progressDots {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.progress-fill.updating {
    animation: progressPulse 0.6s ease-out;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .process-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .calculator-form,
    .calculator-results {
        padding: 1.5rem;
    }

    /* Mobile Questionnaire */
    .application-modal {
        margin: 10px;
        border-radius: 16px;
    }

    .question-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .option-btn {
        padding: 16px;
        font-size: 15px;
    }

    .question-container {
        padding: 30px 20px;
        min-height: 350px;
    }

    .progress-container {
        padding: 15px 20px;
    }

    /* Mobile Solar Process */
    .solar-process {
        padding: 40px 0;
    }

    .process-timeline {
        padding: 0 10px;
    }

    .timeline-line {
        display: none;
    }

    .process-step {
        flex-direction: column !important;
        margin-bottom: 40px;
        text-align: center;
    }

    .step-content {
        max-width: 100%;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .step-content::before {
        display: none;
    }

    .step-visual {
        padding: 20px;
    }

    .visual-card {
        min-width: 150px;
        padding: 30px 20px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .process-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .start-solar-btn {
        padding: 18px 30px;
        font-size: 16px;
    }
}

/* Say Goodbye to Electric Bills Section */
.goodbye-bills {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px 0;
    margin-top: -20px;
    position: relative;
    overflow: hidden;
}

.goodbye-bills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(16,58,59,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.goodbye-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.goodbye-text {
    text-align: center;
}

.goodbye-title {
    font-size: 3rem;
    font-weight: 700;
    color: #103a3b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.goodbye-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
}

.bill-animation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    overflow: hidden;
    min-height: 100px;
    max-height: 200px;
    padding: 0;
    margin: 0;
    line-height: 1;
    height: auto;
}

.pepco-bill {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pepco-bill lottie-player {
    width: 2400px !important;
    height: 2400px !important;
}

.pepco-bill {
    position: relative;
    max-width: 6000px;
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.6s ease;
}

.pepco-bill:hover {
    transform: perspective(1000px) rotateY(-5deg) scale(1.05);
}

.static-bill-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #103a3b 0%, #59b7c9 100%);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    min-height: 300px;
    width: 100%;
    max-width: 400px;
}

.bill-ripped-effect {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Custom Torn Bill Effect */
.torn-bill-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    gap: 0;
    margin: 0;
    padding: 0;
    line-height: 1;
    min-height: 350px;
    height: auto;
    max-height: 500px;
}

.bill-left,
.bill-right {
    position: relative;
    overflow: hidden;
    width: 50%;
    display: flex;
    justify-content: center;
}

.bill-left {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    transform: translateX(-10px);
    animation: slideLeft 1.5s ease-in-out 0.5s forwards;
}

.bill-right {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(10px);
    animation: slideRight 1.5s ease-in-out 0.5s forwards;
}

.bill-half {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.torn-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed rip-line - keeping clean tear effect */

.torn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #103a3b;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInTornText 1s ease-in-out 2s forwards;
    opacity: 0;
    z-index: 20;
}

/* Removed rip pieces - keeping clean tear effect */

.bill-message {
    margin-top: 40px;
    color: #103a3b;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInMessage 1s ease-in-out 3s forwards;
    opacity: 0;
}

/* Animations */
@keyframes slideLeft {
    to {
        transform: translateX(-30px);
    }
}

@keyframes slideRight {
    to {
        transform: translateX(30px);
    }
}

/* Removed unused rip animations */

@keyframes fadeInMessage {
    to {
        opacity: 1;
    }
}

@keyframes fadeInTornText {
    to {
        opacity: 1;
    }
}

/* CSS to show full bill with minimal spacing */
.goodbye-bills .bill-animation-container {
    min-height: 500px;
    max-height: 800px;
    height: auto;
    padding: 5px 0;
}

.goodbye-bills .torn-bill-container {
    min-height: 450px;
    max-height: 700px;
    height: auto;
    padding: 5px 0;
}

.goodbye-bills .goodbye-content {
    min-height: auto;
    max-height: 800px;
    height: auto;
    gap: 10px;
    padding: 5px 0;
}

.bill-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.bill-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cross-out-line {
    position: absolute;
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    height: 12px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
    opacity: 0;
    transform-origin: left center;
}

.line-1 {
    top: 30%;
    left: 10%;
    width: 0;
    transform: rotate(-45deg);
    animation: drawLine 1.5s ease-in-out 1s forwards;
}

.line-2 {
    top: 70%;
    left: 10%;
    width: 0;
    transform: rotate(45deg);
    animation: drawLine 1.5s ease-in-out 2.5s forwards;
}

.ripped-pieces {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.rip-piece {
    position: absolute;
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    border-radius: 50%;
    opacity: 0;
    animation: ripApart 1.5s ease-in-out 4s forwards;
}

.piece-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    right: -30px;
    animation: ripApart 1.5s ease-in-out 4s forwards;
}

.piece-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: -25px;
    animation: ripApart 1.5s ease-in-out 4.2s forwards;
}

.piece-3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    right: -35px;
    animation: ripApart 1.5s ease-in-out 4.4s forwards;
}

.bill-message {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(229, 62, 62, 0.3);
    opacity: 0;
    animation: slideUp 1s ease-out 5s forwards;
    transform: translateY(30px);
}

.bill-message i {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes drawLine {
    0% {
        opacity: 0;
        width: 0;
    }

    50% {
        opacity: 1;
        width: 0;
    }

    100% {
        opacity: 1;
        width: 80%;
    }
}

@keyframes ripApart {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive design for goodbye bills section */
@media (max-width: 768px) {
    .goodbye-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .goodbye-title {
        font-size: 2.5rem;
    }

    .pepco-bill {
        transform: none;
        max-width: 300px;
    }

    .pepco-bill:hover {
        transform: none;
    }
}