.solargeneratorcity-land-main-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.solargeneratorcity-land-main-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2) saturate(1.3);
}

.solargeneratorcity-land-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    z-index: 10;
    max-width: 900px;
}

.solargeneratorcity-land-text-overlay h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(32px, 6vw, 72px);
    color: #00ffe7;
    text-shadow: 0 0 10px #00ffe7, 0 0 20px #ff00cc;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solargeneratorcity-land-text-overlay p {
    font-size: clamp(16px, 2.5vw, 24px);
    color: #ffffffcc;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.4);
}

.solargeneratorcity-land-start-btn {
    display: inline-block;
    border: 2px solid #00ffe7;
    padding: 12px 28px;
    border-radius: 50px;
    background: transparent;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px #00ffe7, 0 0 20px #ff00cc inset;
    transition: 0.3s ease;
}

.solargeneratorcity-land-banner-link p {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin: 0;
    letter-spacing: 1px;
}

.solargeneratorcity-land-start-btn:hover {
    background: rgba(0, 255, 231, 0.1);
    box-shadow: 0 0 25px #00ffe7, 0 0 40px #ff00cc;
}

.solargeneratorcity-land-section-title {
    text-align: center;
    margin: 20px auto ;
    position: relative;
    padding: 20px;
}



.solargeneratorcity-land-section-title hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffe7, #ff00cc, transparent);
    margin: 0 auto;
    width: 80%;
    box-shadow: 0 0 10px #00ffe7;
    animation: neon-glow 4s ease-in-out infinite;
}

@keyframes neon-glow {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px #00ffe7) drop-shadow(0 0 10px #ff00cc);
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px #00ffe7) drop-shadow(0 0 25px #ff00cc);
    }
}
.solargeneratorcity-steps {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0e1a2b 0%, #0b0f1a 100%);
    color: #e0f7fa;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.03);
}

.solargeneratorcity-about__container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.solargeneratorcity-about__title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffe7;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solargeneratorcity-about__description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b2ebf2;
    max-width: 700px;
    margin: 0 auto;
}

.solargeneratorcity-steps__container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.solargeneratorcity-steps__title {
    font-size: 1.7rem;
    color: #00f7ff;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.solargeneratorcity-steps__list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solargeneratorcity-steps__item {
    position: relative;
    padding-left: 3rem;
    font-size: 1rem;
    color: #e0f7fa;
    line-height: 1.6;
    background: rgba(0, 255, 255, 0.05);
    border-left: 2px solid #00ffe7;
    border-radius: 8px;
    padding: 1rem 1rem 1rem 3rem;
    transition: background 0.3s ease;
}

.solargeneratorcity-steps__item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: #00ffe7;
    color: #000;
    font-weight: bold;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    line-height: 1.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}
.solargeneratorcity-benefits {
    background: linear-gradient(135deg, #040b1a, #091d33);
    padding: 4rem 2rem;
    color: #e0f7fa;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
    box-shadow: inset 0 0 40px rgba(0, 255, 255, 0.03);
}

.solargeneratorcity-benefits__container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.solargeneratorcity-benefits__title {
    font-size: 2rem;
    color: #00ffe7;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.solargeneratorcity-benefits__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.solargeneratorcity-benefits__item {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.03);
}

.solargeneratorcity-benefits__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.25);
}

.solargeneratorcity-benefits__icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #00ffe7;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.solargeneratorcity-benefits__text {
    font-size: 1rem;
    color: #c0f4ff;
    line-height: 1.5;
}
.solargeneratorcity-land-info-section {
    background: linear-gradient(135deg, #051829, #000c1a);
    padding: 60px 20px;
    color: #d6faff;
    box-shadow: inset 0 0 60px rgba(0, 255, 255, 0.03);
}

.solargeneratorcity-land-text-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.solargeneratorcity-land-text-block {
    display: flex;
    flex-direction: column;
    gap: 3rem;

    @media (min-width: 992px) {
        flex-direction: row;
        justify-content: space-between;
        gap: 5rem;
    }
}

.solargeneratorcity-land-text-container {
    flex: 1;
    background-color: rgba(0, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.03);
}

.solargeneratorcity-land-text-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00ffe7;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
    text-transform: uppercase;
}

.solargeneratorcity-land-text_about_services p,
.solargeneratorcity-land-text-container p {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.6;
    color: #d0f8ff;
}

.solargeneratorcity-separator {
    display: none;
}
.solargeneratorcity-faq-container {
    padding: 80px 20px;
    background: linear-gradient(145deg, #01030a, #0a0c17);
    color: #e0f7ff;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.solargeneratorcity-land-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.solargeneratorcity-land-section-title h2 {
 font-size: clamp(28px, 5vw, 48px);
    color: #00ffe7;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
    letter-spacing: 1px;
}

.solargeneratorcity-land-section-title hr {
    width: 80px;
    height: 2px;
    margin: 10px auto;
    border: none;
    background: linear-gradient(90deg, transparent, #00ffe7, transparent);
    box-shadow: 0 0 6px #00ffe7;
}

.solargeneratorcity-faq-item {
    background: rgba(0, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
    margin: 20px auto;
    max-width: 900px;
    padding: 20px 30px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.solargeneratorcity-faq-item:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.06);
}

.solargeneratorcity-faq-item h3 {
    font-size: 1.2rem;
    color: #00d4ff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.solargeneratorcity-faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #e3faff;
    text-shadow: 0 0 2px rgba(0, 255, 255, 0.1);
}
