/*
Theme Name: Eliza Yacht Premium 2026
Theme URI: https://elizayacht.com
Author: Aslan Kardeşler Dijital
Author URI: https://elizayacht.com
Description: Eliza Yacht Kemer için uluslararası Mavi Bayrak ve ISO 9001 standartlarına uygun, ultra lüks, mobil öncelikli özel tasarım teması.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: eliza-theme
*/

/* ==========================================================================
   1. KÖK DEĞİŞKENLER (CSS VARIABLES) - Sitenin DNA'sı
   ========================================================================== */
:root {
    /* Renk Paleti */
    --color-navy: #0A192F;          /* Derin Gece Mavisi */
    --color-navy-light: #112240;    /* Açık Gece Mavisi (Kart arkaplanları) */
    --color-gold: #C5A880;          /* Şampanya Altını */
    --color-gold-hover: #DBC4A1;    /* Parlak Altın (Hover) */
    --color-white: #FFFFFF;
    --color-pearl: #F8F9FA;         /* İnci Beyazı (Açık arkaplanlar) */
    --color-text-dark: #2C3E50;     /* Koyu Metin */
    --color-text-light: #E0E6ED;    /* Açık Metin */
    --color-border: rgba(255, 255, 255, 0.1);

    /* Tipografi */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Ölçüler & Boşluklar */
    --container-width: 1200px;
    --space-xs: 0.5rem;   
    --space-sm: 1rem;     
    --space-md: 2rem;     
    --space-lg: 4rem;     
    --space-xl: 6rem;

    /* Efektler */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 40px rgba(10, 25, 47, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ==========================================================================
   2. TEMEL SIFIRLAMA VE YAPI (RESET & BASE)
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-pearl);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--color-navy);
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: var(--transition);
}

a:hover {
    color: var(--color-gold-hover);
}

ul {
    list-style: none;
}

/* Genel Konteyner ve Boşluklar */
.eliza-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section-padding {
    padding: var(--space-xl) 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.bg-light { background-color: var(--color-white); }
.mt-5 { margin-top: var(--space-lg); }

/* ==========================================================================
   3. BUTONLAR (LÜKS HİSSİYATI)
   ========================================================================== */
.btn-gold-solid, .btn-outline-white, .btn-outline-gold, .btn-whatsapp-solid {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-gold-solid {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: 2px solid var(--color-gold);
}
.btn-gold-solid:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}
.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}
.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-whatsapp-solid {
    background-color: #25D366;
    color: var(--color-white);
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-whatsapp-solid:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* ==========================================================================
   4. HEADER VE TOP BAR (VİTRİN)
   ========================================================================== */
.eliza-topbar {
    background-color: var(--color-navy);
    color: var(--color-text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.topbar-link {
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}
.topbar-link:hover { color: var(--color-gold); }
.topbar-divider { color: var(--color-border); }

.language-switcher {
    display: flex;
    gap: 10px;
}
.language-switcher a {
    color: var(--color-text-light);
    font-weight: 500;
}
.language-switcher .active a, .language-switcher a:hover {
    color: var(--color-gold);
}

/* Ana Menü - Glassmorphism */
.eliza-site-header {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 50px;
    width: auto;
}

.eliza-menu {
    display: flex;
    gap: 30px;
}

.eliza-menu a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.eliza-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.eliza-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   5. HERO BÖLÜMÜ (ANA EKRAN)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.6), rgba(10, 25, 47, 0.9));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    display: block;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================================================
   6. GÜVEN BARI (TRUST BAR - PDF BİLGİLERİ)
   ========================================================================== */
.trust-bar-section {
    background-color: var(--color-navy);
    padding: var(--space-md) 0;
    color: var(--color-white);
    position: relative;
    margin-top: -50px; /* Hero'nun üstüne bindirme efekti */
    z-index: 10;
    box-shadow: var(--shadow-heavy);
}

.trust-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 20px;
}

.trust-icon {
    font-size: 2.5rem;
}

.trust-text strong {
    display: block;
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background-color: var(--color-border);
}

/* ==========================================================================
   7. YAT KARTLARI (FİLOMUZ)
   ========================================================================== */
.section-subtitle {
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-lead {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.yacht-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.yacht-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.yacht-card:hover .yacht-image img {
    transform: scale(1.05);
}

.yacht-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-gold);
    color: var(--color-navy);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.yacht-details {
    padding: 30px;
}

.yacht-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.yacht-excerpt {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.yacht-features-list {
    margin-bottom: 25px;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    padding: 15px 0;
}

.yacht-features-list li {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-link {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   8. DENEYİM VE ROTALAR (EXPERIENCE)
   ========================================================================== */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-navy);
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
}

.experience-gallery {
    display: flex;
    gap: 20px;
    position: relative;
}

.experience-gallery img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.exp-img-1 { width: 60%; height: 400px; z-index: 2; }
.exp-img-2 { width: 50%; height: 300px; position: absolute; right: 0; bottom: -40px; z-index: 3; border: 10px solid var(--color-white); }

/* ==========================================================================
   9. FOOTER (ALT KISIM)
   ========================================================================== */
.eliza-site-footer {
    background-color: var(--color-navy);
    color: var(--color-text-light);
    padding-top: var(--space-xl);
}

.footer-widgets-area {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.widget-title {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 2px;
    background-color: var(--color-gold);
}

.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: var(--color-text-light); font-size: 0.9rem; }
.footer-menu a:hover { color: var(--color-gold); padding-left: 5px; }

.contact-details li {
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.contact-details strong { color: var(--color-gold); }
.contact-details a { color: var(--color-text-light); }

.trust-badges-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.badge-icon { font-size: 1.8rem; }
.badge-text { font-size: 0.85rem; font-weight: 600; color: var(--color-white); }

.footer-bottom {
    background-color: #06101f;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   10. YÜZEN WHATSAPP BUTONU
   ========================================================================== */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* ==========================================================================
   11. MOBİL UYUMLULUK (MEDIA QUERIES) - Kusursuz Responsive Yapı
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .experience-grid { grid-template-columns: 1fr; }
    .footer-widgets-area { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .topbar-contact, .topbar-divider { display: none; } /* Mobilde çok yer kaplamasın */
    .topbar-inner { justify-content: flex-end; }
    
    .eliza-menu { display: none; /* Mobil menü JS ile açılacak */ }
    .header-cta { display: none; }
    .menu-toggle { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    
    .trust-bar-inner { flex-direction: column; gap: 20px; }
    .trust-divider { width: 100%; height: 1px; }
    .trust-bar-section { margin-top: 0; }
    
    .experience-features { grid-template-columns: 1fr; }
    .experience-gallery { flex-direction: column; }
    .exp-img-1, .exp-img-2 { width: 100%; position: static; border: none; }
    
    .footer-widgets-area { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .widget-title::after { left: 50%; transform: translateX(-50%); }
}
/* ==========================================================================
   YENİ ZIGZAG (KOYLAR) BÖLÜMÜ EKLENTİSİ
   ========================================================================== */
.zigzag-bays-section {
    background-color: var(--color-white);
}

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Bu 'reverse' sınıfı sayesinde fotoğraf sağa, yazı sola geçer (Sihir burada) */
.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.zigzag-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.zigzag-image:hover img {
    transform: scale(1.03);
}

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

.zigzag-content h3 {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.zigzag-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* CTA Bölümünü Daha Lüks Yapalım */
.cta-booking-section {
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: var(--color-white);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.cta-title { color: var(--color-gold); font-size: 2.5rem; }
.cta-desc { font-size: 1.2rem; color: var(--color-text-light); margin-bottom: 30px; }
.cta-or { margin: 0 15px; font-style: italic; color: var(--color-text-light); }

/* Mobilde Zigzag Bozulmasın Diye */
@media (max-width: 768px) {
    .zigzag-row, .zigzag-row.reverse {
        flex-direction: column; /* Mobilde her şey alt alta gelsin */
        gap: 30px;
        margin-bottom: 50px;
    }
    .zigzag-image img { height: 250px; }
    .cta-box { padding: 30px 20px; }
    .booking-form-wrapper { display: flex; flex-direction: column; gap: 15px; }
    .cta-or { display: none; }
}
/* ==========================================================================
   MOBİL MENÜ ANİMASYONU VE JAVASCRIPT DESTEĞİ
   ========================================================================== */
@media (max-width: 768px) {
    /* Ana menüyü mobilde ekranın sağına sakla */
    .eliza-menu {
        display: flex !important; 
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%; /* Ekranın tamamen sağında gizli */
        width: 80%; /* Ekranın yüzde 80'ini kaplasın */
        max-width: 350px;
        height: 100vh;
        background-color: var(--color-navy);
        padding: 100px 30px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        /* Kayma animasyonunun hızı */
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 998; 
    }

    /* JS tarafından eklenecek 'is-open' sınıfı ile menüyü ekranın içine çek */
    .eliza-menu.is-open {
        right: 0;
    }

    .eliza-menu li {
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 10px;
    }

    .eliza-menu a {
        font-size: 1.2rem;
        display: block;
    }

    /* Hamburger İkonunu (Üç Çizgi) Konumlandırma */
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1000; /* Menünün üstünde kalsın ki kapatabilelim */
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
        width: 30px;
        height: 3px;
        background-color: var(--color-gold);
        position: absolute;
        transition: transform 0.3s, background-color 0.3s;
        border-radius: 4px;
    }

    .hamburger-inner { top: 50%; transform: translateY(-50%); }
    .hamburger-inner::before { content: ""; top: -8px; left: 0; }
    .hamburger-inner::after { content: ""; bottom: -8px; left: 0; }

    /* Menü açıkken üç çizgiyi (X) işaretine dönüştürme animasyonu */
    .menu-toggle.is-active .hamburger-inner { background-color: transparent; }
    .menu-toggle.is-active .hamburger-inner::before { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .hamburger-inner::after { transform: translateY(-8px) rotate(-45deg); }

    /* Menü açıkken arkadaki sitenin kaymasını kilitleme */
    body.menu-open-lock {
        overflow: hidden;
    }
}
/* Hero Ana Kapsayıcı - Bunu relative yapmazsak video uçar gider! */
.hero-section {
    position: relative; 
    height: 100vh; /* Tam ekran yapalım hazır el değmişken */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden; /* Dışarı taşan videoyu keser */
}

/* Videoyu Yazının Arkasına Atan Sihirli Kod */
.hero-background-video {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: -2; /* Yazıların arkasına gömer */
}

.hero-background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu yamultmadan ekranı tam doldurur */
    pointer-events: none; /* Yanlışlıkla videoya tıklanmasını engeller */
}

/* Yazı okunsun diye videonun üstüne çektiğimiz koyu film tabakası */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,25,47,0.5), rgba(10,25,47,0.8));
    z-index: -1;
}

/* Yazıların önde kalmasını garanti edelim */
.hero-content {
    position: relative;
    z-index: 1;
}
/* ==========================================================================
   FİNAL DOKUNUŞ: ŞEFFAF HEADER VE YAZI PARLATMA
   ========================================================================== */

/* 1. HEADER'I VİDEONUN ÜSTÜNE BİNDİRME (ŞEFFAFLIK) */
.eliza-site-header {
    position: fixed !important; /* Header'ı sayfanın tepesine çiviler, videoyu altına alır */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999; /* Her şeyin üstünde kalsın */
    transition: all 0.4s ease-in-out; /* Renk değişirken yağ gibi aksın */
}

/* Sayfa en üstteyken (Şeffaf Hal) */
.eliza-site-header.header-transparent {
    background-color: transparent !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Altına çok ince lüks bir cam çizgisi */
    padding: 20px 0; /* Tepedeyken biraz daha ferah dursun */
}

/* Sayfa aşağı kaydırıldığında (Lacivert Cam Hali) - main.js bu sınıfı ekler */
.eliza-site-header.header-transparent.scrolled {
    background-color: rgba(10, 25, 47, 0.95) !important; /* Gece mavisi cam */
    backdrop-filter: blur(10px); /* Arkayı buğulu gösterir */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
    border-bottom: none;
    padding: 10px 0; /* Aşağı inince kibarca daralsın */
}

/* 2. YAZILARI VİDEODAN KURTARMA (KONTRAST VE GÖLGE) */

/* Videonun üstündeki siyah film tabakasını BİRAZ daha koyulaştırıyoruz ki beyaz köpükler yazıyı yutmasın */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,25,47,0.6), rgba(10,25,47,0.85));
    z-index: -1;
}

/* Yazılara lüks bir siyah gölge (Drop Shadow) atıyoruz. 
   Arkadaki video bembeyaz bile olsa bu yazılar jilet gibi okunacak! */
.hero-title, .hero-subtitle, .hero-description {
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.8);
}

.hero-title .text-gold {
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.9); /* Altın rengi daha da belirginleşsin */
}
/* Top Bar'ı komple siliyoruz, CSS'ten o blokları kaldırabilirsin */
.eliza-topbar { display: none !important; }

/* Header İç Yerleşimi */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px; /* Dil ve Buton arası boşluk */
}

/* Dil Listesi Stili */
.lang-list {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-list li a {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0.7;
}

.lang-list li.active a,
.lang-list li a:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* Mobilde dil seçeneklerini gizlemek istersen (Kalabalık olmasın diye) */
@media (max-width: 768px) {
    .header-languages {
        display: none;
    }
    .header-right {
        gap: 15px;
    }
}
/* 1. Header Alt Çizgisini Kökten Kaldır */
.eliza-site-header, 
.eliza-site-header.header-transparent,
.eliza-site-header.scrolled {
    border-bottom: none !important;
    box-shadow: none !important; /* Eğer gölge de rahatsız ediyorsa */
}

/* 2. Dil Dropdown Tasarımı */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-current:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.lang-list {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    min-width: 60px;
    list-style: none;
    padding: 10px 0;
    margin: 5px 0 0 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Üstüne gelince açılma efekti */
.lang-dropdown:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li a {
    display: block;
    padding: 5px 15px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
}

.lang-list li a:hover {
    color: var(--color-gold);
    background: rgba(255,255,255,0.05);
}
/* Trust Bar Lüks Revizyon */
.premium-trust-bar {
    background: #06101f; /* Header'dan daha koyu bir navy */
    padding: 60px 0;
    margin-top: -80px; /* Hero'ya biniş payı */
    position: relative;
    z-index: 100;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.15); /* Çok ince altın çerçeve */
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.trust-icon-wrapper {
    margin-bottom: 20px;
}

.trust-info h3 {
    color: var(--color-gold);
    font-size: 1.1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.trust-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Lifestyle Section Lüks Ayarlar */
.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.premium-h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.gold-subtitle {
    color: var(--color-gold);
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.amenity strong {
    display: block;
    color: var(--color-navy);
    font-size: 1rem;
    margin-bottom: 10px;
}

.image-frame {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.image-frame img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 40px 40px 0px -10px var(--color-gold); /* Lüks altın çerçeve efekti */
}

/* Mobilde her şeyi alt alta al */
@media (max-width: 992px) {
    .trust-grid, .lifestyle-grid { grid-template-columns: 1fr; gap: 50px; }
    .premium-h2 { font-size: 2.5rem; }
}
/* --- Lüks Trust Bar Düzenlemesi --- */
.premium-trust-bar {
    background: #06101f;
    padding: 60px 0;
    margin-top: -80px; /* Hero üzerine bindirme */
    position: relative;
    z-index: 10;
}

.trust-card {
    border: 1px solid rgba(197, 168, 128, 0.2); /* Çok ince altın çerçeve */
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.4s ease;
}

.trust-card:hover {
    border-color: #C5A880;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.trust-info h3 {
    color: #C5A880;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 20px 0 10px;
}

/* --- Lifestyle Section Lüks Detaylar --- */
.lifestyle-section.bg-dark {
    background: #0A192F;
    color: #fff;
}

.image-wrapper-decorated {
    position: relative;
    padding: 0 40px 40px 0;
}

.image-wrapper-decorated img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 40px 40px 0px -10px rgba(197, 168, 128, 0.5); /* Dekoratif altın kutu */
}

.floating-info-box {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #C5A880;
    padding: 25px;
    color: #0A192F;
    text-align: center;
}

.fb-number { display: block; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.fb-text { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; }

.amenity-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.ai-icon { font-size: 1.5rem; color: #C5A880; }

/* --- Rezervasyon Glassmorphism Kartı --- */
.cta-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #25D366;
    color: #25D366;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: #fff;
}
/* =========================================================
   HOME REVAMP V2 (Hero sonrası temiz premium akış)
   ========================================================= */

/* Genel section başlık düzeni */
.section-head-v2 {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-head-v2 .section-subtitle {
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-head-v2 .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
    color: var(--color-navy);
}

.section-head-v2 .section-lead {
    color: #5e6b7a;
    font-size: 1rem;
    line-height: 1.8;
}

/* ========== TRUST BAR V2 ========== */
.trust-bar-v2 {
    position: relative;
    margin-top: -70px;
    z-index: 30;
    padding-bottom: 10px;
}

.trust-bar-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.trust-v2-card {
    background: rgba(6, 16, 31, 0.96);
    border: 1px solid rgba(197, 168, 128, 0.18);
    border-radius: 14px;
    padding: 24px 20px;
    color: var(--color-text-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.trust-v2-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 128, 0.5);
    background: rgba(6, 16, 31, 1);
}

.trust-v2-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.5);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    color: var(--color-gold);
    font-size: 1rem;
}

.trust-v2-card h3 {
    font-family: var(--font-body);
    color: var(--color-gold);
    font-size: 0.95rem;
    letter-spacing: .5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.trust-v2-card p {
    color: #d6deea;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========== FLEET V2 ========== */
.fleet-v2 {
    padding-top: 70px;
}

.fleet-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fleet-card-v2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #edf0f4;
    box-shadow: 0 12px 26px rgba(10, 25, 47, 0.07);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}

.fleet-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(10, 25, 47, 0.14);
}

.fleet-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.fleet-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.fleet-card-v2:hover .fleet-card-media img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(10, 25, 47, 0.85);
    color: #fff;
    border: 1px solid rgba(197, 168, 128, 0.6);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.fleet-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.fleet-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.fleet-card-top h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.fleet-pill {
    font-size: 0.72rem;
    background: rgba(197, 168, 128, 0.15);
    color: #8b6b45;
    border: 1px solid rgba(197, 168, 128, 0.35);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.fleet-card-body p {
    color: #5f6d7c;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.fleet-specs {
    border-top: 1px solid #eef1f4;
    border-bottom: 1px solid #eef1f4;
    padding: 10px 0;
    margin: 0;
}

.fleet-specs li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
}

.fleet-specs li span {
    color: #6f7d8c;
}

.fleet-specs li strong {
    color: var(--color-navy);
    font-weight: 600;
    text-align: right;
}

.fleet-card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-inline-link {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
}

.btn-inline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width .25s ease;
}

.btn-inline-link:hover::after {
    width: 100%;
}

/* ========== ROUTES V2 (Zigzag daha temiz) ========== */
.routes-v2 {
    background: #fff;
}

.route-row-v2 {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;
    margin-bottom: 36px;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 28px rgba(10, 25, 47, 0.05);
}

.route-row-v2.reverse {
    grid-template-columns: 1fr 1.1fr;
}

.route-row-v2.reverse .route-media-v2 {
    order: 2;
}

.route-row-v2.reverse .route-content-v2 {
    order: 1;
}

.route-media-v2 {
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
}

.route-media-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.route-row-v2:hover .route-media-v2 img {
    transform: scale(1.03);
}

.route-content-v2 {
    padding: 10px 6px;
}

.route-tag {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

.route-content-v2 h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.route-content-v2 p {
    color: #5f6d7c;
    line-height: 1.8;
    margin-bottom: 14px;
}

.route-content-v2 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.route-content-v2 li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #3f4f61;
}

.route-content-v2 li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    position: absolute;
    left: 0;
    top: 10px;
}

/* ========== WHY ELIZA V2 ========== */
.why-eliza-v2 {
    background: linear-gradient(180deg, #0b1a30 0%, #0a192f 100%);
    color: #fff;
}

.why-eliza-v2 .section-subtitle,
.why-eliza-v2 .section-title {
    color: #fff;
}

.why-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.why-lead-v2 {
    color: rgba(255,255,255,0.82);
    margin-bottom: 22px;
    line-height: 1.8;
}

.why-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-feature-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px;
}

.why-feature-item strong {
    display: block;
    color: var(--color-gold);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.why-feature-item p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem;
    line-height: 1.55;
}

.why-media-v2 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.why-media-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-stat-card {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(197, 168, 128, 0.95);
    color: var(--color-navy);
    padding: 16px 18px;
    border-radius: 12px;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
}

/* ========== CTA V2 ========== */
.cta-v2 {
    background: radial-gradient(circle at top, rgba(197,168,128,0.12), transparent 40%), #06101f;
}

.cta-v2-card {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.cta-v2-content {
    max-width: 640px;
}

.cta-v2-content .section-subtitle {
    color: var(--color-gold);
    margin-bottom: 8px;
    display: block;
}

.cta-v2-title {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 10px;
}

.cta-v2-desc {
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.8;
}

.cta-v2-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}

/* CTA içi butonları biraz büyütelim */
.cta-v2-actions .btn-gold-solid,
.cta-v2-actions .btn-whatsapp-solid {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .fleet-grid-v2 {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid-v2 {
        grid-template-columns: 1fr;
    }

    .why-media-v2 {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .trust-bar-v2 {
        margin-top: 0;
        padding-top: 18px;
    }

    .trust-bar-v2-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid-v2 {
        grid-template-columns: 1fr;
    }

    .route-row-v2,
    .route-row-v2.reverse {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 12px;
    }

    .route-row-v2.reverse .route-media-v2,
    .route-row-v2.reverse .route-content-v2 {
        order: initial;
    }

    .route-media-v2 {
        height: 230px;
    }

    .route-content-v2 h3 {
        font-size: 1.35rem;
    }

    .why-feature-list {
        grid-template-columns: 1fr;
    }

    .cta-v2-card {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
    }

    .cta-v2-actions {
        min-width: 100%;
    }
}
/* =========================================================
   KURUMSAL PAGE - MENU UYUMLU PREMIUM TASARIM
   ========================================================= */

.kurumsal-page {
    background: #f7f9fc;
}

/* HERO */
.kcorp-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px; /* fixed header için pay */
}

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

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

.kcorp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,16,31,.45) 0%, rgba(6,16,31,.85) 100%);
}

.kcorp-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 820px;
    padding: 60px 0 50px;
}

.kcorp-eyebrow {
    display: inline-block;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.kcorp-hero-content h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 12px;
    text-shadow: 2px 4px 16px rgba(0,0,0,.55);
}

.kcorp-hero-content p {
    color: rgba(255,255,255,.9);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 18px;
    max-width: 700px;
}

.kcorp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* TRUST BAR */
.kcorp-trust {
    margin-top: -46px;
    position: relative;
    z-index: 5;
}

.kcorp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.kcorp-trust-card {
    background: rgba(6,16,31,.96);
    border: 1px solid rgba(197,168,128,.18);
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 16px 36px rgba(0,0,0,.2);
    transition: transform .25s ease, border-color .25s ease;
}

.kcorp-trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197,168,128,.45);
}

.kcorp-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(197,168,128,.55);
    color: var(--color-gold);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.kcorp-trust-card h3 {
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: .92rem;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.kcorp-trust-card p {
    color: rgba(255,255,255,.84);
    font-size: .88rem;
    line-height: 1.55;
    margin: 0;
}

/* ORTAK BAŞLIK */
.kcorp-heading {
    max-width: 800px;
    margin: 0 auto 28px;
}

.kcorp-section-label {
    display: inline-block;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.kcorp-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 10px;
}

.kcorp-heading p {
    color: #5f6d7c;
    line-height: 1.8;
    margin: 0;
}

/* ABOUT */
.kcorp-about-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    align-items: start;
}

.kcorp-about-content {
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(10,25,47,.05);
}

.kcorp-about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.kcorp-about-content p {
    color: #5f6d7c;
    line-height: 1.85;
    margin-bottom: 10px;
}

.kcorp-mini-points {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kcorp-mini-item {
    border: 1px solid #edf1f6;
    background: #fbfcfe;
    border-radius: 12px;
    padding: 12px;
}

.kcorp-mini-item strong {
    display: block;
    color: var(--color-navy);
    margin-bottom: 4px;
    font-size: .92rem;
}

.kcorp-mini-item span {
    color: #6b7887;
    font-size: .84rem;
}

.kcorp-about-side {
    display: grid;
    gap: 14px;
}

.kcorp-side-card {
    background: linear-gradient(180deg, #0b1a30 0%, #0a192f 100%);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 18px;
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
}

.kcorp-side-card h3 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: .6px;
}

.kcorp-side-card ul {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
}

.kcorp-side-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: rgba(255,255,255,.88);
    font-size: .88rem;
    line-height: 1.45;
}

.kcorp-side-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

.kcorp-side-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kcorp-link-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    border-bottom: 1px solid rgba(197,168,128,.6);
    align-self: center;
}

.kcorp-side-image {
    border-radius: 14px;
    overflow: hidden;
    min-height: 220px;
    box-shadow: 0 12px 28px rgba(10,25,47,.08);
}

.kcorp-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CERTS */
.kcorp-certs {
    background: #fff;
}

.kcorp-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.kcorp-cert-card {
    border: 1px solid #e9eef4;
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(10,25,47,.05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.kcorp-cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(10,25,47,.09);
}

.kcorp-cert-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.kcorp-cert-top .kcorp-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.kcorp-cert-top h3 {
    margin: 0;
    font-size: 1.15rem;
}

.kcorp-cert-card p {
    color: #5f6d7c;
    line-height: 1.75;
    margin-bottom: 10px;
}

.kcorp-cert-card ul {
    margin: 0;
    padding-left: 18px;
    color: #405063;
}

.kcorp-cert-card li {
    margin-bottom: 6px;
    line-height: 1.5;
}

/* MODEL */
.kcorp-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.kcorp-model-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 16px 36px rgba(10,25,47,.10);
}

.kcorp-model-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kcorp-floating-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(197,168,128,.96);
    color: var(--color-navy);
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 170px;
    box-shadow: 0 12px 26px rgba(0,0,0,.22);
}

.kcorp-floating-badge .num {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
}

.kcorp-floating-badge .txt {
    display: block;
    margin-top: 4px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.kcorp-model-content {
    background: #fff;
    border: 1px solid #e9eef4;
    border-radius: 16px;
    padding: 22px;
}

.kcorp-model-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.kcorp-model-content p {
    color: #5f6d7c;
    line-height: 1.8;
    margin-bottom: 14px;
}

.kcorp-feature-list {
    display: grid;
    gap: 10px;
}

.kcorp-feature-item {
    border: 1px solid #edf1f6;
    border-radius: 12px;
    background: #fbfcfe;
    padding: 12px 14px;
}

.kcorp-feature-item strong {
    display: block;
    color: var(--color-navy);
    margin-bottom: 3px;
    font-size: .94rem;
}

.kcorp-feature-item span {
    color: #687687;
    font-size: .85rem;
}

.kcorp-route-chips {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.kcorp-route-chips span {
    border: 1px solid rgba(197,168,128,.35);
    color: #8b6b45;
    background: rgba(197,168,128,.08);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .82rem;
    font-weight: 600;
}

/* SUCCESS */
.kcorp-success {
    background: #fff;
}

.kcorp-success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.kcorp-success-card {
    border: 1px solid #ebeff5;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(10,25,47,.04);
}

.kcorp-success-card h3 {
    font-size: .98rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.kcorp-success-card p {
    color: #607082;
    font-size: .87rem;
    line-height: 1.6;
    margin: 0;
}

/* VISION */
.kcorp-vision {
    background: linear-gradient(180deg, #0b1a30 0%, #0a192f 100%);
}

.kcorp-vision-box {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(8px);
}

.kcorp-vision-box .kcorp-section-label,
.kcorp-vision-box h2 {
    color: #fff;
}

.kcorp-vision-box h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.kcorp-vision-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kcorp-vision-item {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.02);
    color: rgba(255,255,255,.86);
    padding: 12px 14px;
    line-height: 1.55;
    font-size: .9rem;
}

/* CTA */
.kcorp-cta {
    background: radial-gradient(circle at top, rgba(197,168,128,.10), transparent 45%), #06101f;
}

.kcorp-cta-card {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
}

.kcorp-cta-content {
    max-width: 680px;
}

.kcorp-cta-content h2 {
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}

.kcorp-cta-content p {
    color: rgba(255,255,255,.84);
    line-height: 1.75;
    margin: 0;
}

.kcorp-cta-actions {
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kcorp-cta-actions .btn-gold-solid,
.kcorp-cta-actions .btn-outline-white,
.kcorp-cta-actions .btn-whatsapp-solid {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .kcorp-success-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kcorp-model-grid {
        grid-template-columns: 1fr;
    }

    .kcorp-model-media {
        min-height: 320px;
    }
}

@media (max-width: 900px) {
    .kcorp-trust {
        margin-top: 0;
        padding-top: 18px;
    }

    .kcorp-trust-grid,
    .kcorp-cert-grid,
    .kcorp-about-grid,
    .kcorp-vision-list {
        grid-template-columns: 1fr;
    }

    .kcorp-mini-points {
        grid-template-columns: 1fr;
    }

    .kcorp-cta-card {
        flex-direction: column;
        align-items: stretch;
    }

    .kcorp-cta-actions {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .kcorp-hero {
        min-height: 62vh;
    }

    .kcorp-hero-content {
        padding: 50px 0 36px;
    }

    .kcorp-about-content,
    .kcorp-side-card,
    .kcorp-cert-card,
    .kcorp-model-content,
    .kcorp-vision-box,
    .kcorp-cta-card {
        padding: 16px;
    }

    .kcorp-success-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   KURUMSAL TRUST - V2 (Tek Panel Premium Tasarım)
   ========================================================= */

.kcorp-trust-v2 {
    position: relative;
    margin-top: -54px;
    z-index: 8;
}

.kcorp-trust-shell {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(197,168,128,.18);
    background:
        linear-gradient(180deg, rgba(6,16,31,.96) 0%, rgba(8,20,38,.98) 100%);
    box-shadow: 0 22px 48px rgba(0,0,0,.22);
    overflow: hidden;
}

.kcorp-trust-shell::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(197,168,128,.85) 50%, transparent 100%);
    opacity: .9;
}

.kcorp-trust-shell::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,168,128,.18) 0%, rgba(197,168,128,0) 70%);
    pointer-events: none;
}

/* Sol intro alanı */
.kcorp-trust-intro {
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kcorp-trust-label {
    display: inline-block;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.kcorp-trust-intro h2 {
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    line-height: 1.25;
    margin-bottom: 10px;
}

.kcorp-trust-intro p {
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    line-height: 1.65;
}

/* Sağdaki 3 madde */
.kcorp-trust-list {
    display: grid;
    gap: 10px;
}

.kcorp-trust-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.kcorp-trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(197,168,128,.35);
    background: rgba(255,255,255,.03);
}

.kcorp-trust-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(197,168,128,.4);
    background: linear-gradient(180deg, rgba(197,168,128,.10), rgba(197,168,128,.04));
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.kcorp-trust-icon {
    color: var(--color-gold);
    font-size: 1rem;
    line-height: 1;
}

.kcorp-trust-text {
    min-width: 0;
}

.kcorp-trust-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.kcorp-trust-top h3 {
    margin: 0;
    color: #fff;
    font-size: .95rem;
    line-height: 1.3;
    font-family: var(--font-body);
    letter-spacing: .2px;
}

.kcorp-trust-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(197,168,128,.28);
    background: rgba(197,168,128,.08);
    color: #dcc39b;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
}

.kcorp-trust-text p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: .84rem;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
    .kcorp-trust-v2 {
        margin-top: 0;
        padding-top: 18px;
    }

    .kcorp-trust-shell {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .kcorp-trust-shell {
        padding: 14px;
        border-radius: 14px;
    }

    .kcorp-trust-intro,
    .kcorp-trust-item {
        padding: 12px;
    }

    .kcorp-trust-item {
        grid-template-columns: 46px 1fr;
        gap: 10px;
    }

    .kcorp-trust-icon-wrap {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .kcorp-trust-top h3 {
        font-size: .9rem;
    }

    .kcorp-trust-tag {
        font-size: .68rem;
        padding: 3px 8px;
    }
}