#pro-footer-final {
    --pro-bg-color: #1a1a1a;
    --pro-text-color: #a3a3a3;
    --pro-link-color: #ffffff;
    --pro-accent-color: #ff0000;
    --pro-nav-line-color: #ff0000;
    --pro-border-color: #333333;
    position: relative;
    background-color: var(--pro-bg-color);
    color: var(--pro-text-color);
    padding: 6rem 2rem 3rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

#pro-footer-final::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 800px;
    height: 800px;
    transform: translate(25%, -50%);
    background-image: url('/resimler/footer-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.pro-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pro-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--pro-border-color);
}

.pro-footer-logo-wrapper {
    flex-shrink: 0;
}

.pro-footer-logo {
    width: 200px;
    height: auto;
}

.pro-main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pro-main-nav a {
    color: var(--pro-link-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pro-main-nav a::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--pro-nav-line-color);
}

.pro-main-nav a:hover {
    color: var(--pro-accent-color);
}

.pro-main-nav .active a {
    color: var(--pro-accent-color);
}

.pro-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pro-copyright-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.pro-copyright-info .pro-separator {
    color: var(--pro-border-color);
}

.pro-secondary-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pro-secondary-nav a {
    color: var(--pro-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.pro-secondary-nav a:hover {
    color: var(--pro-link-color);
}

@media (max-width: 992px) {
    #pro-footer-final {
        padding: 4rem 1.5rem 2.5rem 1.5rem;
    }
    .pro-footer-top,
    .pro-footer-bottom,
    .pro-copyright-info {
        flex-direction: column;
        text-align: center;
    }
    .pro-footer-top {
        gap: 2.5rem;
    }
    .pro-main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        display: flex;
        align-items: flex-start;
    }
    .pro-footer-bottom {
        gap: 2rem;
    }
    .pro-copyright-info {
        gap: 0.75rem;
        order: 2;
    }
    .pro-secondary-nav {
        order: 1;
    }
    .pro-copyright-info .pro-separator {
        display: none;
    }
}

@import url('css2');
@import url('css2-1');
@import url('css2-2');
.input-mail::placeholder {
    color: #FFF;
    opacity: 1;
    /* Firefox */
}

.input-mail::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #FFF;
}


/* Loader Styles start here */

.loader-wrapper {
    --line-width: 5px;
    --curtain-color: #f4f8f3;
    --outer-line-color: #c40000;
    --middle-line-color: #ff0000;
    --inner-line-color: #ff0000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loader {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--outer-line-color);
    border-radius: 100%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 1001;
}

.loader:before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--inner-line-color);
    border-radius: 100%;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: var(--line-width) solid transparent;
    border-top-color: var(--middle-line-color);
    border-radius: 100%;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    background: var(--curtain-color);
    width: 51%;
    height: 100%;
    z-index: 1000;
}

.loader-wrapper .loader-section.section-left {
    left: 0
}

.loader-wrapper .loader-section.section-right {
    right: 0;
}


/* Loaded Styles */

.loaded .loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded .loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded .loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all .3s 1s ease-out;
}

#header {
    position: fixed;
    top: 100vh;
    /* Başlangıçta ekranın dışında */
    width: 100%;
    opacity: 0;
    transition: all 1.4s ease-in-out;
    /* Geçiş animasyonu */
}

.loaded #header {
    top: 0;
    /* Header'ı en üste kaydır */
    opacity: 1;
    /* Görünürlüğünü arttır */
    z-index: 99;
    padding: 0;
}

@media only screen and (min-width: 1200px) {
    .promo-slider .title {
        font-size: 72px !important;
        line-height: 80px !important;
    }
}

.info-box {
    margin: 0px !important;
}

.search-input {
    padding: 5px;
    width: 90%;
    border: 1px solid #dedede;
}

.info-box.ref-list p {
    color: #000 !important;
    /* font-weight: 600; */
}

.ref-list img.right-arrow-link {
    max-width: 30px;
    margin-left: 10px;
}

.ref-list a.info-box__link {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    padding-top: 0px;
}

.ref-list a.info-box__link:hover {
    color: #f6cc49 !important;
}

.ref-list a.info-box__link:hover img {
    filter: brightness(0) saturate(100%) invert(97%) sepia(92%) saturate(5525%) hue-rotate(320deg) brightness(102%) contrast(93%);
}

.a-btn_center.bg-primary {
    background-color: var(--primary-color) !important;
}

.info-box__text p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
}

.info-box.ref-list .info-box__title a {
    font-size: 18px !important;
}

.a-btn_center-width {
    width: 150px;
}

.a-btn-width {
    width: 150px;
}

.a-btn-width svg {
    width: 150px;
    stroke-dashoffset: 150;
}

.a-btn-width svg polyline {
    width: 150px !important;
}

select#hizmet {
    color: #a9acaf;
    font-size: 14px;
}

select#hizmet:valid option:first-child {
    display: none;
    /* Geçerli seçim yapıldığında placeholder'ı gizler */
}


/* Bu stiller yalnızca bu bölümü (#solar-hero-blended-fullscreen) etkiler */

#solar-hero-blended-fullscreen {
    --solar-bg: #2125299e;
    --solar-text: #F1F1F1;
    --solar-primary: #ff0202;
    --solar-primary-hover: #730000;
    position: relative;
    /* İçerideki mutlak pozisyonlu elemanlar için gereklidir */
    width: 100%;
    height: 100vh;
    /* Tam ekran yüksekliği */
    background-color: var(--solar-bg);
    overflow: hidden;
    font-family: 'Poppins', system-ui, sans-serif;
    display: flex;
    /* İçeriği dikeyde ortalamak için */
    align-items: center;
}


/* Video: En alt katman (z-index: 1) */

#solar-hero-blended-fullscreen .video-background-blended {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/* Yumuşak Geçiş Katmanı: Videonun üstünde (z-index: 2) */

#solar-hero-blended-fullscreen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--solar-bg) 35%, rgba(224, 241, 232, 0) 65%);
    z-index: 2;
}


/* Üst Navbar Degrade Katmanı: Geçiş katmanının üstünde (z-index: 3) */

#solar-hero-blended-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* Degrade yüksekliği */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    z-index: 3;
}


/* Metin İçeriği: En üst katman (z-index: 4) */

#solar-hero-blended-fullscreen .content-wrapper-blended {
    position: relative;
    z-index: 4;
    padding-left: 5rem;
    max-width: 50%;
    color: var(--solar-text);
}

#solar-hero-blended-fullscreen .headline-blended {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

#solar-hero-blended-fullscreen .description-blended {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 500px;
}

#solar-hero-blended-fullscreen .actions-group-blended {
    display: flex;
    gap: 1rem;
}

#solar-hero-blended-fullscreen .action-btn-blended {
    padding: 1rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

#solar-hero-blended-fullscreen .action-btn-blended.primary {
    background-color: var(--solar-primary);
    color: white;
}

#solar-hero-blended-fullscreen .action-btn-blended.primary:hover {
    background-color: var(--solar-primary-hover);
}

#solar-hero-blended-fullscreen .action-btn-blended.secondary {
    background-color: transparent;
    color: var(--solar-primary);
    border-color: var(--solar-primary);
}

#solar-hero-blended-fullscreen .action-btn-blended.secondary:hover {
    background-color: var(--solar-primary);
    color: white;
}


/* Mobil Uyumlu Tasarım */

@media (max-width: 1024px) {
    #solar-hero-blended-fullscreen {
        flex-direction: column;
        /* Mobil için dikey hizalama */
        height: auto;
        /* Yüksekliği içeriğe göre ayarla */
        min-height: 90vh;
    }
    #solar-hero-blended-fullscreen .video-background-blended {
        /* Mobil için video tüm arkaplanı değil, bir kısmını kaplar */
        position: relative;
        width: 100%;
        height: 40vh;
        order: 1;
        /* Videoyu en üste taşı */
        z-index: 1;
    }
    #solar-hero-blended-fullscreen .content-wrapper-blended {
        order: 2;
        /* Metni videonun altına taşı */
        max-width: 100%;
        padding: 3rem 2rem;
        text-align: center;
        background-color: black;
    }
    /* Mobil için geçiş gradyanını ve üst degradeyi yeniden ayarla */
    #solar-hero-blended-fullscreen::after {
        display: none;
        /* Yan geçişi mobilde gizle */
    }
    #solar-hero-blended-fullscreen::before {
        position: absolute;
        /* Üst degrade videonun üstünde kalsın */
        z-index: 2;
    }
}

#senior-developer-showcase {
    --bg-color: #000000;
    --text-color: #f0f0f0;
    --text-muted-color: #a0a0a0;
    --accent-color: #ff1100;
    /* Referans görseldeki gibi Kırmızı */
    --border-color: rgba(255, 255, 255, 0.2);
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background-color: var(--bg-color);
    background-image: radial-gradient(1px 1px at 20% 30%, white, transparent), radial-gradient(1px 1px at 80% 20%, white, transparent), radial-gradient(1px 1px at 50% 70%, white, transparent), radial-gradient(2px 2px at 90% 80%, white, transparent);
    color: var(--text-color);
    font-family: 'Inter', 'Poppins', system-ui, sans-serif;
    overflow: hidden;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    /* Başlık, Kontrol, İçerik (tüm boşluk), Navigasyon */
    padding: 2.5rem 5rem;
}


/* Başlık */

.showcase-headline-final {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
}

.showcase-headline-final span {
    color: var(--accent-color);
}


/* Pause Butonu */

.showcase-controls-final {
    text-align: center;
    margin: 1rem 0;
}

.pause-btn-final {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted-color);
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.pause-btn-final:hover {
    border-color: var(--accent-color);
    color: #fff;
}


/* Ana İçerik Alanı */

.showcase-grid-final {
    display: grid;
    grid-template-columns: 2fr 3.5fr 2fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    min-height: 0;
    perspective: 2500px;
    /* Daha belirgin 3D için */
}


/* Geçiş Animasyonları */

.showcase-item-final {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.showcase-item-final.active {
    opacity: 1;
    transform: translateY(0);
}


/* Paneller */

.info-pane-final,
.visual-pane-final,
.features-pane-final {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Sol Bilgi Paneli */

.product-title-final {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-description-final {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted-color);
    max-width: 420px;
}

.learn-more-final {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    display: inline-block;
}


/* Orta Video Paneli - 3D Efekt */

.visual-pane-final {
    transform: rotateY(-12deg) rotateX(2deg) scale(0.9);
}

.product-video-final {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}


/* Sağ Özellikler Paneli - Kırmızı Çerçeve */

.features-list-final {
    list-style: none;
    padding: 2.5rem;
    margin: 0;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
}

.feature-item-final {
    margin-bottom: 1.8rem;
}

.feature-item-final:last-child {
    margin-bottom: 0;
}

.feature-item-final strong {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.feature-item-final strong::before {
    content: '◆';
    color: var(--accent-color);
    margin-right: 0.8rem;
}

.feature-item-final p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted-color);
    padding-left: 1.9rem;
}


/* Alt Navigasyon */

.showcase-navigation-final {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
}

.nav-item-final {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted-color);
    padding: 0.7rem 1.8rem;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-item-final.active,
.nav-item-final:hover {
    color: #fff;
}

.nav-item-final.active {
    border-color: var(--accent-color);
}


/* MOBİL UYUMLULUK */

@media (max-width: 1024px) {
    #senior-developer-showcase {
        padding: 1.5rem;
        overflow-y: auto;
    }
    .showcase-headline-final {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
    .showcase-controls-final {
        margin: 1rem 0;
    }
    .showcase-grid-final {
        grid-template-columns: 1fr;
        perspective: none;
        flex-grow: 1;
    }
    .info-pane-final,
    .features-pane-final {
        display: none;
    }
    .visual-pane-final {
        transform: none;
        width: 100%;
        height: 100%;
    }
    .product-video-final {
        object-fit: contain;
    }
    .showcase-navigation-final {
        flex-wrap: wrap;
    }
}

#zoom-info-diagram-final {
    --bg-color: #f9fafb;
    --text-color: #111827;
    --accent-color: #ff0000;
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
    --hotspot-size: 24px;
    background-color: var(--bg-color);
    padding: 5rem 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
}

.diagram-title-final {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.diagram-container-final {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    cursor: zoom-out;
}

.diagram-container-final:not(.is-zoomed) {
    cursor: default;
}

.image-wrapper-final {
    position: relative;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
}

.diagram-container-final.is-zoomed .image-wrapper-final {
    transform: scale(2);
}

.diagram-image-final {
    width: 100%;
    height: auto;
    display: block;
}

.hotspot-final {
    position: absolute;
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    border-radius: 50%;
    background-color: var(--accent-color);
    transform: translate(-50%, -50%);
    cursor: zoom-in;
    transition: transform 0.3s ease, opacity 0.5s ease;
    z-index: 5;
}

.hotspot-final:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.diagram-container-final.is-zoomed .hotspot-final {
    opacity: 0;
    pointer-events: none;
}

.hotspot-final::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--accent-color);
    animation: hotspot-pulse-final 2s infinite ease-out;
    z-index: -1;
}

@keyframes hotspot-pulse-final {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


/* Bilgi Kartı */

.info-card-final {
    position: absolute;
    width: 280px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
    text-align: left;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.diagram-container-final.is-zoomed .info-card-final {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.info-title-final {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.75rem 0;
}

.info-desc-final {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.close-btn-final {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.close-btn-final:hover {
    background-color: rgba(0, 0, 0, 0.12);
    transform: scale(1.1);
}


/* MOBİL UYUMLULUK */

@media (max-width: 768px) {
    #zoom-info-diagram-final {
        padding: 3rem 1.5rem;
    }
    .diagram-container-final.is-zoomed .image-wrapper-final {
        transform: scale(1.5);
    }
    /* Mobilde kart, yanda değil altta sabitlenir */
    .info-card-final {
        position: fixed;
        /* Ekrana göre sabitlenir */
        width: calc(100% - 2rem);
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        top: auto !important;
        /* Javascript'in atadığı pozisyonu iptal et */
        transform: translateY(20px) scale(1);
    }
    .diagram-container-final.is-zoomed .info-card-final {
        transform: translateY(0) scale(1);
    }
}

#ges-projects-final-section {
    --bg-color: #f9fafb;
    /* Hafif kırık beyaz, temiz bir zemin */
    --text-color: #111827;
    --accent-color: #ff0000;
    /* Canlı ve enerjik yeşil */
    --accent-hover: #15803d;
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.07);
    --arrow-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-color);
    padding: 5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

.projects-container-final {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects-header-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.projects-title-final {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--text-color);
}

.all-projects-btn-final {
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    border-radius: 99px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.all-projects-btn-final:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
}


/* Slider Alanı */

.slider-wrapper-final {
    position: relative;
}

.projects-slider-final {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1.5rem;
    /* Alttaki gölge için boşluk */
}

.projects-slider-final::-webkit-scrollbar {
    display: none;
}

.projects-slider-final {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-card-final {
    flex: 0 0 30%;
    min-width: 300px;
    scroll-snap-align: start;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card-final:hover {
    transform: translateY(-5px);
}

.card-image-wrapper-final {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.card-image-final {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card-final:hover .card-image-final {
    transform: scale(1.05);
}

.card-content-final {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    min-height: 110px;
    /* Kart yüksekliklerinin eşit kalmasını sağlar */
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Gelişmiş Navigasyon Okları */

.slider-arrow-final {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    box-shadow: var(--arrow-shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

.slider-arrow-final:hover {
    transform: translateY(-50%) scale(1.1);
    color: var(--accent-color);
}

.slider-arrow-final.prev-final {
    left: -25px;
}

.slider-arrow-final.next-final {
    right: -25px;
}

.slider-arrow-final.hidden {
    opacity: 0;
    pointer-events: none;
}


/* MOBİL UYUMLULUK */

@media (max-width: 768px) {
    #ges-projects-final-section {
        padding: 4rem 0;
    }
    .projects-container-final {
        padding: 0 1rem;
    }
    .projects-header-final {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }
    .project-card-final {
        flex-basis: 80%;
        min-width: 280px;
    }
    .slider-arrow-final {
        display: none;
    }
}



.whatsapp-button {
    position: fixed;
    bottom: 75px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #ff0202;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-in-out, opacity 0.3s ease-in-out;
    /* YumuÅŸak animasyon */
    z-index: 1000;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    /* BaÅŸlangÄ±Ã§ta gÃ¶rÃ¼nÃ¼r */
}


/* WhatsApp Ä°konu */

.whatsapp-button i {
    font-size: 28px;
    /* Orijinal boyut */
    color: white;
    /* Beyaz renk */
}


/* Hover efekti */

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* Mobilde Butonu Gizle (AÅŸaÄŸÄ± KayÄ±nca) */

@media (max-width: 768px) {
    .whatsapp-button.hidden {
        opacity: 0;
        pointer-events: none;
        /* TÄ±klamayÄ± engeller */
    }
}


/* WhatsApp Destek Penceresi */

.whatsapp-chatbox {
    position: fixed;
    bottom: 20px;
    left: -300px;
    width: 280px;
    height: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 999;
}


/* Pencere AÃ§Ä±ldÄ±ÄŸÄ±nda */

.whatsapp-chatbox.open {
    left: 20px;
}


/* Ãœst KÄ±sÄ±m */

.whatsapp-header {
    background-color: #ff0202;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-around;
    ;
    align-items: center;
}

.whatsapp-header .close-btn {
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

.whatsapp-content {
    flex: 1;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.whatsapp-content p {
    font-size: 14px;
    color: #ff0202;
    margin-bottom: 10px;
}

.whatsapp-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-link:hover {
    background-color: #1ebe57;
}

.ikon {
    font-size: 50px;
    /* Ä°kon boyutu */
    color: white;
    /* Ä°kon rengi */
    position: absolute;
    bottom: 40px;
    /* Ä°konu kutunun iÃ§inde aÅŸaÄŸÄ±ya kaydÄ±rdÄ±m */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .cta-btn-area {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    #stats-section-horasanli {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}
#solar-hero-blended-fullscreen {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important; /* destekleyenlerde daha sağlam */
    overflow: hidden !important;
}

.video-background-blended {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    object-fit: cover !important;
    z-index: 1 !important;
    pointer-events: none !important; /* dokunmaları engelle */
}
