/* General Style Resets and Base Settings */
body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #001F3F, #003087); /* Enerji temalı koyu mavi gradient */
    color: #E0F7FA; /* Açık mavi-beyaz metin rengi */
    line-height: 1.7;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    transition: padding-top 0.3s ease; /* Yumuşak geçiş için */
}

/* Energy Theme Color Palette */
.primary-dark-blue { color: #001F3F; } /* Koyu enerji mavisi */
.primary-dark-blue-bg { background-color: #001F3F; }
.secondary-electric-blue { color: #00BFFF; } /* Elektrik mavisi */
.secondary-electric-blue-bg { background-color: #00BFFF; }
.tertiary-lime-green { color: #32CD32; } /* Canlı lime yeşili */
.tertiary-lime-green-bg { background-color: #32CD32; }
.light-cyan-text { color: #B2EBF2; } /* Açık camgöbeği metin */
.dark-navy-bg { background-color: #003087; } /* Koyu lacivert arka plan */
.medium-blue-bg { background-color: #005BBB; } /* Orta mavi arka plan */
.white-text { color: #FFFFFF; } /* Beyaz metin */

/* Heading Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #E0F7FA; /* Açık mavi-beyaz başlıklar */
}

/* General Button Styles */
.btn-energy {
    @apply inline-flex items-center justify-center px-10 py-4 font-semibold rounded-md shadow-lg transition duration-300 ease-in-out transform hover:scale-105;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(0, 191, 255, 0.4); /* Elektrik mavisi gölge */
    font-size: 1.1rem;
}
.btn-primary-energy {
    @apply bg-secondary-electric-blue text-primary-dark-blue hover:bg-tertiary-lime-green hover:text-white-text;
}
.btn-outline-energy {
    @apply border-2 border-secondary-electric-blue text-secondary-electric-blue bg-transparent hover:bg-secondary-electric-blue hover:text-primary-dark-blue;
}
.btn-dark-outline-energy {
    @apply border-2 border-white-text text-white-text bg-transparent hover:bg-white-text hover:text-primary-dark-blue;
}
.btn-contact-energy {
    @apply bg-tertiary-lime-green text-white-text hover:bg-secondary-electric-blue hover:text-primary-dark-blue;
}

/* Header Styles */
#main-header {
    background: linear-gradient(to bottom, #003087, #001F3F); /* Lacivertten koyu maviye gradient */
    box-shadow: 0 4px 35px rgba(0, 191, 255, 0.3); /* Enerji mavisi gölge */
    height: 80px; /* Sabit yükseklik */
    display: flex;
    align-items: center; /* İçeriği dikeyde ortala */
    position: fixed;
    top: 0;
    left: 0; /* width: 100% yerine daha net hizalama */
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease; /* Görsel geçişler */
}
#main-header.scrolled {
    background: rgba(0, 31, 63, 0.95); /* Daha opak koyu mavi */
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.4); /* Hafif daha belirgin gölge */
}

/* Slider veya ana içeriğin header altında başlaması için */
main, .slider-container, .page-hero-banner {
    margin-top: 80px; /* Header yüksekliği kadar boşluk */
}
.header-link-effect {
    color: #E0F7FA; /* Açık mavi-beyaz linkler */
    font-weight: 500;
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}
.header-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #32CD32; /* Lime yeşili hover efekti */
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease-out;
}
.header-link-effect:hover::before {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}
.header-link-effect:hover {
    color: #32CD32; /* Lime yeşili hover */
}
.vertical-divider {
    background-color: rgba(224, 247, 250, 0.3); /* Açık mavi-beyaz divider */
    width: 2px;
    height: 30px;
}
#header-logo {
    filter: brightness(0) invert(1); /* Varsayılan olarak tamamen beyaz */
    transition: filter 0.3s ease;
}


/* Mobile Menu Styles */
#mobile-menu {
    background: #003087; /* Koyu lacivert arka plan */
    border-top: 1px solid rgba(224, 247, 250, 0.2);
    width: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 999; /* Header'ın altında, diğer içeriklerin üstünde */
    top: 100%; /* Header'ın hemen altında başlar */
    left: 0;
    position: absolute; /* Menü sabit değil, header'ın altına yerleşir */
}
.mobile-menu-link {
    @apply text-white-text hover:text-tertiary-lime-green transition duration-300 font-medium py-3 px-6 rounded-md;
    border-left: 4px solid transparent;
    font-size: 1rem;
}
.mobile-menu-link:hover {
    border-left-color: #32CD32;
}
.mobile-submenu-container {
    border-left: 2px solid rgba(224, 247, 250, 0.3);
    padding-left: 1.5rem;
    display: none;
}
.mobile-submenu-container.open {
    display: block;
}
.mobile-menu-chevron {
    transition: transform 0.3s ease;
}
.mobile-menu-chevron.rotate {
    transform: rotate(180deg);
}

/* Ensure mobile menu button and language switcher colors stay consistent */
.header-scrolled #mobile-menu-button .fa-bars {
    color: #E0F7FA !important;
}
.header-scrolled #mobile-menu .mobile-menu-link {
    color: #E0F7FA !important;
}

/* Language Switcher Colors for Desktop */
@media (min-width: 769px) {
    #main-header .group .text-light-gray,
    #main-header .group .fa-globe,
    #main-header .group .fa-chevron-down {
        color: #FFFFFF !important; /* Dil menüsü ve ikonları beyaz */
    }
}

/* Slider Section (Hero Banner) */
.page-hero-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Daha belirgin yükseklik */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3); /* Enerji mavisi gölge */
    margin-top: 60px; /* Header yüksekliği kadar boşluk */
}

.page-hero-banner p{
    margin-top:2rem;
    
    font-size: 20px;
}

@media (min-width: 768px) {
    .page-hero-banner p {
        margin-left: 12rem;
    }
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 31, 63, 0.9), rgba(0, 91, 187, 0.7)); /* Koyu şeffaf katman */
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 1.5rem;
    margin-top:50rem;
}
.page-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 4.5rem; /* Daha büyük başlık */
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.6), 0 0 25px rgba(0, 191, 255, 0.4); /* Neon effect */
}
.page-hero-content p {
    font-size: 1.8rem;
    color: #B2EBF2; /* Açık camgöbeği */
    margin-top: 1rem;
}

/* Hizmet Detay Alanı Stilleri */
.service-detail-section {
    background: linear-gradient(to bottom, #001F3F, #003087); /* Koyu maviden laciverte */
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 191, 255, 0.3);
    padding: 5rem; /* Daha fazla padding */
    margin-top: -350px; /* Banner'ın üzerine bindirme */
    position: relative;
    z-index: 10;
    border-top: 8px solid #00BFFF; /* Electric blue üst çizgi */
}
.service-detail-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #E0F7FA; /* Açık mavi-beyaz */
    position: relative;
    padding-bottom: 1.5rem;
}
.service-detail-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background-color: #32CD32; /* Lime green */
    border-radius: 3px;
}
.service-detail-section p {
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.6;
    
}

.service-detail-content {
    font-size: 1.15rem;
    color: #B2EBF2; /* Açık camgöbeği */
    line-height: 1.8;
}
/* CKEditor İçeriği için Stiller */
.service-detail-content p {
    margin-bottom: 1.5em; /* Paragraflar arası boşluk */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #B2EBF2; /* Açık camgöbeği metin */
}
.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #E0F7FA; /* Primary color */
    margin-top: 2.5em; /* Başlıklardan önce boşluk */
    margin-bottom: 1em; /* Başlıklardan sonra boşluk */
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5em;
}
.service-detail-content h2 {
    font-size: 2.5rem;
    border-bottom: 3px solid #00BFFF; /* Secondary color altında çizgi */
    display: inline-block; /* Çizginin sadece metin kadar olmasını sağlar */
    padding-right: 1rem; /* Çizgi ile metin arasında boşluk */
}
.service-detail-content h3 {
    font-size: 2rem;
    color: #32CD32; /* Tertiary color */
}
.service-detail-content h4 {
    font-size: 1.75rem;
    color: #E0F7FA; /* Primary color */
}
.service-detail-content img {
    max-width: 100%; /* Resimlerin responsive olmasını sağlar */
    height: auto; /* Oranını korur */
    display: block; /* Ortalamak için */
    margin: 2.5rem auto; /* Üstte ve altta boşluk, ortalama */
    border-radius: 1rem; /* Yuvarlak köşeler */
    box-shadow: 0 10px 25px rgba(0, 191, 255, 0.35); /* Hafif gölge */
    border: 3px solid #005BBB; /* Hafif kenarlık */
}
.service-detail-content ul,
.service-detail-content ol {
    margin-left: 2.5rem; /* Liste öğeleri için girinti */
    margin-bottom: 1.5em;
    list-style-position: outside; /* Madde işaretlerinin dışarıda kalmasını sağlar */
    color: #B2EBF2;
}
.service-detail-content ul li {
    list-style-type: disc; /* Disk madde işareti */
    margin-bottom: 0.5em;
}
.service-detail-content ol li {
    list-style-type: decimal; /* Sayısal madde işareti */
    margin-bottom: 0.5em;
}
.service-detail-content a {
    color: #32CD32; /* Tertiary color */
    text-decoration: underline;
    transition: color 0.3s ease;
}
.service-detail-content a:hover {
    color: #00BFFF; /* Secondary color */
    text-decoration: none;
}
/* Tablo Stilleri */
.service-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.2);
    border-radius: 0.75rem;
    overflow: hidden; /* Köşelerin yuvarlak görünmesi için */
}
.service-detail-content th,
.service-detail-content td {
    padding: 1.2rem 1.8rem;
    border: 1px solid #005BBB; /* Orta mavi kenarlık */
    text-align: left;
    font-size: 1rem;
    color: #E0F7FA;
}
.service-detail-content th {
    background: #003087; /* Koyu lacivert başlık arka planı */
    font-weight: 600;
    color: #E0F7FA;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}
.service-detail-content tr:nth-child(even) {
    background: #001F3F; /* Zebra şerit efekti */
}
.service-detail-content tr:hover {
    background: #005BBB; /* Satır üzerine gelince hafif vurgu */
}

/* Katalog Section */
.katalog-section {
    background: linear-gradient(to bottom, #003087, #005BBB); /* Lacivertten orta maviye */
}
.katalog-card {
    border-left: 4px solid #00BFFF; /* Electric blue */
    transition: transform 0.3s ease;
}
.katalog-card:hover {
    transform: translateY(-5px);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom, #001F3F, #003087); /* Koyu maviden laciverte */
    padding: 6rem 0;
    border-radius: 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.3);
    border: 1px solid #005BBB; /* Orta mavi kenarlık */
}
.gallery-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-align: center;
    color: #E0F7FA; /* Açık mavi-beyaz */
    position: relative;
    padding-bottom: 1.5rem;
}
.gallery-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background-color: #00BFFF; /* Electric blue */
    border-radius: 3px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #005BBB; /* Orta mavi kenarlık */
}
.gallery-item img {
    width: 100%;
    height: 220px; /* Sabit yükseklik */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.4);
}
.lg-backdrop {
    background: rgba(0, 31, 63, 0.95) !important; /* Koyu mavi backdrop */
}
.lg-toolbar {
    background: rgba(0, 31, 63, 0.8) !important;
}
.lg-sub-html {
    background: rgba(0, 31, 63, 0.8) !important;
    color: #E0F7FA;
    padding: 10px 20px;
}

/* Benzer Hizmetler Alanı Stilleri */
.related-services-section {
    background: linear-gradient(to bottom, #001F3F, #003087); /* Koyu maviden laciverte */
    padding: 10rem 0;
}
.related-services-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #E0F7FA; /* Açık mavi-beyaz */
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    background: linear-gradient(to right, #00BFFF, #32CD32); /* Electric blue to lime green gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.related-services-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 8px;
    background-color: #00BFFF; /* Electric blue */
    border-radius: 4px;
}

/* Hizmet Kartları Kaydırma İçin Stiller */
.services-carousel-wrapper {
    position: relative;
    overflow: hidden; /* Scrollbar'ı gizle */
    padding: 0 50px; /* Oklar için boşluk */
}
.energy-services-carousel {
    display: flex; /* Kartları yan yana sırala */
    transition: transform 0.5s ease-in-out; /* Kaydırma animasyonu */
    padding-bottom: 1rem; /* Gölge için boşluk */
    gap: 2.5rem; /* Kartlar arası boşluk */
    flex-wrap: nowrap; /* Kartların alt satıra geçmesini engelle */
}
.energy-service-card {
    flex-shrink: 0; /* Kartların küçülmesini engelle */
    width: calc((100% / 3) - (2 * 2.5rem / 3)); /* 3 kart yan yana, 2.5rem gap hesaba kat */
    background: rgba(0, 91, 187, 0.8); /* Orta mavi cam efekti */
    backdrop-filter: blur(5px); /* Glass effect */
    border-radius: 1rem;
    box-shadow: 0 18px 50px rgba(0, 191, 255, 0.3);
    border-top: 12px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.energy-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 191, 255, 0.4);
    border-color: #32CD32; /* Hover'da lime green */
}
.energy-service-card img {
    width: 100%;
    height: 280px; /* Daha büyük resimler */
    object-fit: cover;
}
.energy-service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.energy-service-card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #E0F7FA; /* Açık mavi-beyaz */
    margin-bottom: 1rem;
    line-height: 1.2;
}
.energy-service-card-content p {
    font-family: 'Open Sans', sans-serif;
    color: #B2EBF2; /* Açık camgöbeği */
    font-size: 1.05rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}
.energy-service-card-link {
    @apply inline-flex items-center text-tertiary-lime-green font-semibold hover:text-secondary-electric-blue transition duration-300;
    font-family: 'Montserrat', sans-serif;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 31, 63, 0.7); /* Koyu mavi */
    color: #E0F7FA;
    padding: 18px;
    cursor: pointer;
    z-index: 15;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    font-size: 1.5rem;
}
.carousel-arrow:hover {
    background: rgba(0, 31, 63, 0.9);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
.carousel-arrow.left {
    left: 0;
}
.carousel-arrow.right {
    right: 0;
}
.carousel-arrow.hidden {
    display: none;
}

/* Call to Action için gradient */
.cta-gradient-energy {
    background: linear-gradient(to right, #001F3F, #003087, #005BBB); /* Dark Gradient */
}
.cta-gradient-energy h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}
.contact-button-styled {
    background-color: #00BFFF; /* Electric blue background */
    color: #001F3F; /* Dark blue text */
    border: 2px solid #00BFFF; /* Electric blue border */
    padding: 1.2rem 3rem; /* Daha fazla padding */
    font-size: 1.125rem; /* Daha büyük font boyutu */
    font-weight: 700; /* Kalın yazı */
    border-radius: 9999px; /* Tamamen yuvarlak köşeler */
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.4); /* Belirgin gölge */
    transition: all 0.3s ease-in-out; /* Yumuşak geçiş */
    display: inline-flex; /* Flexbox özellikleri için */
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Alt çizgiyi kaldır */
    font-family: 'Montserrat', sans-serif; /* Fontu koru */
}
.contact-button-styled:hover {
    background-color: #FFFFFF; /* Hover'da beyaz */
    color: #001F3F; /* Hover'da koyu mavi */
    transform: translateY(-5px) scale(1.02); /* Hafif yukarı kalkma ve büyüme efekti */
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.5); /* Daha belirgin gölge */
}

/* Footer Menü Stilleri */
.footer-menu-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    
}
@media (max-width: 1024px) {
    .footer-menu-grid {
        display: flex;
        flex-direction: column; /* Öğeleri dikey olarak sırala */
        gap: 0.75rem; /* Öğeler arası boşluk */
        text-align: left; /* Metni sola yasla */
        justify-content: start; /* İçeriği sola hizala */
    }

    .footer-menu-grid li {
        width: 100%; /* Öğelerin tam genişlikte olmasını sağla */
    }

    .footer-menu-grid ul {
        margin-left: 0; /* Alt menülerin sol boşluğunu sıfırla */
    }
}
.footer-link-effect {
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
    text-decoration: none;
    overflow: hidden;
    color: #B2EBF2; /* Açık camgöbeği */
}
.footer-link-effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #00BFFF; /* Accent color */
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
}
.footer-link-effect:hover::before {
    width: 100%;
}
.footer-link-effect:hover {
    color: #E0F7FA; /* Açık mavi-beyaz */
}
.text-copyright {
    color: #B2EBF2; /* Açık camgöbeği */
}

/* Footer Logo Styles */
.footer-logo {
    filter: brightness(0) invert(1); /* Varsayılan olarak tamamen beyaz */
    transition: filter 0.3s ease;
}


/* Animasyonlar */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s); /* Custom property for delay */
}
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}
.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--animation-delay, 0s);
}
.animate-scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .page-hero-content h1 {
        font-size: 3.5rem;
    }
    .page-hero-content p {
        font-size: 2rem;
        text-align: left;
    }
    .service-detail-section {
        padding: 3.5rem;
        margin-top: -350px;
    }
    .service-detail-section h2 {
        font-size: 3rem;
    }
    .related-services-section h2 {
        font-size: 4rem;
    }
    .energy-service-card {
        min-width: calc((100% / 2) - (2.5rem / 2)); /* 2 kart yan yana */
    }
    .gallery-section h2 {
        font-size: 3.5rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero-banner {
        height: 300px; /* Mobil için daha ince */
        margin-top: 60px; /* Header yüksekliği kadar boşluk */
    }
    .page-hero-content h1 {
        font-size: 2.8rem;
    }

    .page-hero-content p {
        
        font-size: 1.2rem;

        
       
    }
    .service-detail-section {
        padding: 2rem;
        margin-top: -250px; /* Adjust bind for mobile */
    }
    .service-detail-section h2 {
        font-size: 2.5rem;
    }
    .related-services-section {
        padding: 6rem 0;
    }
    .related-services-section h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }
    .energy-service-card img {
        height: 200px;
    }
    .energy-service-card-content h3 {
        font-size: 1.8rem;
    }
    .mobile-submenu-container {
        padding-left: 0.5rem;
    }
    .carousel-arrow {
        padding: 12px;
        font-size: 1.2rem;
    }
    .energy-service-card {
        min-width: 100%; /* Mobil için tek kart */
        margin-right: 0; /* Mobil için sağ boşluğu kaldır */
    }
    .services-carousel-wrapper {
        padding: 0 20px; /* Mobil oklar için boşluk */
    }
    .gallery-section h2 {
        font-size: 2.8rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .gallery-item img {
        height: 150px;
    }
    .contact-button-styled {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}