        /* --- 1. GLOBAL STYLES --- */
        :root {
            --primary-color: #333; /* Koyu Gri/Siyah */
            --accent-color: #f39c12; /* Altın/Sarı Vurgu */
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --text-grey: #666;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. HEADER & NAVIGATION (ELITE TRANSPARENT VERSION) --- */
/* --- HEADER GÜNCELLEME --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Yumuşak bir geçiş için süreyi biraz artırdık */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

/* Aşağı Kaydırınca Devreye Giren "Mavimsi & Elit" Stil */
.header-scrolled {
    /* Alanya Homes logosundaki o kurumsal koyu maviyi baz aldık */
    background: #ffbd4d;
    
    /* Modern tarayıcılarda arkayı hafif buzlu cam (blur) yapar */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    
    /* Alt kısma çok ince bir çizgi çekerek derinlik katıyoruz */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    
    /* Header yüksekliğini biraz daraltarak ekran alanını açarız */
    padding: 5px 0; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Kaydırma esnasında navbar padding'ini de azaltalım ki daralsın */
.header-scrolled .navbar-main {
    padding: 10px 0;
}

/* Kaydırma esnasında logo boyutunu hafif küçülterek kibarlaştıralım */
.header-scrolled .logo img {
    height: 38px;
}

/* Top Bar - İletişim ve Dil/Döviz */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0;
    color: #fff;
    font-size: 12px;
}

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

.top-left, .top-right { display: flex; align-items: center; gap: 15px; }
.top-left a { color: #fff; opacity: 0.8; }
.top-left a:hover { opacity: 1; color: var(--accent-color); }
.divider { opacity: 0.3; margin: 0 5px; }

/* Navbar Main */
.navbar-main { padding: 15px 0; }
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { 
    height: 50px; 
}

.nav-links { display: flex; gap: 20px; align-items: center; }

.nav-links a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--accent-color); }

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    display: none;
    padding: 10px 0;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
}

.dropdown:hover .dropdown-menu { display: block; animation: fadeInUp 0.3s ease; }

.dropdown-menu li a {
    color: #333 !important;
    padding: 10px 20px;
    display: block;
    text-transform: capitalize;
}

.dropdown-menu li a:hover { background: var(--bg-light); color: var(--accent-color) !important; }

/* --- 3. HERO & SEARCH --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
}

.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s; }
.slide.active { opacity: 1; }

/* Arama Kutusu Modernizasyon */
.search-container {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin: -50px auto 0;
    position: relative;
    z-index: 10;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 15px;
}

/* --- MOBİL AYARLAR --- */
.hamburger { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #222;
        flex-direction: column;
        padding: 20px;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .search-form { grid-template-columns: 1fr 1fr; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

        /* --- 3. HERO SECTION --- */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            padding-top: 80px;
        }

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

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 800px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.2rem; padding: 0 10px; }
            .hero-content p { font-size: 1.1rem; margin-bottom: 30px; }
        }

        /* --- 4. SEARCH & FILTER SECTION --- */
        .search-container {
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
            margin-top: -60px;
            z-index: 10;
        }

        .search-form {
            display: grid;
            grid-template-columns: repeat(4, 1fr) auto;
            gap: 15px;
            align-items: center;
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e1e1e1;
            border-radius: 5px;
            font-family: inherit;
        }

        /* --- 5. PROPERTY LISTING --- */
        .properties {
            padding: 80px 0;
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .property-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .property-image {
            height: 230px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .property-label {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--accent-color);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .property-price {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: rgba(0,0,0,0.7);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .property-content {
            padding: 20px;
        }

        .property-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .property-content p.location {
            color: var(--text-grey);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .property-features {
            display: flex;
            gap: 15px;
            font-size: 0.85rem;
            color: var(--text-grey);
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .property-features span i {
            margin-right: 5px;
            color: var(--accent-color);
        }

        /* --- 6. SERVICES SECTION --- */
        .services {
            padding: 80px 0;
            background-color: var(--white);
        }

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

        .service-item {
            text-align: center;
            padding: 40px 20px;
            background-color: var(--bg-light);
            border-radius: 8px;
            transition: var(--transition);
        }

        .service-item:hover {
            background-color: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 25px;
        }

        .service-item h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

/* --- 7. TESTIMONIALS SECTION (REFERANS FOTOĞRAF TARZI) --- */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

/* --- TESTIMONIAL GRID GÜNCELLEME --- */
.testimonial-grid {
    display: flex;
    flex-wrap: wrap; /* Taşınca aşağı kayması için */
    margin: 0 -15px; /* Konteynır boşluğunu dengelemek için */
    gap: 0; /* Boşluğu col mantığıyla vereceğiz */
}

.testimonial-card-v2 {
    /* col-lg-4 mantığı: %100 / 3 */
    flex: 0 0 calc(33.333% - 30px); 
    max-width: calc(33.333% - 30px);
    margin: 15px; /* Kartlar arası boşluk */
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

/* Tablet Uyumu (col-md-6 gibi - yan yana 2 tane) */
@media (max-width: 992px) {
    .testimonial-card-v2 {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

/* Mobil Uyumu (col-12 gibi - tekli) */
@media (max-width: 768px) {
    .testimonial-card-v2 {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .testimonial-grid {
        justify-content: center;
    }
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Üst Görsel Alanı */
.card-image-top {
    position: relative;
    height: 250px; /* Görsel yüksekliği */
    overflow: hidden;
}

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

.testimonial-card-v2:hover .card-image-top img {
    transform: scale(1.05); /* Hover'da hafif zoom */
}

/* Deed Delivery Rozeti */
.deed-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Emlak Bilgisi Overlay (Sol Alt) */
.property-info-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    line-height: 1.3;
}

/* Kart İçeriği (Alt Kısım) */
.card-body-v2 {
    padding: 25px;
}

.client-header {
    margin-bottom: 15px;
}

.client-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.client-header span {
    font-size: 0.85rem;
    color: var(--text-grey);
}

.testimonial-text {
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

/* Yıldız Derecelendirmesi */
.star-rating {
    color: var(--accent-color); /* Altın sarısı rengi */
    font-size: 0.9rem;
}

        /* --- 8. FOOTER --- */
        footer {
            background-color: #222;
            color: #bbb;
            padding: 60px 0 30px;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 600;
        }

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

        .footer-col ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid #444;
            padding-top: 30px;
        }
		/* --- MOBİL UYUMLULUK EKLEMELERİ --- */
        @media (max-width: 992px) {
            .nav-links { display: none; } /* Mobil menü için gizlendi, ileride hamburger menü ekleyebilirsiniz */
            .search-form {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .property-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
			
        }
/* --- MOBİL NAVBAR GÜNCEL --- */
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- MOBİL NAVİGASYON DÜZENLEME --- */
@media (max-width: 992px) {
    .top-bar .top-left a:not(.mail-link), 
    .top-bar .divider {
        display: none; 
    }
    
    .top-bar .container {
        justify-content: center;
        gap: 20px;
    }

    .hamburger {
        display: block !important;
        color: #fff;
        font-size: 1.5rem;
        cursor: pointer;
        order: 2;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%; 
        height: 100vh;
        background: rgba(15, 23, 42, 0.98); 
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px !important; /* Gap miktarını biraz azalttık */
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding-top: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.1rem !important;
        display: block;
        padding: 12px;
        color: #fff;
    }

    /* --- DROPDOWN DÜZENLEMESİ (BURASI KRİTİK) --- */
    .nav-links .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        display: none; /* Otomatik açılmaması için varsayılan gizli */
        width: 100%;
        border-top: none;
        margin-top: 0;
        padding: 0;
    }

    /* Dropdown tıklandığında açılması için gerekli class */
    .nav-links .dropdown.open .dropdown-menu {
        display: block;
        background: rgba(0, 0, 0, 0.2);
    }

    .dropdown-menu li a {
        color: rgba(255,255,255,0.6) !important;
        font-size: 0.95rem !important;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .logo img {
        height: 55px !important;
    }
}
/* --- ARAMA BUTONU MODERNİZASYON --- */
.search-form button, 
.search-form input[type="submit"] {
    background-color: var(--accent-color); /* Altın/Sarı tonu */
    color: #fff;
    border: none;
    padding: 0 30px; /* Genişlik kattık */
    height: 100%; /* Select kutularıyla aynı boya getirir */
    min-height: 48px; /* Standardize ettik */
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2); /* Hafif gölge */
    text-transform: uppercase;
}

.search-form button:hover {
    background-color: #d35400; /* Biraz daha koyu bir turuncu/altın */
    transform: translateY(-2px); /* Yukarı sıçrama efekti */
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.search-form button i {
    font-size: 1.1rem;
}

/* Form içindeki butonun grid alanına tam oturması için */
.search-form .form-group:last-child {
    display: flex;
    align-items: flex-end;
}
/* --- TÜM İLANLAR BUTONU --- */
.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--accent-color); /* Turuncu/Altın çerçeve */
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Tam yuvarlak köşeler elit durur */
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-view-all:hover {
    color: var(--white);
    background-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3); /* Hafif parlama */
    transform: translateY(-3px); /* Küçük bir yukarı zıplama */
}

/* Küçük bir sağ ok ikonu eklemek istersen (isteğe bağlı) */
.btn-view-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px); /* Hover'da ok sağa kaysın */
}
.btn-view-all2 {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--accent-color); /* Turuncu/Altın çerçeve */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Tam yuvarlak köşeler elit durur */
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-view-all2:hover {
    color: var(--white);
    background-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3); /* Hafif parlama */
    transform: translateY(-3px); /* Küçük bir yukarı zıplama */
}

/* Küçük bir sağ ok ikonu eklemek istersen (isteğe bağlı) */
.btn-view-all2 i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-view-all2:hover i {
    transform: translateX(5px); /* Hover'da ok sağa kaysın */
}
/* --- MOBİL 2'Lİ SİSTEM KESİN FİKS --- */
@media (max-width: 768px) {
    /* 1. Izgarayı Grid'den Flex'e çeviriyoruz */
    .property-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        gap: 0 !important; /* Boşluğu padding ile vereceğiz */
        padding: 5px !important;
        width: 100% !important;
    }

    /* 2. Kartları %50 genişliğe zorluyoruz */
    .property-card {
        display: block !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
        padding: 5px !important; /* Kartlar arası boşluk burası */
        box-sizing: border-box !important;
        background: transparent !important; /* Arka planı mobilde sadeleştirelim */
        box-shadow: none !important; /* Mobilde kart gölgesi bazen taşma yapar */
    }

    /* 3. Kartın içindeki beyaz alanı ve resmi düzenliyoruz */
    .property-card .property-image {
        height: 140px !important; /* Resim yüksekliği */
        border-radius: 12px !important;
        width: 100% !important;
    }

    /* 4. İçerik alanı (Yazılar) */
    .property-content {
        background: #fff !important;
        border-radius: 0 0 12px 12px !important;
        padding: 8px !important;
        margin-top: -5px !important; /* Resimle bütünleşsin */
    }

    .property-content h3 {
        font-size: 12px !important;
        line-height: 1.2 !important;
        height: 30px !important; /* Başlıklar 2 satırda kalsın */
        overflow: hidden !important;
        margin-bottom: 4px !important;
    }

    /* 5. Alt özellikler (1+1, Banyo vs.) */
    .property-features {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        border-top: 1px solid #eee !important;
        padding-top: 5px !important;
    }

    .property-features span {
        font-size: 9px !important;
        white-space: nowrap !important;
    }

    /* 6. Fiyat ve Lokasyon */
    .property-price {
        font-size: 10px !important;
        padding: 3px 6px !important;
        bottom: 8px !important;
        right: 8px !important;
    }

    .location {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }
}
/* --- CPAWN ÖZEL DİKEY MENÜ VE BALON EFEKTİ --- */
.cpawn-nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
}

.cpawn-nav-menu a {
    display: flex;
    flex-direction: column; /* İkon üstte, metin altta kalsın */
    align-items: center;
    justify-content: center;
    color: #ffffff !important; /* Turuncu rengi tamamen ezdik */
    text-decoration: none;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Balon Efekti (Arka Plan) */
.cpawn-nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.15); /* Şeffaf beyaz balon */
    border-radius: 15px; /* Hafif köşeli veya 50px yaparak tam oval yapabilirsin */
    opacity: 0;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Üzerine gelince (Hover) */
.cpawn-nav-menu a:hover {
    color: #333 !important; /* Yazı beyaz kalmaya devam eder */
}

.cpawn-nav-menu a:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* İkonlar için ekstra boşluk (İsteğe bağlı) */
.cpawn-nav-menu a i {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cpawn-nav-menu a span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobil Görünüm (Dikey liste) */
@media (max-width: 992px) {
    .cpawn-nav-menu {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .cpawn-nav-menu a {
        flex-direction: row; /* Mobilde ikon ve metin yan yana gelsin dersen */
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }
}
/* --- MOBİL MENÜYÜ SOLDAN AÇILIR YAP --- */
@media (max-width: 992px) {
	
    .cpawn-nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important; /* Menü artık sol tarafta gizli */
        right: auto !important; /* Sağdaki sabitlemeyi iptal et */
        width: 280px !important;
        height: 100vh !important;
        background: #0f172a !important; 
        display: flex !important;
        flex-direction: column !important;
        padding: 80px 20px 30px 20px !important;
        gap: 15px !important;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Daha akıcı geçiş */
        z-index: 9999 !important;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5) !important; /* Gölgeyi sağa verdik */
    }

    /* Hamburger ikonuna basınca menüyü soldan içeri al */
    .cpawn-nav-menu.active {
        left: 0 !important;
    }

    /* Linklerin içindeki ikon ve yazıyı yan yana tutmaya devam */
    .cpawn-nav-menu a {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        color: white !important;
        transition: 0.3s !important;
    }

    /* Tıklayınca hafif tepki versin */
    .cpawn-nav-menu a:active {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: scale(0.98);
    }
}
/* --- DROPDOWN (AÇILIR MENÜ) KESİN ÇÖZÜM --- */

/* 1. Masaüstü ve Genel Dropdown Stili */
.cpawn-nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b !important; /* Koyu, şık bir arka plan */
    min-width: 200px;
    display: none;
    padding: 10px 0;
    border-top: 3px solid rgba(255, 255, 255, 0.2); /* Turuncu yerine beyaz şeffaf çizgi */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 100;
    border-radius: 0 0 8px 8px;
}

.cpawn-nav-menu .dropdown:hover > .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Dropdown İçindeki Linkler */
.cpawn-nav-menu .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
    text-transform: none !important;
    display: flex !important;
    flex-direction: row !important; /* İçerdekiler hep yan yana kalsın */
    align-items: center !important;
    background: transparent !important;
    transition: 0.3s;
}

.cpawn-nav-menu .dropdown-menu li a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important; /* Hafif aydınlanma */
    padding-left: 25px !important; /* Tatlı bir kayma efekti */
}

/* Dropdown içindeki ikonlar */
.cpawn-nav-menu .dropdown-menu li a i {
    margin-right: 10px;
    margin-bottom: 0 !important;
    font-size: 14px;
}

@media (max-width: 992px) {
    /* 1. Ana Menü Kasa */
    .cpawn-nav-menu {
        position: fixed !important;
        top: 0 !important;
        width: 75% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #ffffff !important;
        display: block !important;
        transition: 0.4s all ease-in-out !important;
        z-index: 99999 !important;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1) !important;
padding: 0 !important; /* ÖNEMLİ: Boşluğu sıfırladık */
        margin: 0 !important;
        overflow-y: auto !important;
    }

    /* Menü açıldığında */
    .cpawn-nav-menu.show {
        right: 0 !important;
    }

    /* 2. Liste ve Çizgiler */
    .cpawn-nav-menu li {
        width: 100% !important;
        border-bottom: 1px dashed #ddd !important;
        position: relative;
        float: none !important; /* Floating'i iptal et */
    }

    .cpawn-nav-menu li a {
        color: #333 !important; /* Yazı rengini koyulaştırdık */
        text-align: left !important;
        padding: 15px 25px !important;
        display: block !important;
        font-weight: 600 !important;
        background: transparent !important;
    }

    /* 3. DROP-DOWN SORUNU ÇÖZÜMÜ */
    /* Dropdown açıldığında yazıları görünür yapalım */
    .cpawn-nav-menu .dropdown-menu {
        display: none; /* JS ile açılacak */
        position: static !important; /* Sayfa akışına dahil et */
        width: 100% !important;
        background: #fcfcfc !important; /* Hafif farklı bir zemin */
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        float: none !important;
    }

    /* Dropdown açıkken */
    .cpawn-nav-menu .dropdown.open .dropdown-menu {
        display: block !important;
    }

    /* Dropdown içindeki linklerin rengi */
    .cpawn-nav-menu .dropdown-menu li a {
        padding-left: 45px !important; /* İçeriye doğru kaydır */
        font-weight: 500 !important;
        color: #555 !important; /* Biraz daha açık gri */
        font-size: 14px !important;
    }

    /* İkonları temizle */
    .cpawn-nav-menu li a i {
        display: none !important;
    }
	
	
	/* O Meşhur Gri Başlık */
    .mobile-menu-top-bar {
        background: #444444 !important;
        color: #ffffff !important;
        padding: 18px 20px !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        border: none !important;
    }

    .mobile-menu-close-x {
        background: none;
        border: none;
        color: #fff;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
    }
}
@media (max-width: 992px) {
    /* Menü Başlık Bandı */
    .mobile-menu-header-top {
        background: #444444 !important; /* Görseldeki o koyu gri */
        color: #ffffff !important;
        padding: 15px 20px !important;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 18px;
        border-bottom: none !important; /* Başlıkta kesikli çizgi olmasın */
    }

    /* Kapatma Çarpısı */
    .mobile-close-icon {
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        color: #ffffff;
    }

    /* Menü Kasa Düzenlemesi (Padding'i sıfırlıyoruz ki bant tam otursun) */
    .cpawn-nav-menu {
        padding-top: 0 !important; 
        overflow-x: hidden;
    }
}

/* Masaüstünde bu başlığı gizle */
@media (min-width: 993px) {
    .mobile-menu-header-top {
        display: none !important;
    }
}

/* Masaüstü Animasyonu */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- LOCATIONS SECTION --- */
.locations-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    color: #777;
    max-width: 900px;
    line-height: 1.6;
}

/* Grid Yapısı */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Bilgisayarda 5 sütun */
    gap: 15px;
}

/* Kart Tasarımı */
.location-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 200px; /* Görsel yüksekliği */
    cursor: pointer;
}

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

/* Üzerindeki Karartma ve Yazı */
.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: background 0.3s ease;
}

.location-overlay h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hover Efekti */
.location-card:hover img {
    transform: scale(1.1); /* Resim hafif büyür */
}

.location-card:hover .location-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablette 3 sütun */
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde yan yana 2 tane */
        gap: 10px;
    }
    .location-card {
        height: 150px; /* Mobilde biraz daha kısa */
    }
    .section-header h2 {
        font-size: 22px;
    }
}
/* Slider kapsayıcısı için genişlik */
.locationSwiper {
    padding: 20px 5px !important;
    position: relative;
}

/* Okların rengini senin temana (beyaz/gri) uyduralım */
.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    background: rgba(0,0,0,0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    after { font-size: 18px !important; }
}

.location-card {
    height: 250px; /* Slider içinde daha belirgin durması için biraz büyüttük */
    width: 100%;
}
/* --- SADE VE ETKİLİ MOBİL İLAN BÜYÜTME --- */
@media screen and (max-width: 768px) {
    /* 1. İlanların arasını dikeyde açıyoruz (Ekranı doldurması için) */
    .property-card {
        margin-bottom: 25px !important; /* İlanlar altına boşluk ekledik */
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
        height: auto !important;
    }

    /* 2. Resim alanını dikeyde uzatıyoruz (Asıl büyüten yer burası) */
    .property-image {
        height: 220px !important; /* Burayı 220px yaparak ilanı boyuna uzattık */
        min-height: 220px !important;
    }

    .property-image img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important; /* Resmin bozulmasını engeller */
    }

    /* 3. Yazı alanına biraz nefes aldıralım */
    .property-content {
        padding: 15px !important;
    }

    .property-content h3 {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
    }
}
@media screen and (max-width: 768px) {
    /* 1. Alt detayları (m2, banyo, oda) mobilde gizle */
    .property-card .property-details, 
    .property-card [class*="details"], 
    .property-card .property-amenities {
        display: none !important;
    }

    /* 2. Başlıkların kesilmemesi için ayar */
    .property-card h3, 
    .property-card [class*="title"] {
        white-space: normal !important; /* Satır sonuna gelince alt satıra geçer */
        overflow: visible !important;
        text-overflow: clip !important;
        display: block !important;
        max-height: none !important; /* Yükseklik sınırını kaldırır */
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        color: #333 !important;
    }

    /* 3. İlan içeriğine biraz daha dikey alan açalım */
    .property-content {
        padding: 12px 10px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    /* 4. Konum bilgisini de biraz küçültüp sadeleştirelim */
    .property-location {
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }
}
/* --- HAKKIMIZDA SAYFASI CSS --- */

.page-banner {
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.page-banner h1 { font-size: 3rem; font-weight: 700; margin-bottom: 10px; }

.about-section { padding: 80px 0; }

.about-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image, .about-text { flex: 1; min-width: 300px; }

.about-text .sub-title {
    color: #f39c12; /* Senin temanın turuncusu veya ana rengin */
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }

.about-features { margin-top: 30px; }

.feat-item { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-weight: 500; }

.feat-item i { color: #27ae60; font-size: 1.2rem; }

/* İstatistik Alanı */
.stats-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stat-box:hover { transform: translateY(-10px); }

.stat-box i { font-size: 2.5rem; color: #34495e; margin-bottom: 15px; }

.stat-box h3 { font-size: 2rem; font-weight: 700; margin-bottom: 5px; }

.stat-box p { color: #7f8c8d; font-weight: 500; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .page-banner { padding: 60px 0; }
    .page-banner h1 { font-size: 2rem; }
    .about-text h2 { font-size: 1.8rem; }
}
/* --- WELTPROPERTY MOBİL RESİM DÜZENLEME --- */
@media screen and (max-width: 768px) {
    /* Hakkımızda sayfasındaki resim alanı */
    .about-image {
        margin-bottom: 25px !important; /* Resim ile yazı arasına boşluk */
        display: flex !important;
        justify-content: center !important;
    }

    .about-image img {
        max-height: 280px !important; /* Resmin devasa olmasını engelledik */
        width: 100% !important;
        object-fit: cover !important; /* Resmin oranını bozmadan sığdırır */
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    }

    /* Yazı alanındaki başlığı biraz daha yukarı çekelim */
    .about-text h2 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
        text-align: center !important; /* Mobilde başlığı ortalayalım daha şık durur */
    }

    .about-text p {
        text-align: center !important; /* Metni de ortalayarak dengeyi kuruyoruz */
        font-size: 14px !important;
    }

    /* İkonlu özellikleri de ortalayalım */
    .feat-item {
        justify-content: center !important;
        font-size: 13px !important;
    }
}
/* --- WELTPROPERTY PREMIUM TEAM CSS (Mavi & Gold) --- */

/* Renk Değişkenleri - Marka Kimliği */
:root {
    --welt-navy: #0a192f;      /* Kapalı Mavi (Ana Renk) */
    --welt-blue: #112240;      /* Biraz daha açık mavi */
    --welt-gold: #c1a166;      /* Premium Gold/Altın (Detay Renk) */
    --welt-text-light: #ccd6f6; /* Açık renk metin */
    --welt-white: #ffffff;
}

.premium-team { padding: 100px 0; background: #f4f7f6; }

.single-column-mobile {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.premium-card {
    background: var(--welt-white);
    border-radius: 25px; /* Daha oval köşeler */
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(10, 25, 47, 0.08); /* Mavi tonlu gölge */
    transition: all 0.4s ease;
    border: 1px solid rgba(10, 25, 47, 0.03);
    display: flex;
    flex-direction: column;
}

.premium-card:hover { transform: translateY(-15px); box-shadow: 0 20px 55px rgba(10, 25, 47, 0.15); }

.team-image { height: 380px; position: relative; overflow: hidden; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; text-align: center;}

.info-header h3 { font-size: 24px; font-weight: 700; color: var(--welt-navy); margin-bottom: 5px; }
.info-header span { color: var(--welt-gold); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 20px;}

.contact-area { margin-bottom: 25px; border-top: 1px solid #eee; padding-top: 20px;}
.contact-item { font-size: 14px; color: #555; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; text-decoration: none; transition: color 0.3s;}
.contact-item:hover { color: var(--welt-gold); }
.contact-item i { color: var(--welt-navy); }

/* Aksiyon Butonları Structure */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-action {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-call { background: var(--welt-navy); color: #fff; }
.btn-call:hover { background: var(--welt-blue); color: #fff; }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebd5a; color: #fff; }

/* Sosyal Medya (Statik Alt Kısım) */
.team-social-static {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.team-social-static a { color: var(--welt-navy); font-size: 1.3rem; transition: color 0.3s; }
.team-social-static a:hover { color: var(--welt-gold); }

/* --- WELTPROPERTY LUXURY MOBİL REZİVON (TEKLİ & BÜYÜK YAPISI) --- */
@media screen and (max-width: 768px) {
    .premium-team { padding: 60px 0; }
    
    .single-column-mobile {
        grid-template-columns: 1fr !important; /* Mobilde TEKLİ ve KOCAMAN */
        gap: 30px !important;
        padding: 0 15px;
    }
    
    .premium-card {
        border-radius: 20px;
    }

    .team-image { 
        height: 320px !important; /* Resim mobilde de heybetli kalsın */
    }

    .team-info {
        padding: 25px 15px !important;
    }

    .info-header h3 { font-size: 20px !important; }
    .info-header span { font-size: 13px !important; }

    /* Mobilde Maili Geri Getirdik ama Derli Toplu */
    .contact-item { 
        font-size: 13px !important; 
        justify-content: center;
        width: 100%;
        margin-bottom: 20px !important;
    }
    
    .action-buttons {
        flex-direction: column !important; /* Butonlar mobilde alt alta */
        gap: 10px !important;
    }
    
    .btn-action {
        width: 100% !important;
        font-size: 13px !important;
        padding: 12px 15px !important;
    }
}
/* --- WELTPROPERTY İLETİŞİM CSS --- */
.contact-page-section { padding: 80px 0; background: #fdfdfd; }

.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-panel, .contact-form-panel { flex: 1; min-width: 350px; }

/* Bilgi Kartları */
.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(10, 25, 47, 0.05);
    border-left: 4px solid var(--welt-gold);
}

.info-card i { font-size: 1.8rem; color: var(--welt-navy); margin-top: 5px; }
.info-content h3 { font-size: 18px; color: var(--welt-navy); margin-bottom: 8px; }
.info-content p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* Form Tasarımı */
.contact-form-panel {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.08);
}

.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 20px; flex: 1; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--welt-navy); margin-bottom: 8px; }

.welt-form input, .welt-form select, .welt-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s;
}

.welt-form input:focus, .welt-form textarea:focus {
    border-color: var(--welt-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(193, 161, 102, 0.1);
}

.btn-send {
    background: var(--welt-navy);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.btn-send:hover { background: var(--welt-gold); color: #fff; }

/* Harita */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sosyal Medya Bölümü */
.social-contact h3 { font-size: 18px; margin: 20px 0; color: var(--welt-navy); }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 45px;
    height: 45px;
    background: var(--welt-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-links a:hover { background: var(--welt-gold); transform: translateY(-3px); }

/* MOBİL AYARLAR */
@media screen and (max-width: 768px) {
    .contact-wrapper { flex-direction: column; gap: 30px; }
    .contact-info-panel, .contact-form-panel { min-width: 100%; }
    .form-row { flex-direction: column; gap: 0; }
    .contact-form-panel { padding: 25px 20px; }
    .page-banner h1 { font-size: 2.2rem; }
    .info-card { padding: 15px; }
}
/* Spam sorusu alanı için özel stil */
.spam-check {
    background: #f0f4f8; /* Hafif mavi bir arka plan */
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--welt-blue-light);
    margin-top: 10px;
}

.spam-check label {
    color: var(--welt-navy) !important;
    font-weight: 700 !important;
}

/* Mobilde form satırlarının (row) alt alta gelmesini garantiye alalım */
@media screen and (max-width: 768px) {
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
}
/* --- WELTPROPERTY KARİYER SAYFASI --- */
.career-section { padding: 80px 0; background: #fdfdfd; }

.section-title { 
    text-align: center; 
    color: var(--welt-navy); 
    margin-bottom: 50px; 
    font-weight: 700;
}

.career-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.c-feat-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
    transition: 0.3s;
}

.c-feat-box:hover { transform: translateY(-10px); border-bottom: 3px solid var(--welt-blue-light); }

.c-feat-box i { font-size: 3rem; color: var(--welt-blue-light); margin-bottom: 20px; }

.c-feat-box h3 { font-size: 20px; color: var(--welt-navy); margin-bottom: 15px; }

.c-feat-box p { font-size: 14px; color: #666; line-height: 1.6; }

/* İş Listesi */
.job-list { max-width: 800px; margin: 0 auto 80px; }

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.job-info h3 { font-size: 18px; color: var(--welt-navy); margin-bottom: 5px; }

.job-info span { font-size: 13px; color: var(--welt-blue-light); font-weight: 600; }

.btn-job {
    padding: 10px 25px;
    background: var(--welt-navy);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-job:hover { background: var(--welt-blue-light); color: #fff; }

/* Başvuru Formu Alanı */
.career-form-area { max-width: 900px; margin: 0 auto; }

.form-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.1);
    border-top: 5px solid var(--welt-navy);
}

.form-card h2 { color: var(--welt-navy); text-align: center; margin-bottom: 10px; }
.form-card p { text-align: center; color: #666; margin-bottom: 40px; }

/* MOBİL AYARLAR */
@media screen and (max-width: 768px) {
    .job-item { flex-direction: column; text-align: center; gap: 15px; }
    .form-card { padding: 30px 20px; }
    .c-feat-box { padding: 25px 15px; }
}
/* --- WELTPROPERTY SAT SAYFASI CSS --- */
.sell-section { padding: 80px 0; background: #fdfdfd; }

.section-title { 
    text-align: center; 
    color: var(--welt-navy); 
    margin-bottom: 50px; 
    font-weight: 700;
}

.sell-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.s-feat-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.s-feat-box:hover { 
    transform: translateY(-10px); 
    border-bottom: 3px solid var(--welt-blue-light); 
}

.s-feat-box i { font-size: 3rem; color: var(--welt-blue-light); margin-bottom: 20px; }

.s-feat-box h3 { font-size: 20px; color: var(--welt-navy); margin-bottom: 15px; }

.s-feat-box p { font-size: 14px; color: #666; line-height: 1.6; }

/* Başvuru Formu Alanı (Kariyer'deki gibi temiz kart) */
.sell-form-area { max-width: 900px; margin: 0 auto; }

.form-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.1);
    border-top: 5px solid var(--welt-navy);
}

.form-card h2 { color: var(--welt-navy); text-align: center; margin-bottom: 10px; font-weight: 700;}
.form-card p { text-align: center; color: #666; margin-bottom: 40px; font-size: 15px; }

/* Mobilde Görseldeki Gibi Tek Sütun */
@media screen and (max-width: 768px) {
    .sell-features { grid-template-columns: 1fr !important; gap: 20px !important; }
    .form-card { padding: 30px 20px !important; }
    .s-feat-box { padding: 25px 15px !important; }
}
/* --- WELTPROPERTY SAT SAYFASI ÖZEL --- */
.career-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.c-feat-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03); /* Çok hafif gölge */
    transition: 0.3s ease;
}

.c-feat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.c-feat-box i {
    font-size: 2.5rem;
    color: var(--welt-navy); /* İkonlar koyu mavi */
    margin-bottom: 20px;
}

.c-feat-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--welt-navy);
    margin-bottom: 15px;
}

.c-feat-box p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}
.btn-banner-action {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    /* Koyu Lacivert Tonu (Header ile uyumlu) */
    background-color: #0a192f; 
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 8px; /* Çok yuvarlak yerine daha kurumsal durması için */
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    border: 1px solid #0a192f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-banner-action:hover {
    background-color: #112240; /* Çok hafif bir ton farkı */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-banner-action i {
    font-size: 13px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-banner-action:hover i {
    transform: translateX(5px); /* Ok işareti sağa kaysın */
}
/* Hizmetler Sayfası - Screenshot 1 Tarzı Geniş Kartlar */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 tane */
    gap: 30px; /* Kartlar arası boşluk */
    margin-top: 50px;
}

.service-card-premium {
    background: #fff;
    border: 1px solid #e2e8f0; /* Hafif çerçeve (Screenshot 1'deki gibi) */
    border-radius: 12px;
    padding: 60px 40px; /* İç boşluğu artırdık, ferahladı */
    text-align: left; /* Screenshot 1'de metinler sola yaslı */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    border-color: #0a192f;
}

.service-card-premium i {
    font-size: 45px; /* İkonları büyüttük */
    color: #0a192f;
    margin-bottom: 25px;
}

.service-card-premium h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a192f;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-premium p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: #0066ff;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    text-decoration: underline;
}

/* Mobilde tek sütun */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card-premium { padding: 40px 25px; }
}
/* --- GENEL AYARLAR --- */
.integrated-solutions, .welt-advantages { padding: 90px 0; background: #fff; }
.section-header { margin-bottom: 60px; }
.main-title { font-size: 32px; color: #0a192f; font-weight: 700; margin-bottom: 15px; position: relative; }
.sub-title { color: #64748b; font-size: 16px; }

/* --- ÇÖZÜMLER GRID (ÜST KISIM) --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sol-card {
    border: 1px solid #edf2f7;
    padding: 50px 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.sol-card:hover {
    border-color: #0a192f;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateY(-8px);
}

.sol-card i { font-size: 40px; color: #0a192f; margin-bottom: 25px; display: block; }
.sol-card h3 { font-size: 20px; color: #0a192f; margin-bottom: 15px; font-weight: 700; }
.sol-card p { font-size: 14.5px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }

.sol-link { color: #0066ff; font-weight: 600; text-decoration: none; font-size: 14px; }
.sol-link i { display: inline; font-size: 12px; margin-left: 5px; color: inherit; }

/* --- AVANTAJLAR GRID (ALT KISIM) --- */
.welt-advantages { background: #f8fafc; } /* Alt kısmı hafif gri yaparak ayırdık */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px; /* Geniş boşluk Screenshot 1'deki gibi */
    margin-top: 40px;
}

.adv-item { display: flex; gap: 20px; align-items: flex-start; }
.adv-icon { font-size: 24px; color: #0066ff; margin-top: 5px; }
.adv-content h4 { font-size: 18px; color: #0a192f; margin-bottom: 10px; font-weight: 700; }
.adv-content p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .solutions-grid, .advantages-grid { grid-template-columns: 1fr; }
    .sol-card { padding: 35px 25px; }
}
/* Selector Genel Yapı */
.currency-selector, .lang-selector-top {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.selector-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
}

/* Açılır Menü Tasarımı */
.selector-dropdown {
    display: none; /* Varsayılan gizli */
    position: absolute;
    top: 100%;
    right: 0;
    background: #0a192f; /* Header koyu rengiyle uyumlu */
    min-width: 120px;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    margin-top: 10px;
    overflow: hidden;
}

.selector-dropdown div {
    padding: 10px 15px;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.selector-dropdown div:hover {
    background: #112240;
}

/* Aktif sınıflar */
.selector-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- INSAAT GELISTIRME (IG) OZEL CSS --- */
.ig-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.ig-page-banner { padding: 120px 0; background-size: cover; background-position: center; text-align: center; color: #fff; }
.ig-banner-title { font-size: 42px; font-weight: 700; margin-bottom: 20px; }
.ig-banner-text { font-size: 18px; max-width: 800px; margin: 0 auto 30px; line-height: 1.6; }
.ig-banner-btn { display: inline-block; background: #0a192f; color: #fff !important; padding: 15px 35px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; border: 1px solid #0a192f; }
.ig-banner-btn:hover { background: transparent; transform: translateY(-3px); }

.ig-concept-section, .ig-process-section { padding: 90px 0; background: #fff; }
.ig-section-header { text-align: center; margin-bottom: 60px; }
.ig-main-heading { font-size: 32px; color: #0a192f; font-weight: 700; margin-bottom: 15px; }
.ig-sub-heading { color: #64748b; font-size: 16px; }

/* 2'li Izgara */
.ig-concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ig-concept-box { background: #f8fafc; padding: 45px; border-radius: 15px; border: 1px solid #edf2f7; }
.ig-blue-title { color: #0066ff; font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.ig-list { list-style: none; padding: 0; margin-top: 20px; }
.ig-list li { margin-bottom: 12px; font-weight: 600; color: #0a192f; display: flex; align-items: center; gap: 10px; }
.ig-list li i { color: #0066ff; }

/* 4'lü Süreç Kartları */
.ig-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.ig-process-card { background: #fff; padding: 40px 25px; border: 1px solid #edf2f7; border-radius: 12px; transition: 0.3s; position: relative; overflow: hidden; }
.ig-process-card:hover { border-color: #0a192f; transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.ig-num { font-size: 40px; font-weight: 900; color: #0a192f; opacity: 0.1; display: block; margin-bottom: 10px; }
.ig-process-card h3 { font-size: 18px; color: #0a192f; font-weight: 700; margin-bottom: 12px; }
.ig-process-card p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .ig-concept-grid { grid-template-columns: 1fr; }
    .ig-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ig-process-grid { grid-template-columns: 1fr; }
    .ig-banner-title { font-size: 28px; }
}
/* --- WELTPROPERTY (WP) PROJECT LISTING --- */
.wp-main-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.wp-listing-section { padding: 80px 0; background-color: #f8fafc; min-height: 100vh; }

/* Filtreleme Kutusu */
.wp-filter-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
    margin-bottom: 50px;
    border: 1px solid #edf2f7;
}

.wp-filter-layout {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 25px;
    align-items: end;
}

.wp-filter-col-wide, .wp-filter-col-grid, .wp-filter-col-action {
    display: grid;
    gap: 15px;
}

.wp-filter-col-wide { grid-template-columns: 1fr 1fr; }
.wp-filter-col-grid { grid-template-columns: 1fr 1fr 1fr; }
.wp-filter-col-action { grid-template-columns: 1fr 1fr; }

.wp-input-wrapper { display: flex; flex-direction: column; gap: 8px; }
.wp-input-wrapper label { font-size: 13px; font-weight: 700; color: #0a192f; text-transform: uppercase; letter-spacing: 0.5px; }
.wp-input-wrapper input, .wp-input-wrapper select {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fdfdfd;
    outline: none;
    transition: 0.3s;
}

.wp-input-wrapper input:focus { border-color: #0066ff; background: #fff; }

.wp-search-btn {
    background: #0066ff;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wp-search-btn:hover { background: #0a192f; transform: translateY(-2px); }

/* İlan Izgarası */
.wp-property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* İlan Kartı */
.wp-item-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: 0.3s ease;
}

.wp-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #0066ff;
}

.wp-item-thumb { position: relative; height: 210px; }
.wp-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.wp-badge-blue, .wp-badge-dark {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}
.wp-badge-blue { background: #0066ff; }
.wp-badge-dark { background: #0a192f; }

.wp-item-body { padding: 20px; }
.wp-item-title { font-size: 16px; font-weight: 700; color: #0a192f; margin-bottom: 8px; line-height: 1.4; height: 44px; overflow: hidden; }
.wp-item-loc { font-size: 13px; color: #64748b; margin-bottom: 15px; display: flex; align-items: center; gap: 6px; }
.wp-item-price { font-size: 18px; font-weight: 800; color: #0066ff; border-top: 1px solid #f1f5f9; padding-top: 15px; }

/* Responsive */
@media (max-width: 1200px) { .wp-property-grid { grid-template-columns: repeat(3, 1fr); } .wp-filter-layout { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .wp-property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wp-property-grid { grid-template-columns: 1fr; } .wp-filter-col-wide, .wp-filter-col-grid, .wp-filter-col-action { grid-template-columns: 1fr; } }

.footer-social a {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: #00173c; /* Lacivert vurgu için */
}

/* 1. Varsayılan olarak (Masaüstünde) bu başlığı tamamen gizle */
.mobile-menu-top-bar, .mobile-menu-header-top {
    display: none !important;
}

/* 2. Sadece ekran 992px ve altına düştüğünde (Mobilde) göster */
@media (max-width: 992px) {
    .mobile-menu-top-bar, .mobile-menu-header-top {
        display: flex !important; /* Başlık bandını mobilde aktif et */
        justify-content: space-between;
        align-items: center;
        background: #444444 !important;
        color: #ffffff !important;
        padding: 15px 20px !important;
    }
}


/* Online Tur Bölümü */
.online-tour-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/rez.jpg'); /* Buraya bir ev görseli koyarsan süper olur */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}

.online-tours-layer h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.onlinetour-btn {
    display: inline-block;
    background: #c1a35f; /* Altın/Gold tonu kurumsal durur */
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s;
}

.onlinetour-btn:hover {
    background: #a88d4d;
    transform: translateY(-3px);
}

/* Modal (Popup) Stilleri */
.modal-estate {
    display: none; /* Varsayılan kapalı */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.modal-estate.active { display: flex; }

.modal-estate .backdrop {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-estate .content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 10px;
    z-index: 1;
}

.modal-estate .hero {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.modal-form .field input, .modal-form .field textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.nth-submit {
    width: 100%;
    background: #333;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}


/* Elit Modal Temel Kasa */
.elite-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000; /* Çok yüksek z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Kapalıyken gizle ama yer kaplasın (animasyon için) */
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Geri tepmeli modern animasyon */
}

/* Modal Aktifken */
.elite-modal.active {
    visibility: visible;
    opacity: 1;
}

/* Arka Karartma (Overlay) */
.elite-modal .backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.9); /* Çok koyu gri/siyah overlay */
    backdrop-filter: blur(8px); /* Hafif flulaştırma (VIP etkisi) */
}

/* Modal İçerik Kutusu - Animasyonun Ana Merkezi */
.elite-modal .content-wrapper {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 50px;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    
    /* Giriş Animasyonu Başlangıç Pozisyonu */
    transform: translateY(100px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Modal Aktifken İçerik Kutusunun Animasyonu */
.elite-modal.active .content-wrapper {
    transform: translateY(0) scale(1);
}

/* Kapatma Çarpısı */
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: #c1a35f; /* Kurumsal altın tonu */
    transform: rotate(90deg);
}

/* Modal Başlığı */
.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.modal-header p {
    color: #777;
    font-size: 15px;
}

/* Elit Form Giriş Alanları (Input-Group) */
.elite-form .input-group {
    position: relative;
    margin-bottom: 25px;
}

/* Modern Inputlar (Çizgi Şeklinde) */
.elite-form .input-group input, 
.elite-form .input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px; /* İkon boşluğu */
    border: 1px solid #eee;
    background: #fdfdfd;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Input Odaklanma (Focus) Efekti */
.elite-form .input-group input:focus,
.elite-form .input-group textarea:focus {
    border-color: #c1a35f;
    box-shadow: 0 5px 15px rgba(193, 163, 95, 0.1);
    background: #fff;
}

/* Input Etiketleri (Floating Label) */
.elite-form .input-group label {
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
}


/* Mobilde Sütun Arası Boşluk */
@media (max-width: 768px) {
    .appointment-area .col-md-6 {
        margin-bottom: 15px;
    }
}
/* Tarih ve Saat Alanlarını Rahatlat */
.elite-modal .input-group input[type="date"],
.elite-modal .input-group select {
    text-indent: 35px; /* Yazıyı ikondan uzaklaştırır */
    color: #555 !important;
    font-weight: 500;
}

/* Tarih Inputu İçindeki O Çirkin gg.aa.yyyy Yazısını Gizle (Seçim Yapılana Kadar) */
.elite-modal .input-group input[type="date"]::-webkit-datetime-edit-text,
.elite-modal .input-group input[type="date"]::-webkit-datetime-edit-month-field,
.elite-modal .input-group input[type="date"]::-webkit-datetime-edit-day-field,
.elite-modal .input-group input[type="date"]::-webkit-datetime-edit-year-field {
    color: transparent;
}

/* Bir tarih seçildiğinde yazıyı göster */
.elite-modal .input-group input[type="date"].active::-webkit-datetime-edit-text,
.elite-modal .input-group input[type="date"].active::-webkit-datetime-edit-month-field,
.elite-modal .input-group input[type="date"].active::-webkit-datetime-edit-day-field,
.elite-modal .input-group input[type="date"].active::-webkit-datetime-edit-year-field {
    color: #555 !important;
}

/* Saat Select Alanı İçin Özel Hizalama */
.elite-modal .input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

/* İkonları Tam Hizala */
.elite-modal .input-icon {
    left: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10;
}
/* 1. Saat seçicinin içindeki tüm çakışan metinleri temizle */
.appointment-area select {
    color: transparent !important; /* Seçim yapılana kadar iç metni gizle */
    text-indent: 40px !important; /* Seçilen saati sağa, ikonun yanına it */
}

/* 2. Sadece bir saat seçildiğinde metni görünür yap */
.appointment-area select:focus,
.appointment-area select:valid {
    color: #444 !important;
}

/* 3. Statik etiketi (Saat Seçin yazısını) hizala */
.appointment-area .static-label {
    position: relative;
    z-index: 10;
    margin-left: 5px;
}

/* 4. İkonun (Saat simgesi) konumunu sabitle */
.appointment-area .input-icon {
    left: 15px !important;
    z-index: 11 !important;
    pointer-events: none;
}
/* Telefon ve Ülke Kodu Grubu */
.phone-group {
    display: flex !important;
    align-items: center;
    position: relative;
}

.country-code-wrapper {
    position: absolute;
    left: 45px; /* İkonun hemen yanı */
    z-index: 10;
}

.country-select {
    border: none !important;
    background: transparent !important;
    font-size: 14px;
    font-weight: 600;
    color: #c1a35f;
    cursor: pointer;
    outline: none;
    padding: 0 !important;
    width: auto !important;
}

/* Telefon Inputunun Padding Ayarı */
.phone-group input[type="tel"] {
    padding-left: 100px !important; /* Ülke kodu için yer açtık */
}

/* İkonun yerini sabit tut */
.phone-group .input-icon {
    left: 15px !important;
}
/* Telefon alanını tam genişlik yap */
.iti { 
    width: 100% !important; 
    margin-bottom: 15px;
}

.iti__country-list {
    z-index: 1000001 !important; /* Modalın üstünde kalması için */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#phone {
    padding-left: 90px !important; /* Bayrak alanı için yer açar */
    height: 55px !important;
}
/* Dropdown listesini modalın en üstüne taşı */
.iti--allow-dropdown .iti__country-list {
    z-index: 999999999 !important;
    display: block; /* Test için: Eğer hala gelmiyorsa kütüphane çakışıyordur */
    background: #ffffff !important;
    border: 1px solid #eee !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

/* Tıklanabilir alanı genişlet */
.iti__country-container {
    z-index: 20 !important;
    cursor: pointer !important;
}
.opportunities-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.section-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #00a8b4; /* Fotoğraftaki turkuaz tonu */
    margin-bottom: 40px;
    text-transform: capitalize;
}

/* SADECE OPPORTUNITIES SECTION İÇİNDEKİ GRID */
.opportunities-section .opportunity-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: 280px !important; 
    gap: 20px !important;
    grid-template-areas: 
        "box1 box2 box2"
        "box3 box3 box4"
        "box5 box6 box6" !important;
    width: 100% !important;
}

/* Yerleşimleri sadece bu section içindekiler için sabitle */
.opportunities-section .item-1 { grid-area: box1 !important; }
.opportunities-section .item-2 { grid-area: box2 !important; }
.opportunities-section .item-3 { grid-area: box3 !important; }
.opportunities-section .item-4 { grid-area: box4 !important; }
.opportunities-section .item-5 { grid-area: box5 !important; }
.opportunities-section .item-6 { grid-area: box6 !important; }

/* RESİM VE İÇERİK AYARLARI (Bunlar genel kalabilir ama !important'lara dikkat) */
.opp-item {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 15px !important;
}

.opp-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.opp-item:hover img {
    transform: scale(1.1) !important;
}

.opp-content {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    transition: background 0.4s ease !important;
}

.opp-item:hover .opp-content {
    background: rgba(0, 168, 180, 0.6) !important;
}

/* YAZI RENKLERİ */
.opp-content h4 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 5px !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
}

.opp-content span {
    color: #eeeeee !important;
    font-size: 13px !important;
}

/* MOBİL AYARLARI */
@media (max-width: 992px) {
    .opportunities-section .opportunity-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-areas: none !important;
    }

    .opportunities-section .opp-item {
        height: 250px !important;
        grid-area: auto !important;
    }
}