/* ===== RONKAR SOLAR - CUSTOM STYLES ===== */
/* Solar accent: #00AEEF | Primary: #00AEEF */

:root {
    --solar-accent: #00AEEF;
    --solar-primary: #00AEEF;
    --solar-gradient: linear-gradient(135deg, #00AEEF, #00AEEF);
    --solar-gradient-hover: linear-gradient(135deg, #0098d4, #00AEEF);
}

/* ===== GLASSMORPHISM ===== */
.solar-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ===== SOLAR GRADIENT BUTTON ===== */
.btn-solar {
    background: var(--solar-gradient);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.btn-solar:hover {
    background: var(--solar-gradient-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-solar-outline {
    background: transparent;
    color: #00AEEF;
    border: 2px solid #00AEEF;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-solar-outline:hover {
    background: var(--solar-gradient);
    color: #fff;
    border-color: transparent;
}

/* ===== SOLAR HERO ===== */
.solar-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 50%, #1a3a5c 100%);
}
.solar-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../img/solar/catalog-31.png') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}
.solar-hero .container {
    position: relative;
    z-index: 2;
}
.solar-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}
.solar-hero h1 span {
    background: var(--solar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solar-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 550px;
}
.solar-hero-visual {
    position: relative;
}
.solar-hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== SOLAR STATS BAR ===== */
.solar-stats {
    background: #fff;
    padding: 50px 0;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}
.solar-stats-inner {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px 30px;
}
.solar-stat-item {
    text-align: center;
    padding: 15px;
}
.solar-stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--solar-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 24px;
}
.solar-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
}
.solar-stat-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

/* ===== SOLAR ABOUT SECTION ===== */
.solar-about {
    padding: 100px 0;
    background: #F3F4F6;
}
.solar-about .subtitle {
    color: var(--solar-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.solar-about h2 {
        font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.1;
}
.solar-about p {
    color: #6B7280;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== SOLAR SOLUTIONS / SYSTEM CARDS ===== */
.solar-solutions {
    padding: 100px 0;
    background: #fff;
}
.solar-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
    height: 100%;
}
.solar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,174,239,0.12);
}
.solar-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.solar-card-body {
    padding: 25px;
}
.solar-card-body h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.solar-card-body .card-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.solar-card-body .card-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #6B7280;
    font-size: 14px;
    border-bottom: 1px solid #F3F4F6;
}
.solar-card-body .card-specs li:last-child {
    border-bottom: none;
}
.solar-card-body .card-specs li i {
    color: var(--solar-accent);
    width: 20px;
    text-align: center;
}
.solar-card-body .card-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--solar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

/* ===== HOW SOLAR WORKS ===== */
.solar-how-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628, #0d2137);
    color: #fff;
}
.solar-how-works h2 {
    color: #fff;
}
.solar-step {
    text-align: center;
    padding: 30px 20px;
}
.solar-step-icon {
    width: 80px;
    height: 80px;
    background: var(--solar-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    position: relative;
}
.solar-step h5{
    color: white;
}
.solar-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solar-step h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.solar-step p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.solar-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--solar-accent);
    padding-top: 40px;
}

/* ===== SECTION TITLES ===== */
.solar-section-title {
    text-align: center;
    margin-bottom: 60px;
}
.solar-section-title .subtitle {
    color: var(--solar-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.solar-section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
}
.solar-section-title.light h2 {
    color: #fff;
}

/* ===== SOLAR FEATURED PROJECTS ===== */
.solar-projects {
    padding: 100px 0;
    background: #F3F4F6;
}
.solar-project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.solar-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.solar-project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.solar-project-card-body {
    padding: 20px;
}
.solar-project-card-body h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}
.solar-project-card-body h6 a {
    color: inherit;
    text-decoration: none;
}
.solar-project-card-body h6 a:hover {
    color: var(--solar-primary);
}
.solar-project-card-body span {
    color: #6B7280;
    font-size: 14px;
}

.solar-projects-page {
    background:
        radial-gradient(circle at top right, rgba(0, 174, 239, 0.14), transparent 28%),
        linear-gradient(180deg, #eef9fe 0%, #f8fbfd 45%, #f3f4f6 100%);
}

.solar-project-card--page {
    border: 1px solid rgba(0, 174, 239, 0.08);
}

.solar-project-card--page:hover {
    box-shadow: 0 18px 45px rgba(0, 174, 239, 0.14);
}

.solar-project-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--solar-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.solar-project-card--page p {
    color: #5f6c7b;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.solar-project-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.solar-project-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
}

.solar-project-card-meta i {
    color: var(--solar-accent);
}

.solar-project-pagination .pagination {
    justify-content: center;
}

.solar-project-pagination .page-link {
    border-radius: 999px;
    margin: 0 4px;
    border: 1px solid rgba(0, 174, 239, 0.18);
    color: #0f172a;
    box-shadow: none;
}

.solar-project-pagination .page-item.active .page-link,
.solar-project-pagination .page-link:hover {
    background: var(--solar-gradient);
    border-color: transparent;
    color: #fff;
}

.solar-project-empty-state {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
    border: 1px solid rgba(0, 174, 239, 0.12);
    border-radius: 24px;
    padding: 56px 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.solar-project-empty-state h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 12px;
    text-align: center;
}

.solar-project-empty-state p {
    color: #64748b;
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.8;
    text-align: center;

}

.solar-project-details {
    background:
        radial-gradient(circle at top left, rgba(0, 174, 239, 0.12), transparent 26%),
        linear-gradient(180deg, #f7fcff 0%, #f3f4f6 100%);
}

.solar-detail-gallery,
.solar-detail-content-card,
.solar-detail-meta-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.solar-detail-gallery {
    padding: 0;
    overflow: hidden;
}

.solar-detail-gallery .swiper,
.solar-detail-gallery .swiper-wrapper,
.solar-detail-gallery .swiper-slide,
.solar-detail-gallery .portfolio__one-item,
.solar-detail-gallery .portfolio__one-item-image {
    width: 100%;
}

.solar-detail-gallery .portfolio__one-item-image img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px;
}

.solar-detail-sidebar {
    display: grid;
    gap: 18px;
}

.solar-detail-meta-card {
    padding: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
}

.solar-detail-meta-card span {
    display: block;
    color: var(--solar-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.solar-detail-meta-card h6 {
    color: #0f172a;
    font-size: 20px;
    margin: 0;
    line-height: 1.4;
}

.solar-detail-content-card {
    padding: 42px;
}

.solar-detail-content-kicker {
    display: inline-block;
    color: var(--solar-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.solar-detail-content-card h3 {
    font-size: 34px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 24px;
}

.solar-detail-content-body,
.solar-detail-content-body p,
.solar-detail-content-body li {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
}

.solar-detail-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

/* ===== SOLAR NEWSLETTER ===== */
.solar-newsletter {
    padding: 80px 0;
    background: var(--solar-gradient);
}
.solar-newsletter h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.solar-newsletter p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    text-align: center;

}
.solar-newsletter .form-control {
    border-radius: 50px;
    padding: 14px 24px;
    border: none;
    font-size: 15px;
}
.solar-newsletter .btn-dark {
    border-radius: 50px;
    padding: 14px 30px;
    font-weight: 600;
}

/* ===== SOLAR SYSTEMS PAGE ===== */
.solar-systems-grid {
    padding: 80px 0;
}

/* ===== SOLAR CONTACT EXTRAS ===== */
.solar-contact-extras .contact__form-area-item input,
.solar-contact-extras .contact__form-area-item textarea {
    border-radius: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .solar-hero h1 {
        font-size: 2.5rem;
    }
    .solar-hero {
        min-height: 70vh;
        padding: 80px 0;
    }
    .solar-stats {
        margin-top: 0;
    }
    .solar-step-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .solar-hero h1 {
        font-size: 2rem;
    }
    .solar-hero p {
        font-size: 1rem;
    }
    .solar-stat-item h3 {
        font-size: 1.8rem;
    }
    .solar-section-title h2,
    .solar-about h2 {
        font-size: 1.8rem;
    }

    .solar-detail-gallery .portfolio__one-item-image img {
        height: 320px;
    }

    .solar-detail-content-card {
        padding: 28px 22px;
    }

    .solar-detail-content-card h3 {
        font-size: 28px;
    }

    .solar-project-empty-state {
        padding: 42px 20px;
    }

    .solar-project-empty-state h3 {
        font-size: 24px;
    }
}

/* ===== SOLAR NAV ACCENT ===== */
.solar-layout .header__area-menubar-center-menu ul li a:hover,
.solar-layout .header__area-menubar-center-menu ul li.active a {
    color: var(--solar-accent) !important;
}
.solar-layout .btn-one {
    background: var(--solar-gradient) !important;
    border-color: transparent !important;
}
.solar-layout .btn-one:hover {
    background: var(--solar-gradient-hover) !important;
}
.solar-layout .subtitle-one {
    color: var(--solar-accent) !important;
}
.solar-layout .topBar__one {
    background: linear-gradient(90deg, #0a1628, #0d2137);
}

/* ===== SOLAR BREADCRUMB ===== */
.solar-layout .breadcrumb__area {
    position: relative;
}
.solar-layout .breadcrumb__area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--solar-gradient);
}


::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
  background: #12afe6;
}
::-webkit-scrollbar-thumb:hover {
  background: #12afe6;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.25);
    transition: all 0.3s ease;
    color: #1a202c;
    font-size: 15px;
}
.lang-switcher-trigger:hover {
    background: rgba(0, 174, 239, 0.18);
    border-color: var(--solar-accent);
}
.lang-switcher-trigger i {
    font-size: 16px;
    color: var(--solar-accent);
}
.lang-current-code {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--solar-accent);
}

/* Language Panel Overlay */
.lang-switcher-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.lang-switcher-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Language Panel */
.lang-switcher-panel {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
[dir="rtl"] .lang-switcher-panel {
    right: auto;
    left: -360px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 40px rgba(0,0,0,0.15);
}
.lang-switcher-panel.open {
    right: 0;
}
[dir="rtl"] .lang-switcher-panel.open {
    right: auto;
    left: 0;
}

.lang-switcher-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.lang-switcher-panel-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-switcher-panel-header h6 i {
    color: var(--solar-accent);
    font-size: 18px;
}
.lang-switcher-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6B7280;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lang-switcher-close:hover {
    background: #f3f4f6;
    color: #111827;
}

.lang-switcher-panel-body {
    padding: 20px 24px;
    flex: 1;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 2px solid #f0f0f0;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    cursor: pointer;
}
.lang-option:hover {
    border-color: var(--solar-accent);
    background: rgba(0, 174, 239, 0.04);
    transform: translateX(-3px);
    text-decoration: none;
}
[dir="rtl"] .lang-option:hover {
    transform: translateX(3px);
}
.lang-option.active {
    border-color: var(--solar-accent);
    background: rgba(0, 174, 239, 0.06);
    box-shadow: 0 2px 12px rgba(0, 174, 239, 0.12);
}
.lang-flag {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}
.lang-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lang-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
}
.lang-native {
    font-size: 13px;
    color: #6B7280;
    margin-top: 2px;
}
.lang-check {
    color: var(--solar-accent);
    font-size: 20px;
    flex-shrink: 0;
}

/* ===== WHY CHOOSE US SECTION ===== */
.solar-why-choose {
    padding: 100px 0;
    background: #fff;
}
.solar-why-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    height: 100%;
}
.solar-why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.2);
}
.solar-why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0,174,239,0.1), rgba(0,174,239,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--solar-accent);
    transition: all 0.35s ease;
}
.solar-why-item:hover .solar-why-icon {
    background: var(--solar-gradient);
    color: #fff;
    transform: scale(1.1);
}
.solar-why-item h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}
.solar-why-item p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== SOLAR FOOTER ENHANCEMENT ===== */
.solar-footer {
    background: linear-gradient(180deg, #0a1628 0%, #0d2137 100%) !important;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.solar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #00d4ff, #00AEEF);
}
.solar-footer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer info card with icon */
.solar-footer-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.solar-footer-info-card:hover {
    background: rgba(0, 174, 239, 0.08);
    border-color: rgba(0, 174, 239, 0.2);
}
.solar-footer-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #00AEEF, #00d4ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}
.solar-footer-info-card p {
    margin: 0;
    max-width: none;
}
.solar-footer-info-card p a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    line-height: 1.6;
}
.solar-footer-info-card p a:hover {
    color: #00AEEF !important;
}

/* Footer widget headings */
.solar-footer .footer__area-widget h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.solar-footer .footer__area-widget h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00AEEF, #00AEEF);
    border-radius: 2px;
}

/* Contact info with icons */
.solar-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px !important;
}
.solar-footer-phone-icon {
    color: #00AEEF;
    font-size: 14px;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.solar-contact-info p:hover .solar-footer-phone-icon {
    background: rgba(0, 174, 239, 0.2);
    transform: scale(1.1);
}
.solar-contact-info p a {
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Social icons */
.solar-footer .social__icon ul li a i {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.solar-footer .social__icon ul li a i:hover {
    background: #00AEEF !important;
    border-color: #00AEEF;
    transform: translateY(-3px);
}

/* Navigation links */
.solar-footer .footer-widget-menu ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    padding: 4px 0;
    display: inline-block;
}
.solar-footer .footer-widget-menu ul li a:hover {
    color: #00AEEF;
    padding-left: 18px;
}
.solar-footer .footer-widget-menu ul li a::before {
    color: #00AEEF;
}

/* Subscribe form */
.solar-footer .footer__area-widget-subscribe form input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    color: #fff !important;
    height: 56px;
    padding-right: 65px;
}
.solar-footer .footer__area-widget-subscribe form input:focus {
    border-color: #00AEEF !important;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}
.solar-footer .footer__area-widget-subscribe form input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}
.solar-footer .footer__area-widget-subscribe form button {
    background: linear-gradient(135deg, #00AEEF, #00d4ff) !important;
    border-radius: 0 8px 8px 0 !important;
    height: 56px;
    width: 56px;
    transition: all 0.3s ease;
}
.solar-footer .footer__area-widget-subscribe form button:hover {
    background: linear-gradient(135deg, #0098d4, #00AEEF) !important;
}

/* Copyright */
.solar-copyright {
    background: rgba(0, 0, 0, 0.25) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
    padding: 20px 0;
}
.solar-copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 14px;
}
.solar-copyright p a {
    color: #00AEEF;
    font-weight: 600;
}
.solar-copyright p a:hover {
    color: #00d4ff;
}
.solar-copyright-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}
.solar-copyright-links a:hover {
    color: #00AEEF;
}
.solar-copyright-links span {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

/* RTL adjustments for footer */
[dir="rtl"] .solar-footer .footer__area-widget h6::after {
    left: auto;
    right: 0;
}
[dir="rtl"] .solar-footer .footer-widget-menu ul li a:hover {
    padding-left: 0;
    padding-right: 18px;
}
[dir="rtl"] .solar-footer .footer-widget-menu ul li a::before {
    left: auto;
    right: 0;
}
[dir="rtl"] .solar-contact-info p {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
    .solar-footer {
        padding-top: 60px;
    }
    .solar-copyright {
        margin-top: 40px;
    }
    .solar-copyright-links {
        margin-top: 10px;
    }
}
@media (max-width: 575px) {
    .solar-footer-info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .solar-contact-info p {
        justify-content: center;
    }
}

/* ===== Site Switcher Nav ===== */
.site-switcher-nav-item .site-switcher-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}
.site-switcher-nav-item .electric-link {
        background: #00aeef12;
    color: #00aeef !important;
    border-color: #00aeef;
}

.site-switcher-nav-item .electric-link:hover {
    background: #00afef56;
    color: #fff !important;
}


/* ===== Component Tabs Scrollable Row ===== */
.component-tabs-row::-webkit-scrollbar {
    display: none;
}
.component-tabs-row {
    -ms-overflow-style: none;
}
@media (min-width: 768px) {
    .component-tabs-row {
        justify-content: center !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
    }
}

/* ===== SOLAR GALLERY SECTION ===== */
.solar-gallery-section {
    background: #f8fafc;
}

/* Gallery Card */
.solar-gallery-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}
.solar-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 174, 239, 0.15);
}

/* Card Image */
.solar-gallery-card-img {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.solar-gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.5s ease;
}
.solar-gallery-card:hover .solar-gallery-card-img img {
    transform: scale(1.05);
}

/* ===== SOLAR MOBILE MENU FIXES ===== */
.solar-layout .vertical-menu ul li.menu-item-has-children > span {
    background: var(--solar-accent, #00aeef);
}
.solar-layout .vertical-menu ul li:hover > a {
    color: var(--solar-accent, #00aeef);
}
.solar-layout .vertical-menu ul li .sub-menu li a:hover {
    color: var(--solar-accent, #00aeef);
}