/* Hero Section */
.hero-solar {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../assets/images/solar.jpg);
    background-size: cover;
    background-position: center;
    padding: 420px 0;
    text-align: center;
    color: white;
}

.hero-solar .hero-title {
    font-size: clamp(28px, 4vw, 48px);
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-solar .hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--sub);
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--muted);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.benefit-card .h3 {
    color: var(--sand);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--sub);
    line-height: 1.6;
    margin: 0;
}

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

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow);
}

.gallery-card .img-box {
    height: 550px;
    background-size: cover;
    background-position: center;
}

.gallery-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px 20px 20px;
    color: white;
}

.gallery-card .h3 {
    margin: 0 0 5px;
}

/* Call to Action Section */
.cta-section {
    background: var(--bg2);
    padding: 60px 0;
    border-top: 1px solid var(--line);
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    color: var(--sub);
    margin-bottom: 10px;
}

.contact-info .phone-number {
    color: var(--sand);
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
    border: 1px dashed var(--sand);
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-info .phone-number:hover {
    background: var(--sand);
    color: var(--bg);
}
