/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', serif, Arial;
}

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* Header & Nav Düzenlemesi */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 1000; /* Slider ve diğer her şeyin üstünde olması için */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links > li {
    position: relative;
    margin: 0 12px;
}

.nav-links > li > a {
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    transition: 0.3s;
}

/* Mega/Drop Menü Tasarımı */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(26, 26, 26, 0.98);
    min-width: 250px;
    padding: 20px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.4s ease;
    border-top: 2px solid #21b24b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown li a {
    display: block;
    color: #bbbbbb;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.dropdown li a:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 30px;
}

/* Hover'da Açılma */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links > li > a:hover {
    color: #21b24b;
}

/* Hamburger Butonu */
.hamburger {
    display: none; /* Masaüstünde gizli */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: 0.4s;
}

/* --- MOBİL TASARIM (Hamburger Aktif) --- */
@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%; /* Kapalıyken dışarıda */
        width: 100%;
        height: 100vh;
        background-color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
    }

    .nav-container.active {
        right: 0; /* Açıldığında ekrana gelir */
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .nav-links > li {
        margin: 15px 0;
    }

    .nav-links > li > a {
        font-size: 1.5rem; /* Mobilde daha büyük font */
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 10px 0;
        display: none; /* Mobilde tıklandığında açılması için kapalı tuttuk */
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }

    /* Hamburger Animasyonu */
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: 40px; /* Navigasyon ile dil seçici arasındaki boşluk */
    z-index: 100;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    padding: 10px 0;
}

.arrow {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ffffff;
    margin-left: 8px;
    transition: 0.3s ease;
}

/* Dropdown Menü */
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1a1a1a; /* Sayfa karardığında görünmesi için koyu ton */
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lang-dropdown a {
    display: block;
    color: #ffffff;
    padding: 12px 15px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    transition: 0.2s;
}

.lang-dropdown a:hover {
    background-color: #333;
    color: #21b24b; /* Lüks vurgusu için altın tonu */
}

/* Hover Efekti */
.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher:hover .arrow {
    transform: rotate(180deg);
}

.logo img { height: 50px; margin-top: 20px; filter: brightness(0) invert(1); }

nav a {
    text-decoration: none;
    color: #ffffff;
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.multiply-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2; /* Slider içeriğinin altında kalması için */
}

/* Swiper Hero Slider */
.hero-fixed-video {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-slider.swiper {
    position: relative;
    z-index: 3;
    height: 100%;
    background: transparent;
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 15%;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
    opacity: 0.8;
}

.slide-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Swiper Noktaları Tasarımı */
.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.3 !important;
}
.swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.2);
}
/* New About Section */
.main-about-new {
    padding: 100px 0;
    background-color: #4d5d60;
    overflow: hidden;
}

.about-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text-col {
    flex: 1;
}

.about-subtitle {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: #888;
    margin-bottom: 20px;
}

.about-text-col h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.about-desc p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.btn-luxury-dark {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: all 0.4s ease;
}

.btn-luxury-dark:hover {
    background: #444;
    transform: translateY(-3px);
}

/* Right Asymmetric Box */
.about-video-col {
    flex: 1;
    position: relative;
}

.asymmetric-box {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
}

.video-poster-wrapper {
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 5;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%); /* Asimetrik Kesim */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.poster-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.asymmetric-box:hover .poster-img {
    transform: scale(1.1);
}

.play-btn-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-decoration: none;
}

.play-icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.play-icon-circle:hover {
    transform: scale(1.15);
    background: #1a1a1a;
    color: #fff;
}

/* Arka plandaki dekoratif kare */
.box-decoration {
    position: absolute;
    top: 100px;
    right: -30px;
    width: 100%;
    height: 70%;
    border: 1px solid #d1d1d1;
    z-index: 1;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .about-flex-wrapper { flex-direction: column; gap: 50px; }
    .about-text-col { text-align: center; }
    .asymmetric-box { margin: 0 auto; }
}

/* Slogan Section */
.main-slogan { padding: 100px 5%; background: #fff; }
.slogan-container { display: flex; align-items: center; max-width: 1440px; margin: 0 auto; }
.slogan-image { flex: 1; padding-right: 50px; }
.slogan-image img { width: 100%; height: 600px; object-fit: cover; box-shadow: 20px 20px 0px #f4f4f4; }
.slogan-text { flex: 1; padding-left: 50px; }
.big-slogan { font-size: 4.5rem; line-height: 1; margin: 20px 0; }
.line-decorator { width: 60px; height: 2px; background: #1a1a1a; margin-top: 30px; }

/* Stats Section */
.main-stats { display: flex; width: 100%; }
.stats-container { display: flex; width: 100%;}
.stat-item { flex: 1; position: relative; height: 480px; overflow: hidden; }
.stat-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.stat-item:hover .stat-image img { transform: scale(1.05); }
.stat-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; color: #fff; text-align: center; }
.stat-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.stat-text { position: relative; z-index: 3; }
.stat-number { font-size: 8rem; font-weight: 700; letter-spacing: -5px; line-height: 1; }
.stat-unit { font-size: 2rem; vertical-align: super; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content { width: 90%; text-align: center; padding-left: 5%; }
    .slogan-container, .stats-container { flex-direction: column; }
    .stat-item { height: 50vh; }
    .big-slogan { font-size: 3rem; }
}




/* Main Products Section - Tam Ekran Ayarı */


.products-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Flickity Temizliği ve Tam Ekran */
.main-products {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
    overflow: hidden;
}

.products-carousel {
    width: 100vw !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Slide Genişlikleri - BREAKPOINTS */
.product-card {
    width: 100%; /* Mobil: 1 ürün */
    height: 650px;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 640px) { .product-card { width: 50%; } } /* Tablet: 2 ürün */
@media (min-width: 1024px) { .product-card { width: 33.33%; } } /* Masaüstü: 3 ürün */
@media (min-width: 1440px) { .product-card { width: 25%; } } /* Geniş Ekran: 4 ürün */

.product-image, .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay & Info (Aynen Korundu) */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
    z-index: 1;
}

.product-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 50px 40px;
    color: #ffffff; z-index: 2;
}

.product-info h3 { font-size: 1.8rem; font-weight: 400; margin-bottom: 5px; }
.product-info p { font-size: 0.85rem; opacity: 0.8; text-transform: uppercase; margin-bottom: 25px; }

.view-details {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff; text-decoration: none;
    font-size: 10px; letter-spacing: 2px;
    transition: 0.3s;
}

.view-details:hover { background: #fff; color: #000; }

/* Flickity Oklarını Seray Tekstil Tarzına Uyduralım */
.flickity-prev-next-button {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0; /* Kare oklar daha lüks durur */
    transition: 0.3s;
}
.flickity-prev-next-button:hover { background: #fff; }
.flickity-prev-next-button .arrow { fill: white; }
.flickity-prev-next-button:hover .arrow { fill: black; }

.flickity-prev-next-button.previous { left: 0; }
.flickity-prev-next-button.next { right: 0; }
/* Main Global Section - İkinci İstatistik Alanı */
.main-global {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.global-container {
    display: flex;
    width: 100%;
}

.global-item {
    flex: 1; /* İki tarafı eşit böler */
    position: relative;
    height: 70vh; /* Ekran yüksekliğinin %70'i */
    overflow: hidden;
}

.global-image {
    width: 100%;
    height: 100%;
}

.global-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; /* Hover efekti için */
}

/* Stat metinlerinin bulunduğu alan */
.global-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Dikeyde ortalar */
    justify-content: center; /* Yatayda ortalar */
    z-index: 2;
}

/* Yazıların okunması için arka plan karartması */
.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Hafif karartma */
    z-index: 1;
}

.global-text {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    max-width: 80%; /* Yazıların kenarlara yapışmaması için */
    padding: 20px;
}

/* Sayıların stili */
.global-number {
    font-size: 8rem; /* Oldukça büyük ve çarpıcı */
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    letter-spacing: -5px;
}

.global-unit {
    font-size: 2.5rem;
    font-weight: 400;
    text-transform: uppercase;
    vertical-align: super; /* Sayının yanına üst simge gibi yerleştirir */
    margin-left: 0;
    letter-spacing: 2px;
    color: #a5d6a7; /* Soft bir yeşil tonu (Kalite algısı için) */
}

.global-title {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
}

.global-desc {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto; /* Ortalar */
}

/* Hover Efekti: Resim hafifçe büyür */
.global-item:hover .global-image img {
    transform: scale(1.05);
}

/* Responsive Düzenleme */
@media (max-width: 992px) {
    .global-container {
        flex-direction: column; /* Mobilde alt alta */
    }
    .global-item {
        height: 50vh; /* Mobilde yükseklik azalır */
    }
    .global-number {
        font-size: 5rem; /* Sayılar küçülür */
    }
    .global-title {
        font-size: 1.4rem;
    }
}
/* Main Sustainability Section */
.main-sustainability {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Tam ekran yükseklik */
    overflow: hidden;
}

/* Video Arka Planı Sabitleme */
.sustain-video-bg {
    position: absolute; /* Kapsayıcıya göre tam ekran */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sustain-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Video parallax etkisini tarayıcı bazlı simüle etmek için */
    position: fixed; 
    top: 0;
    left: 0;
}

.sustain-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,25,0,0.5), rgba(0,0,0,0.7));
    z-index: 2; /* Videonun üstünde, metnin altında */
}

/* Metin Katmanı */
.sustain-content-wrapper {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
}

.sustain-content {
    color: #ffffff;
    max-width: 900px;
    padding: 0 40px;
}

.sustain-tag {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    color: #a5d6a7; 
    margin-bottom: 20px;
}

.sustain-content h2 {
    font-size: 3.5rem;
    font-weight: 300; /* Daha lüks bir görünüm için incelttim */
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.sustain-line {
    width: 80px;
    height: 1px;
    background-color: #ffffff;
    margin: 0 auto 35px;
    opacity: 0.6;
}

.sustain-text {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 45px;
    letter-spacing: 0.5px;
}

.btn-sustain {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    transition: 0.4s ease;
}

.btn-sustain:hover {
    background-color: #ffffff;
    color: #000;
}

/* Responsive - Mobilde Video Parallax Performansı İçin */
@media (max-width: 991px) {
    .sustain-video-bg video {
        position: absolute; /* Mobilde 'fixed' performansı bozar */
    }
    .main-sustainability {
        min-height: auto;
    }
    .sustain-content h2 { font-size: 2.2rem; }
    .sustain-text { font-size: 1.1rem; }
}

/* Footer Global Styling */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 100px 0 0 0;
    width: 100%;
    margin-top: 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px; /* Sütunlar arası boşluk */
}

.footer-col {
    flex: 1;
    min-width: 180px; /* Daha fazla sütun için minimum genişliği daralttım */
}

.footer-col.brand-info {
    flex: 1; /* Marka açıklamasına biraz daha alan tanıdım */
    min-width: 250px;
}

.footer h4 {
    font-size: 11px; /* Daha minimalist lüks görünüm */
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    text-decoration: none;
    color: #888;
    font-size: 12px; /* Liste yazı boyutu */
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul li a:hover {
    color: #21b24b; /* Gold tonuna geçiş */
    padding-left: 5px;
}
.footer-social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}
/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    margin-top: 80px;
}

.footer-social-links a {
    display: inline-block;
    margin-right: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.footer-social-links a i {
    font-size: 18px;
}

.footer-social-links a:hover {
    color: #21b24b; /* Lüks altın tonu */
    transition: 0.3s ease;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2'li düzen */
    }
    .footer-col.brand-info {
        grid-column: span 2;
        text-align: center;
    }
}

.footer-logo img {
    height: 200px;
    margin-bottom: 30px;
}

.brand-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #888;
    margin-bottom: 30px;
    max-width: 300px;
}


.social-links a {
    display: inline-block;
    margin-right: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.social-links a:hover {
    color: #21b24b; /* Lüks altın tonu */
}

.contact-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}


.bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.8rem;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.legal-links a:hover {
    color: #ffffff;
}






/* --- ALT SAYFA (INNER PAGE) TASARIMI --- */

/* Alt sayfa genel ayarları */
.inner-page main {
    padding-top: 0; /* Header absolute olduğu için */
}

/* Page Hero: Sayfa başlığı alanı */
.page-hero {
    height: 65vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #003841; /* Geçici arka plan rengi, resim yüklenene kadar */
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-title-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 0 5%;
}

.hero-title-content .mini-tag {
    display: block;
    font-size: 26px;
    letter-spacing: 5px;
    color: #21b24b;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title-content h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Intro Text Area: Giriş metni modülü */
.inner-intro-section {
    padding: 120px 0;
    background: #ffffff;
    text-align: left;
}

.container-narrow {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    font-family: "Montserrat", sans-serif;
}

.inner-intro-section h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.inner-intro-section .lead-text {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 45px;
    font-weight: 300;
    font-style: italic;
}

.container-narrow h1,
.content-body-text h1 {
    font-size: 2.3rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.container-narrow h2,
.content-body-text h2 {
    font-size: 2rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.container-narrow h3,
.content-body-text h3 {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.container-narrow p,
.content-body-text p {
    font-size: 1rem;
    line-height: 1;
    color: #666;
    margin-bottom: 25px;
}

.container-narrow p strong,
.content-body-text p strong {
    font-weight: 600;
}

.content-body-text ul {
    list-style: none;
    padding-left: 0;
}

.content-body-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    text-align: left;
}

.content-body-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 30px;
    background-image: url('../logo/logo-s.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.certificates-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.certificates-grid img {
    height: 50px;
    object-fit: contain;
}

.inner-split-row {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    width: 100%;
}

.inner-split-img {
    flex: 1.3;
    height: 700px;
    overflow: hidden;
}

.inner-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-split-content {
    flex: 1;
    padding: 100px 8%;
}

.inner-split-content h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.inner-split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.inner-btn-dark {
    display: inline-block;
    padding: 18px 45px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: 0.4s;
}

.inner-btn-dark:hover {
    background: #21b24b;
    color: #ffffff;
}

/* Responsive Alt Sayfa */
@media (max-width: 1024px) {
    .inner-split-row {
        flex-direction: column;
    }
    .inner-split-img {
        width: 100%;
        height: 450px;
    }
    .hero-title-content h1 {
        font-size: 3rem;
    }
    .inner-intro-section h2 {
        font-size: 2rem;
    }
}

.contact-flex-container { display: flex; flex-wrap: wrap; gap: 100px; align-items: flex-start; margin-top: 100px;}
.contact-form-side { flex: 1; min-width: 350px; width: 50%;}
.contact-info-side { width: 350px; border-left: 1px solid #eee; padding-left: 60px; }

/* Form Stilleri */
.form-row { display: flex; gap: 30px; }
.form-group.half { flex: 1; }
.form-group.full { width: 100%; margin-top: 25px; }
.form-underline {
    width: 100%; border: none; border-bottom: 1px solid #ddd; padding: 12px 0;
    font-family: 'Barlow'; background: transparent; outline: none; transition: 0.3s;
}
.form-underline:focus { border-bottom-color: #333; }
label { font-size: 10px; letter-spacing: 1.5px; color: #999; display: block; margin-top: 15px; }

/* Bilgi Blokları */
.info-block { margin-bottom: 45px; }
.info-block h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 12px; color: #111; }
.info-block p { font-size: 14px; color: #666; margin-bottom: 8px; line-height: 1.6; }
.tel-link { color: #333; text-decoration: none; font-size: 14px; transition: 0.3s; display: block; }
.tel-link:hover { color: #21b24b; }

/* Harita Üstü Butonlar */
.bottom-map-section { position: relative; margin-top: 50px;}
.map-selector-overlay-bottom { position: absolute; top: 20px; left: 0; width: 100%; display: flex; justify-content: center; z-index: 5; }
.map-btns-group { background: #fff; padding: 5px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 2px; }
.map-nav-btn { background: none; border: none; padding: 12px 20px; font-family: 'Barlow'; font-size: 10px; letter-spacing: 1px; cursor: pointer; transition: 0.3s; }
.map-nav-btn.active { color: #21b24b; font-weight: 700; }

/* Responsive */
@media (max-width: 992px) {
    .contact-flex-container { gap: 50px; }
    .contact-info-side { width: 100%; border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 50px; }
    .contact-form-side { min-width: 100%; }
    .form-row { flex-direction: column; gap: 0; }
}
.small-label { font-size: 10px; letter-spacing: 1.5px; color: #999; display: block; margin-bottom: 5px; }
.form-underline {
    border: none; border-bottom: 1px solid #ddd; padding: 10px 0;
    font-family: 'Barlow', sans-serif; background: transparent; outline: none; transition: 0.3s;
}
.form-underline:focus { border-bottom-color: #333; }

.letter-spacing-1 { letter-spacing: 1.5px; }
.tel-link { color: #333; text-decoration: none; font-size: 14px; transition: 0.3s; }
.tel-link:hover { color: #21b24b; transform: translateX(5px); }

/* Büyük ekranlarda sol sütun ile sağ sütun arasındaki dikey çizgi */
@media (min-width: 992px) {
    .border-left-lg { border-left: 1px solid #eee; }
}

/* Mobil düzenlemeleri */
@media (max-width: 991px) {
    .section-title { font-size: 1.8rem; }
    .contact-info-side { padding-top: 3rem; border-top: 1px solid #eee; }
}

