/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a365d;
    line-height: 1.6;
    min-height: 100vh;
}

/* Top Header Bar */
.top-header {
    background: linear-gradient(310deg, rgb(30, 41, 59), rgb(15, 23, 42));
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-info a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Main Navigation Header */
.main-header {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-logo {
    height: 60px;
}

.header-logo img {
    height: 100%;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #FFBA44;
}

.dropdown {
    position: relative;
}

.dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.6;
}

.get-quote-btn {
    background: linear-gradient(135deg, rgb(251, 191, 36), rgb(245, 158, 11));
    color: #0f172a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(167, 243, 208, 0.4);
    background: #0f172a;
    color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
    text-align: center;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.2));
}

.company-name {
    display: none;
    /* Hide since the logo already contains the company name */
}

.page-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.03em;
    margin-bottom: 5px;
}

/* Form Grid Layout - Modified for two rows */
.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFBA44;
}

.card-header i {
    font-size: 20px;
    color: #FFBA44;
    background: rgba(252, 237, 210, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a365d;
    font-family: Poppins;
}

/* Monthly Grid */
.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.month-input label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: Poppins;
}

/* Input Styles */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 60px 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #FFBA44;
    box-shadow: 0 0 0 3px rgba(252, 237, 210, 0.1);
}

.input-suffix {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #718096;
    background: #f7fafc;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
}

/* Input Rows */
.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Calculated Fields */
.calculated-field {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #FFBA44;
    margin-bottom: 15px;
}

.calculated-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calculated-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a365d;
}

.calculated-value.highlight {
    font-size: 20px;
    color: #FFBA44;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.calculated-value.savings {
    color: #FFBA44;
}

.calculated-value.benefit {
    color: #2563eb;
}

/* Info Tooltip */
.info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: help;
}

.info-tooltip i {
    color: #718096;
    font-size: 14px;
}

.tooltip-text {
    visibility: hidden;
    width: 250px;
    background-color: #1a365d;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Offset Calculator */
.offset-calculator {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.offset-selector {
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.offset-selector label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.offset-selector select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    min-width: 200px;
}

.custom-offset-input {
    display: none;
}

.custom-offset-input.show {
    display: block;
}

.custom-offset-input input {
    padding: 12px 45px 12px 15px;
}

/* Results Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.results-table thead {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
}

.results-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.results-table tbody tr:hover {
    background: rgba(22, 255, 5, 0.05);
}

.selected-row {
    background: rgba(252, 237, 210, 0.1) !important;
    border-left: 4px solid #FFBA44;
}

.percentage-cell {
    font-weight: 700;
    color: #1a365d;
}

.savings-cell {
    font-weight: 700;
    color: #FFBA44;
}

.benefit-cell {
    font-weight: 700;
    color: #2563eb;
}

/* Form Actions */
.form-actions {
    text-align: center;
    margin: 30px 0;
}

.calculate-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    background: #b91c1c;
}

.calculate-btn i {
    margin-right: 10px;
}

/* Email Feedback Styles */
.email-feedback {
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.email-feedback.show {
    display: block;
}

.email-feedback.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #ffba44;
    color: #064e3b;
}

.email-feedback.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    color: #7f1d1d;
}

/* Email Section Styles */
.email-section {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 15px;
    border: 2px solid #0ea5e9;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.email-section.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-input-row {
    display: flex;
    gap: 15px;
    align-items: end;
    margin-bottom: 15px;
}

.email-input-group {
    flex: 1;
}

.email-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}

.email-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #bfdbfe;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.email-input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mail-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
}

.mail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    background: #ffba44;
}

.send-btn {
    background: #ffba44;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 186, 68, 0.3);
    white-space: nowrap;
}

.send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 186, 68, 0.4);
    background: #059669;
}

.send-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.email-note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    margin-top: 10px;
}

.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Help Section */
.help-section {
    margin-top: 40px;
}

.help-card {
    background: linear-gradient(135deg, #fffee6 0%, #f5e9b2 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #FFBA44;
}

.help-card h4 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-card h4 i {
    color: #FFBA44;
}

.help-card ul {
    list-style: none;
    padding-left: 0;
}

.help-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #2d3748;
}

.help-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFBA44;
    font-weight: bold;
}

/* Footer Styles */
.main-footer {
    background: #0C1F44;
    color: white;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #FFBA44;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: #FFBA44;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px;
    text-align: center;
    color: #9ca3af;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    color: #d1d5db;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FFBA44;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .offset-selector {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .top-header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .monthly-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .page-header {
        padding: 25px 20px;
    }

    .logo-section {
        flex-direction: column;
        gap: 15px;
    }

    .page-title {
        font-size: 24px;
    }

    .results-table {
        font-size: 11px;
    }

    .results-table th,
    .results-table td {
        padding: 8px 4px;
    }

    .offset-selector {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .email-input-row {
        flex-direction: column;
        gap: 15px;
    }

    .send-btn {
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .monthly-grid {
        grid-template-columns: 1fr;
    }

    .results-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Print Styles */
@media print {

    .top-header,
    .main-header,
    .main-footer {
        display: none;
    }

    body {
        background: white;
    }

    .card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    .calculate-btn {
        display: none;
    }
}

/* ILSFA Custom Styles */
:root {
    --ilsfa-primary-color: #0C1F44;
    --ilsfa-secondary-color: #1e293b;
    --ilsfa-accent-color: #FFBA44;
    --ilsfa-text-light: #f8fafc;
    --ilsfa-text-gray: #64748b;
    --ilsfa-gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --ilsfa-gradient-secondary: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --ilsfa-gradient-accent: linear-gradient(135deg, #FFBA44 0%, #fab132 100%);
}

.container-full {
    width: 100%;
    padding: 0 20px;
}

/* Hero Section */
.ilsfa-hero-section {
    background: var(--ilsfa-gradient-primary);
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ilsfa-hero-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 1200 600"><defs><pattern id="solar" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23334155" opacity="0.1"/><circle cx="50" cy="50" r="20" fill="%23fbbf24" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="url(%23solar)"/></svg>') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.ilsfa-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
}

.ilsfa-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ilsfa-hero-logo {
    margin-bottom: 15px;
}

.ilsfa-sun-icon {
    display: inline-block;
    animation: ilsfa-rotate 20s linear infinite;
}

@keyframes ilsfa-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ilsfa-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ilsfa-hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--ilsfa-text-light);
}

.ilsfa-hero-description {
    font-size: 1.1rem;
    color: var(--ilsfa-text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Eligibility Section */
.ilsfa-eligibility-section {
    padding: 40px 0;
    background: #f8fafc;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.ilsfa-eligibility-section-note {
    padding: 40px 0;
    color: #fbbf24;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.ilsfa-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--ilsfa-primary-color);
}

.ilsfa-section-description {
    font-size: 1.1rem;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--ilsfa-text-gray);
    line-height: 1.8;
}

.ilsfa-eligibility-form {
    background: var(--ilsfa-gradient-primary);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.4);
}

.ilsfa-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 15px;
}

.ilsfa-form-group {
    margin-bottom: 25px;
}

.ilsfa-form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.ilsfa-form-group input,
.ilsfa-form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--ilsfa-text-light);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.ilsfa-form-group select option {
    background: var(--ilsfa-primary-color);
    color: var(--ilsfa-text-light);
}

.ilsfa-form-group input::placeholder {
    color: rgba(248, 250, 252, 0.6);
}

.ilsfa-form-group input:focus,
.ilsfa-form-group select:focus {
    outline: none;
    border-color: var(--ilsfa-accent-color);
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.ilsfa-check-qualification-btn {
    width: 100%;
    padding: 15px 40px;
    background: var(--ilsfa-gradient-accent);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(255, 186, 68, 0.3);
}

.ilsfa-check-qualification-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 186, 68, 0.4);
}

/* Qualification Results Section */
.ilsfa-qualification-results {
    margin-top: 50px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border-left: 6px solid var(--ilsfa-accent-color);
    text-align: center;
}

.ilsfa-qualification-results h3 {
    font-size: 2.0rem;
    margin-bottom: 40px;
    color: #FFBA44;
}

.ilsfa-qualification-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.ilsfa-qualification-option {
    text-align: center;
}

.ilsfa-qualification-btn {
    width: 100%;
    padding: 15px 40px;
    background: var(--ilsfa-gradient-accent);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(255, 186, 68, 0.3);
}

.ilsfa-qualification-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 186, 68, 0.4);
}

.ilsfa-qualification-btn.ilsfa-secondary {
    background: var(--ilsfa-gradient-secondary);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
    border: 1px solid #fbbf24;
    color: #ffffff;
}

.ilsfa-qualification-btn.ilsfa-secondary:hover {
    box-shadow: 0 15px 35px rgba(30, 41, 59, 0.4);
}

.ilsfa-qualification-subtext {
    font-size: 1.1rem;
    color: rgba(248, 250, 252, 0.9);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.ilsfa-not-eligible-message {
    margin-top: 40px;
    padding: 40px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 15px;
    border-left: 6px solid #ef4444;
    text-align: center;
}

.ilsfa-not-eligible-message h3 {
    color: #ef4444;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.ilsfa-not-eligible-message p {
    color: var(--ilsfa-text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.ilsfa-other-programs-btn {
    padding: 18px 35px;
    background: var(--ilsfa-gradient-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ilsfa-other-programs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 186, 68, 0.3);
}

/* Contact Form Section */
.ilsfa-contact-form-section {
    padding: 40px 0;
    background: #f1f5f9;
    display: none;
}

.ilsfa-contact-form {
    background: var(--ilsfa-gradient-primary);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.4);
}

.ilsfa-contact-form h3 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--ilsfa-text-light);
    text-align: center;
}

.ilsfa-submit-btn {
    width: 100%;
    padding: 20px 40px;
    background: var(--ilsfa-gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(255, 186, 68, 0.3);
}

.ilsfa-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 186, 68, 0.4);
}

.ilsfa-contact-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.ilsfa-contact-info a {
    color: var(--ilsfa-accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Reach Out Modal */
.ilsfa-reach-out-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.ilsfa-reach-out-modal.show {
    display: flex;
    animation: ilsfa-fadeIn 0.3s ease-in;
}

.ilsfa-modal-content {
    background: var(--ilsfa-gradient-primary);
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.6);
    animation: ilsfa-slideIn 0.3s ease-out;
}

@keyframes ilsfa-slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ilsfa-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--ilsfa-text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ilsfa-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.ilsfa-modal-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--ilsfa-text-light);
    text-align: center;
}

.ilsfa-modal-subtitle {
    font-size: 1.1rem;
    color: var(--ilsfa-text-gray);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ilsfa-reach-out-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: var(--ilsfa-gradient-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(255, 186, 68, 0.3);
}

.ilsfa-reach-out-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 186, 68, 0.4);
}

.ilsfa-company-contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.ilsfa-company-contact-info h4 {
    color: var(--ilsfa-text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.ilsfa-contact-details {
    display: grid;
    gap: 15px;
}

.ilsfa-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ilsfa-text-light);
    font-size: 1rem;
}

.ilsfa-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--ilsfa-accent-color);
}

.ilsfa-contact-item a {
    color: var(--ilsfa-accent-color);
    text-decoration: none;
    font-weight: 600;
}

.ilsfa-contact-item a:hover {
    text-decoration: underline;
}

/* Benefits Section */
.ilsfa-benefits-section {
    padding: 80px 0;
    background: var(--ilsfa-gradient-primary);
}

.ilsfa-benefits-section .ilsfa-section-title {
    color: var(--ilsfa-text-light);
    margin-bottom: 60px;
}

.ilsfa-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.ilsfa-benefit-card {
    background: var(--ilsfa-gradient-accent);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ilsfa-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.ilsfa-benefit-card:hover::before {
    left: 100%;
}

.ilsfa-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 186, 68, 0.3);
}

.ilsfa-benefit-icon {
    margin-bottom: 20px;
    color: white;
}

.ilsfa-benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    text-align: center;
}

/* Calculator Section */
.ilsfa-calculator-section {
    padding: 80px 0;
    background: #f8fafc;
    color: var(--ilsfa-primary-color);
}

.ilsfa-calculator-section .ilsfa-section-title {
    color: var(--ilsfa-primary-color);
}

.ilsfa-calculator-content {
    background: var(--ilsfa-gradient-primary);
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    text-align: center;
}

.ilsfa-calculator-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--ilsfa-text-light);
}

.ilsfa-calculator-info {
    font-size: 1.1rem;
    color: var(--ilsfa-text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.ilsfa-calculator-btn {
    padding: 15px 40px;
    background: var(--ilsfa-gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ilsfa-calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 186, 68, 0.3);
}

/* Success Message */
.ilsfa-success-message {
    background: var(--ilsfa-gradient-accent);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
    display: none;
    font-size: 1.1rem;
}

/* Animation Classes */
.ilsfa-fade-in {
    animation: ilsfa-fadeIn 0.5s ease-in;
}

@keyframes ilsfa-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation Styles */
.ilsfa-form-group input:invalid {
    border-color: #ef4444;
}

.ilsfa-form-group input:valid {
    border-color: var(--ilsfa-accent-color);
}

/* Loading States */
.ilsfa-loading {
    opacity: 0.7;
    pointer-events: none;
}

.ilsfa-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--ilsfa-accent-color);
    border-radius: 50%;
    animation: ilsfa-spin 1s linear infinite;
}

@keyframes ilsfa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ilsfa-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {

    .ilsfa-eligibility-form,
    .ilsfa-contact-form {
        padding: 40px;
    }

    .ilsfa-form-row {
        gap: 30px;
    }

    .ilsfa-qualification-buttons {
        gap: 30px;
    }

    .ilsfa-modal-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .ilsfa-hero-title {
        font-size: 2.5rem;
    }

    .ilsfa-hero-subtitle {
        font-size: 1.4rem;
    }

    .ilsfa-section-title {
        font-size: 2rem;
    }

    .ilsfa-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ilsfa-qualification-buttons {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ilsfa-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ilsfa-eligibility-form,
    .ilsfa-contact-form {
        padding: 30px;
    }

    .container-full {
        padding: 0 15px;
    }

    .ilsfa-modal-content {
        padding: 30px;
        width: 95%;
    }

    .ilsfa-modal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ilsfa-hero-title {
        font-size: 2rem;
    }

    .ilsfa-hero-subtitle {
        font-size: 1.2rem;
    }

    .ilsfa-eligibility-form,
    .ilsfa-contact-form {
        padding: 20px;
    }

    .ilsfa-qualification-results {
        padding: 30px;
    }

    .ilsfa-modal-content {
        padding: 25px;
    }
}

/* Home Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/placeholder.svg?height=800&width=1200&text=Modern+House+with+Solar+Panels') center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #7CB342;
    color: white;
    border-color: #7CB342;
}

.btn-primary:hover {
    background: #689F38;
    border-color: #689F38;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Providers Section */
.providers-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.providers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.providers-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.providers-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.providers-text {
    margin: 2rem 0;
}

.providers-features {
    list-style: none;
    margin: 2rem 0;
}

.providers-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.providers-features i {
    color: #7CB342;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.providers-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    background: #7CB342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.guarantee-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Solar Solutions Section */
.solar-solutions-section {
    padding: 100px 0;
    background: #f0f0f0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header h2 span {
    color: #7CB342;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card.featured {
    background: #7CB342;
    color: white;
    transform: scale(1.05);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.solution-card ul {
    list-style: none;
    text-align: left;
}

.solution-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.solution-card i {
    margin-right: 0.8rem;
    color: #7CB342;
    font-size: 0.8rem;
}

.solution-card.featured i {
    color: white;
}

/* Creating Section */
.creating-section {
    padding: 100px 0;
    background: white;
}

.creating-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.creating-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.creating-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #7CB342;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.feature-item h3 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Nationwide Section */
.nationwide-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.nationwide-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.nationwide-content {
    position: relative;
}

.locations-badge {
    position: absolute;
    top: 20px;
    left: 50px;
    background: #7CB342;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    z-index: 2;
}

.locations-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.locations-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.us-map {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.2);
}

/* Feedback Section */
.feedback-section {
    padding: 100px 0;
    background: white;
}

.feedback-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feedback-section>p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.featured {
    background: #7CB342;
    color: white;
}

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #7CB342;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-section>p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: #7CB342;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .providers-grid,
    .creating-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2,
    .providers-content h2,
    .creating-content h2,
    .nationwide-section h2,
    .feedback-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .guarantee-item,
    .testimonial-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}