/* Hybrid Solar System Landing Page Styles */
:root {
    --hs-primary: #002366;
    --hs-secondary: #ff7f00;
    --hs-light: #f4f8ff;
    --hs-dark: #1a1a1a;
    --hs-text: #555555;
    --hs-border: #e0e0e0;
}

.hybrid-page-wrapper {
    overflow-x: hidden;
    font-family: 'Inter', 'Roboto', sans-serif;
    color: var(--hs-text);
}

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

.hybrid-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.hybrid-section-header h2 {
    font-size: 2.5rem;
    color: var(--hs-primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.hybrid-section-header.light h2 {
    color: #fff;
}

.hybrid-section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--hs-text);
}

.hybrid-section-header.light p {
    color: #f0f0f0;
}

.hybrid-divider {
    width: 80px;
    height: 4px;
    background: var(--hs-secondary);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.hybrid-divider.light {
    background: #fff;
}

.hybrid-divider.left {
    margin: 0 0 25px 0;
}

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

.hybrid-rounded-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* HERO SECTION */
.hybrid-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #001133 0%, var(--hs-primary) 100%);
    overflow: hidden;
    color: #fff;
}

.hybrid-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/images/rooftop-solar-solutions-in-kerala.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

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

.hybrid-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hybrid-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 127, 0, 0.2);
    border: 1px solid var(--hs-secondary);
    color: var(--hs-secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hybrid-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hybrid-hero-content h1 .highlight {
    color: var(--hs-secondary);
}

.hybrid-hero-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #e0e6ff;
}

.hybrid-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #d1dcff;
}

.hybrid-btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--hs-secondary);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--hs-secondary);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.3);
}

.hybrid-btn-primary:hover {
    background: transparent;
    color: var(--hs-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 127, 0, 0.4);
}

/* INTRO SECTION */
.hybrid-intro-section {
    padding: 80px 0;
    background: #fff;
}

.hybrid-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hybrid-intro-text h3 {
    font-size: 2rem;
    color: var(--hs-primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.hybrid-intro-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* WHAT IS HYBRID */
.hybrid-what-is-section {
    padding: 80px 0;
    background: var(--hs-light);
}

.hybrid-components-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.hybrid-component-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,35,102,0.05);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.hybrid-component-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--hs-secondary);
    box-shadow: 0 10px 30px rgba(0,35,102,0.1);
}

.hybrid-component-card i {
    font-size: 3rem;
    color: var(--hs-primary);
    margin-bottom: 20px;
}

.hybrid-component-card h4 {
    font-size: 1.1rem;
    color: var(--hs-dark);
    font-weight: 700;
    margin: 0;
}

/* HOW IT WORKS TIMELINE */
.hybrid-how-it-works {
    padding: 80px 0;
    background: #fff;
}

.hybrid-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.hybrid-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 4px;
    background: var(--hs-light);
    border-radius: 2px;
}

.hybrid-timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.hybrid-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--hs-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.hybrid-step-content {
    background: var(--hs-light);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hybrid-step-content h3 {
    color: var(--hs-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.hybrid-step-content p {
    margin: 0;
    line-height: 1.6;
}

.hybrid-timeline-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(255, 127, 0, 0.1);
    border-radius: 15px;
    border: 1px dashed var(--hs-secondary);
    color: var(--hs-primary);
    font-weight: 600;
}

/* WHY IDEAL FOR KERALA */
.hybrid-why-ideal {
    padding: 80px 0;
    background: var(--hs-primary);
    color: #fff;
}

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

.hybrid-ideal-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hybrid-ideal-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.hybrid-ideal-icon {
    width: 60px;
    height: 60px;
    background: var(--hs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.hybrid-ideal-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.hybrid-ideal-card p {
    color: #d1dcff;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* KEY BENEFITS LIST */
.hybrid-benefits-list-section {
    padding: 80px 0;
    background: #fff;
}

.hybrid-benefits-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hybrid-benefits-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hybrid-benefits-ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.hybrid-benefits-ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--hs-secondary);
    font-size: 1.2rem;
    background: var(--hs-light);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* BATTERY BACKUP SECTION */
.hybrid-battery-section {
    padding: 80px 0;
    background: var(--hs-light);
}

.hybrid-battery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hybrid-battery-content h2 {
    font-size: 2.2rem;
    color: var(--hs-primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.hybrid-battery-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hybrid-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hybrid-feature-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--hs-dark);
}

.hybrid-feature-list li i {
    color: var(--hs-secondary);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* COMPARISON TABLE */
.hybrid-comparison-section {
    padding: 80px 0;
    background: #fff;
}

.hybrid-table-responsive {
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 15px;
    margin: 40px auto 0;
    max-width: 1000px;
}

.hybrid-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.hybrid-table th {
    background: var(--hs-primary);
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
}

.hybrid-table th:first-child {
    width: 30%;
}

.hybrid-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--hs-border);
    font-size: 1.05rem;
    color: var(--hs-text);
}

.hybrid-table tr:last-child td {
    border-bottom: none;
}

.hybrid-table tr:hover td {
    background: var(--hs-light);
}

.hybrid-table td.positive {
    color: #28a745;
    font-weight: 600;
}

.hybrid-table td.negative {
    color: #dc3545;
    font-weight: 600;
}

/* PRICE & HOMES SECTION */
.hybrid-price-homes-section {
    padding: 80px 0;
    background: var(--hs-light);
}

.hybrid-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.hybrid-price-box, .hybrid-homes-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hybrid-price-box h2, .hybrid-homes-box h2 {
    font-size: 1.8rem;
    color: var(--hs-primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.hybrid-capacity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hybrid-capacity-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: var(--hs-light);
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid var(--hs-secondary);
}

.hybrid-capacity-list li .cap-kw {
    font-weight: 800;
    color: var(--hs-primary);
}

.hybrid-capacity-list li .cap-for {
    font-weight: 600;
    color: var(--hs-text);
}

.hybrid-homes-points p {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.hybrid-homes-points p::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--hs-secondary);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* WHY CHOOSE SOORYA SOLAR */
.hybrid-why-choose-section {
    padding: 80px 0;
    background: #fff;
}

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

.hybrid-advantage-item {
    background: var(--hs-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hybrid-advantage-item:hover {
    border-color: var(--hs-secondary);
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hybrid-advantage-item i {
    font-size: 2.5rem;
    color: var(--hs-secondary);
    margin-bottom: 15px;
}

.hybrid-advantage-item span {
    font-weight: 700;
    color: var(--hs-primary);
    font-size: 1.05rem;
}

/* LOCATIONS & PROJECTS */
.hybrid-locations-projects-section {
    padding: 80px 0;
    background: var(--hs-primary);
    color: #fff;
}

.hybrid-locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hybrid-locations-box h2, .hybrid-projects-box h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.hybrid-location-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.hybrid-location-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.hybrid-location-list li i {
    color: var(--hs-secondary);
    margin-right: 10px;
}

.hybrid-projects-list {
    margin-top: 25px;
}

.hybrid-project-cat {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--hs-secondary);
}

.hybrid-project-cat h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.1rem;
}

.hybrid-project-cat h4 i {
    margin-right: 10px;
    color: var(--hs-secondary);
}

.hybrid-project-cat p {
    margin: 0;
    color: #d1dcff;
    font-size: 0.95rem;
}

/* CTA SECTION */
.hybrid-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--hs-secondary) 0%, #e67300 100%);
    color: #fff;
}

.hybrid-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hybrid-cta-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 15px;
}

.hybrid-btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--hs-secondary);
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hybrid-btn-secondary:hover {
    background: var(--hs-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* FAQ STYLES TWEAK */
.hybrid-faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}
.hybrid-container .accordion {
    background-color: #fff;
    color: var(--hs-primary);
    cursor: pointer;
    padding: 18px 25px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: 0.4s;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hybrid-container .accordion p {
    margin: 0;
}

.hybrid-container .accordion p span {
    color: var(--hs-secondary);
    margin-right: 10px;
    font-weight: 900;
}

.hybrid-container .accordion.active, .hybrid-container .accordion:hover {
    background-color: var(--hs-primary);
    color: #fff;
}

.hybrid-container .accordion.active p span, .hybrid-container .accordion:hover p span {
    color: #fff;
}

.hybrid-container .panel {
    padding: 0 25px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hybrid-container .panel p {
    padding: 20px 0;
    margin: 0;
    color: var(--hs-text);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hybrid-intro-grid,
    .hybrid-battery-grid,
    .hybrid-split-grid,
    .hybrid-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .hybrid-components-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hybrid-hero-content h1 {
        font-size: 2.8rem;
    }
    .hybrid-battery-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hybrid-components-grid {
        grid-template-columns: 1fr;
    }
    
    .hybrid-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hybrid-hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hybrid-timeline::before {
        left: 20px;
    }
    
    .hybrid-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hybrid-timeline-item {
        padding-left: 60px;
    }
    
    .hybrid-table th, .hybrid-table td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
}
