/* =====================================================
   GREEN ENERGY SLIDER - ÜNLÜ HUKUK (Dark Navy Theme)
   ===================================================== */

/* Section Container - Full Screen */
.green-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

/* Content Panel - Centered Overlay */
.green-hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 12, 22, 0.95) 0%, rgba(5, 12, 22, 0.4) 100%);
    /* Karartma */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Ortala */
    text-align: center;
    /* Ortala */
    padding: 120px 20px 60px;
    /* Navbar altı boşluk */
    z-index: 10;
}

/* Decorative Circles Removed */
.green-hero-overlay::before,
.green-hero-overlay::after {
    display: none;
}

/* Navigation Buttons - Soft Side Controls */
.green-nav {
    display: block !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
    /* Container tıklamaları engellemesin */
}

.green-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    /* Soft Glass Effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #fff;
    font-size: 24px;
    position: absolute;
    pointer-events: auto;
    /* Butonlar tıklanabilsin */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.green-nav-prev {
    left: 40px;
}

.green-nav-next {
    right: 40px;
}

.green-nav-btn:hover {
    background: #C9A962;
    color: #0A1628;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
    border-color: #C9A962;
}

/* Mobile Adjustments for Nav */
@media (max-width: 991px) {
    .green-nav {
        display: none !important;
        /* Mobile buttons are inline in content */
    }
}

/* Content Styles */
.green-tagline {
    color: #C9A962;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* Increased letter spacing */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.green-headline {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.green-headline span {
    color: #fff;
    /* Başlıktaki renkli kısımları da beyaz yap, bütünlük için */
    text-decoration: underline;
    text-decoration-color: #C9A962;
}

.green-desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .green-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Mobile Buttons - Single Line Format */
    .green-buttons {
        flex-wrap: nowrap !important;
        gap: 10px !important;
        width: 100%;
        justify-content: center;
    }

    .green-btn {
        padding: 12px 15px !important;
        font-size: 13px !important;
        white-space: nowrap;
        min-width: auto;
    }
}

/* Buttons - Gold Theme */
.green-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* Ensure vertical center */
    /* Ortala */
}

.green-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    /* Yuvarlak butonlar */
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.green-btn i {
    order: 2;
    /* Icon sağda */
    margin-left: 8px;
}

.green-btn-white {
    background: #C9A962;
    color: #0A1628;
    border: 2px solid #C9A962;
}

.green-btn-white:hover {
    background: #ffffff;
    color: #C9A962;
    border-color: #C9A962;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.green-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #C9A962;
}

.green-btn-outline:hover {
    background: #C9A962;
    color: #0A1628;
    border-color: #C9A962;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* Pagination - Centered */
/* Pagination - Dots */
.green-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.green-pagination .swiper-pagination-bullet {
    pointer-events: auto;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.green-pagination .swiper-pagination-bullet-active {
    background: #C9A962;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(201, 169, 98, 0.4);
}


/* Right Panel - Full Screen Background Slider */
.green-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.green-slider {
    width: 100%;
    height: 100%;
    cursor: grab !important;
    touch-action: pan-y !important;
    -webkit-user-select: none;
    user-select: none;
}

.green-slider:active {
    cursor: grabbing !important;
}

.green-slider .swiper-wrapper {
    z-index: 5;
}

.green-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    cursor: grab;
    height: 100%;
    /* Yükseklik kapsayıcıya göre */
}

.green-slider .swiper-slide:active {
    cursor: grabbing;
}

.green-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Overlay Card */
.green-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    background: #fff;
    border-radius: 12px 12px 0 0;
    display: flex;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.green-card-video {
    width: 240px;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: #1a1a1a;
    font-size: 18px;
}

.green-play-btn:hover {
    transform: scale(1.1);
}

/* Elegant Catalog Card Styles - Navy/Gold Theme */
@media (min-width: 992px) {
    .catalog-elegant {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: clamp(12px, 1.2vw, 25px);
        border: 1px solid rgba(201, 169, 98, 0.2);
    }

    .catalog-icon-wrapper {
        width: clamp(32px, 3vw, 55px);
        height: clamp(32px, 3vw, 55px);
        background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%);
        border-radius: clamp(8px, 0.8vw, 14px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(6px, 0.6vw, 12px);
        box-shadow: 0 4px 12px rgba(201, 169, 98, 0.3);
        transition: transform 0.3s ease;
    }

    .catalog-elegant:hover .catalog-icon-wrapper {
        transform: translateY(-2px) rotate(3deg);
    }

    .catalog-icon-wrapper i {
        font-size: clamp(14px, 1.4vw, 26px);
        color: #0A1628;
    }

    .catalog-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0A1628 0%, #1A2D4D 100%);
        color: #C9A962;
        padding: clamp(2px, 0.3vw, 5px) clamp(8px, 0.8vw, 14px);
        border-radius: 50px;
        font-size: clamp(7px, 0.6vw, 10px);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: clamp(4px, 0.5vw, 10px);
    }

    .catalog-elegant .green-card-title {
        font-size: clamp(11px, 1vw, 15px);
        margin-bottom: clamp(8px, 0.8vw, 14px) !important;
    }

    .catalog-download-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%);
        color: #0A1628;
        height: clamp(28px, 2.5vw, 44px);
        border-radius: clamp(6px, 0.6vw, 10px);
        font-weight: 600;
        font-size: clamp(10px, 0.9vw, 14px);
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(201, 169, 98, 0.3);
    }

    .catalog-download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(201, 169, 98, 0.4);
        color: #0A1628;
    }

    .catalog-download-btn.disabled {
        background: #e0e0e0;
        color: #999;
        cursor: not-allowed;
        box-shadow: none;
    }

    .catalog-note {
        font-size: clamp(8px, 0.6vw, 11px);
        color: #8B9EB5;
        margin-top: clamp(6px, 0.5vw, 10px);
        margin-bottom: 0;
    }
}

/* Mobile Catalog Card - Navy/Gold Theme */
@media (max-width: 991px) {
    .catalog-icon-wrapper {
        display: none;
    }

    .catalog-badge {
        display: none;
    }

    .catalog-note {
        display: none;
    }

    .catalog-download-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #C9A962;
        color: #0A1628;
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 13px;
        text-decoration: none;
        width: auto;
        height: auto;
    }
}

.green-card-content {
    flex: 1;
    padding: 20px;
}

.green-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0A1628;
    margin-bottom: 15px;
    line-height: 1.4;
}

.green-card-title span {
    color: #C9A962;
}

.green-form {
    display: flex;
    gap: 10px;
}

.green-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(10, 22, 40, 0.15);
    border-radius: 4px;
    font-size: 13px;
    outline: none;
}

.green-input:focus {
    border-color: #C9A962;
}

.green-submit {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: #C9A962;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0A1628;
    transition: background 0.3s ease;
}

.green-submit:hover {
    background: #D4BA7A;
}

.green-terms {
    font-size: 11px;
    color: #8B9EB5;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .green-headline {
        font-size: 42px;
    }

    .green-hero-overlay {
        padding: 40px 50px;
    }
}

@media (max-width: 991px) {

    /* Main Container - Full viewport height on mobile */
    .green-hero {
        display: block;
        height: 100vh;
        min-height: 600px;
        /* Ensure content fits */
        position: relative;
        overflow: hidden;
    }

    /* Right Panel -> Becomes Background Slider */
    .green-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100% !important;
        z-index: 1;
    }

    /* Dark Overlay for readability */
    .green-hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(14, 23, 31, 0.75);
        /* Darker overlay for better text contrast */
        z-index: 2;
        pointer-events: none;
    }

    .green-slider,
    .green-slider .swiper-wrapper,
    .green-slider .swiper-slide,
    .green-slider .swiper-slide img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* Left Panel -> Becomes Overlay Content */
    .green-hero-overlay {
        position: relative;
        z-index: 10;
        width: 100%;
        height: 100%;
        background: transparent !important;
        padding: 60px 20px 140px;
        /* Adjusted padding */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Center align for mobile */
        text-align: center;
        pointer-events: none;
    }

    .green-hero-overlay>* {
        pointer-events: auto;
    }

    /* Hide Desktop Decorations */
    .green-hero-overlay::before,
    .green-hero-overlay::after {
        display: none;
    }


    /* Typography Adjustments */
    .green-headline {
        font-size: 40px;
        /* User requested size */
        line-height: 1.2;
        color: #fff;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        margin-bottom: 25px;
    }

    .green-headline span {
        color: #4DD0E1;
    }

    .green-tagline {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 15px;
        font-size: 11px;
    }

    .green-buttons {
        justify-content: center;
    }

    /* Compact Catalog Card Redesign */
    .green-card {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 20;
        margin: 0;
        flex-direction: row;
    }

    .green-card-video {
        display: none !important;
        /* Hide image as requested */
    }

    .green-card-content {
        padding: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: row;
        /* Horizontal layout */
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    /* Hide generic labels */
    .green-card-content h5,
    .green-terms {
        display: none;
    }

    .green-card-title {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        text-align: left;
    }

    /* Add subtext via pseudo-element or just assume title is enough */
    .green-card-title::after {
        content: 'Hizmet Kataloğu';
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: #666;
        margin-top: 2px;
    }

    .green-card-content a {
        width: auto !important;
        background: #00BCD4 !important;
        color: #fff !important;
        height: 40px !important;
        padding: 0 20px !important;
        border-radius: 10px !important;
        font-size: 13px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
        /* Override inline styles */
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .green-headline {
        font-size: 24px;
        /* Optimized for phones */
    }

    .green-hero-overlay {
        padding: 60px 20px 130px;
    }

    .green-card {
        width: 94%;
        bottom: 20px;
    }

    .green-card-title::after {
        content: 'İndir & İncele';
        /* Shorter text for small screens */
    }
}

/* =====================================================
   PROJECTS SLIDER SECTION - Navy/Gold Theme
   ===================================================== */
.projects-section-padding {
    padding-bottom: 80px;
    overflow: hidden;
}

.watermark-text {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(10, 22, 40, 0.03);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

.projects-container-rounded {
    background: linear-gradient(135deg, #0A1628 0%, #1A2D4D 100%);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.sub-title-green {
    display: block;
    color: #C9A962;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.projects-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.projects-desc-center {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.project-nav-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.project-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    color: #C9A962;
    transition: all 0.3s;
    font-size: 20px;
}

.project-nav-btn:hover {
    background: #C9A962;
    color: #0A1628;
    border-color: #C9A962;
}

.project-slider {
    margin-top: 50px;
    overflow: visible;
}

.project-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
}

.project-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-img-card:hover img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 22, 40, 0.95);
    padding: 20px;
    border-radius: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.project-img-card:hover .project-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-cat {
    display: block;
    font-size: 12px;
    color: #C9A962;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.project-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.project-zoom-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #C9A962;
    color: #0A1628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.projects-footer-quote {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.projects-footer-quote a {
    color: #C9A962;
}

.badge-free-quote {
    background: #C9A962;
    color: #0A1628;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
}

@media (max-width: 991px) {
    .watermark-text {
        font-size: 100px;
        top: -30px;
    }

    .projects-container-rounded {
        padding: 40px 20px;
    }

    .projects-title {
        font-size: 32px;
    }

    .project-nav-wrapper {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

/* =====================================================
   ABOUT SPLIT SECTION MOBILE FIXES (Geleceğin Yapıları)
   ===================================================== */
@media (max-width: 991px) {
    .about-split-content-wrapper {
        padding: 40px 20px !important;
        text-align: center;
    }

    .about-headline {
        font-size: 26px !important;
        /* Compact headline */
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        word-wrap: break-word;
        /* Prevent overflow */
    }

    .about-tagline {
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px !important;
        font-size: 11px;
        letter-spacing: 1px;
        width: auto;
    }

    /* Hide stats header tagline and icon on mobile */
    .stats-section-header {
        display: none !important;
    }

    .stats-icon-green {
        display: none !important;
    }

    .about-desc {
        font-size: 14px !important;
        line-height: 1.5;
        margin-bottom: 20px !important;
        padding: 0 10px;
    }

    /* Stats Section - Headline & Button Mobile Consistency */
    .taller-headline {
        font-size: 24px !important;
        line-height: 1.2;
        color: #212529;
        margin-bottom: 15px;
    }

    .btn-dark-pill {
        background-color: #00BCD4 !important;
        color: #fff !important;
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 50px;
    }

    /* Stats Numbers Mobile */
    .stat-big-number {
        font-size: 36px !important;
        color: #00BCD4 !important;
        font-weight: 800;
    }

    .stat-label-title {
        font-size: 13px !important;
        color: #6c757d;
    }

    .stat-list-item {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Compact Checklist - Navy Blue & Gold Theme */
    .custom-checklist {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
        text-align: left;
        background: #0A1628;
        padding: 20px;
        border-radius: 12px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid rgba(201, 169, 98, 0.2);
    }

    .custom-checklist-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

    .custom-checklist-item span {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
    }

    .check-icon-circle {
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%);
        color: #0A1628;
        border-radius: 50%;
        font-size: 11px;
        font-weight: bold;
    }

    /* CTA Buttons */
    .phone-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
        justify-content: center;
        width: 100%;
    }

    .phone-cta-group .btn-modern {
        width: 100%;
        /* Full width button */
        justify-content: center;
        padding: 12px 20px !important;
        font-size: 14px;
    }

    .phone-icon-round {
        width: 40px;
        height: 40px;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #00BCD4;
        font-size: 18px;
    }

    .phone-cta-group .d-flex {
        display: flex;
        /* Ensure it overrides bootstrap d-flex if needed, or just utility */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px !important;
    }

    /* Reduce spacing between breadcrumb and content on mobile */
    .page-title-section {
        padding: 100px 0 30px !important;
    }

    .about-main {
        padding: 30px 0 !important;
    }

    .page-title-section .page-heading {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }

    .page-title-section .page-subheading {
        font-size: 1rem !important;
    }
}