/* ==========================================
   GarantiProje - Luxe Light Theme (Açık Tema)
   ========================================== */

/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* 2. DEĞİŞKENLER VE LOGO UYUMLU PALET */
:root {
    --primary-green: #38c172;
    --green-light: rgba(56, 193, 114, 0.1);
    --primary-blue: #0284c7;
    --sun-yellow: #f59e0b;
    
    --bg-main: #f8fafc;
    --header-bg: rgba(255, 255, 255, 0.92);
    --card-white: #ffffff;
    --dropdown-bg: #ffffff;
    
    --text-dark: #0f172a;
    --text-sub: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 20px 40px -15px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 25px 50px -12px rgba(56, 193, 114, 0.15);
}

/* 3. RESET & TEMEL ZEMİN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.relative-z {
    position: relative;
    z-index: 2;
}

body::before {
    content: '';
    position: fixed;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 193, 114, 0.08) 0%, rgba(2, 132, 199, 0.04) 50%, transparent 80%);
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

/* 4. BEYAZ LUXE NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none !important;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green);
}

.drop-icon {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* 5. AÇIK TEMA MEGA DROPDOWN TASARIMI */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--dropdown-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .drop-icon {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.dropdown-menu.services-mega {
    width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.dropdown-menu.projects-mega {
    width: 480px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: var(--green-light);
    border-color: rgba(56, 193, 114, 0.2);
    transform: translateX(4px);
}

.menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(56, 193, 114, 0.12);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.dropdown-item:hover .menu-icon {
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(56, 193, 114, 0.35);
}

.menu-title {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
}

.menu-featured-card {
    background: linear-gradient(180deg, var(--green-light) 0%, #ffffff 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.featured-tag {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 1.2px;
    margin-bottom: 0.3rem;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.featured-link {
    font-size: 0.8rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    transition: var(--transition);
}

.featured-link:hover {
    color: var(--primary-green);
    transform: translateX(3px);
}

.header-right-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.3rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-icons a {
    color: var(--text-sub);
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffffff;
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(56, 193, 114, 0.3);
}

.header-slogan {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.header-slogan .green-text {
    color: var(--primary-green);
    font-weight: 800;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2bb063 100%);
    color: #ffffff !important;
    padding: 0.7rem 1.6rem !important;
    border-radius: 8px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(56, 193, 114, 0.25);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 193, 114, 0.4);
}

/* 6. HERO SHOWCASE */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 1.5rem 6rem 1.5rem;
    overflow: hidden;
}

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

.hero-bg-slider .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, transform 8s ease;
    transform: scale(1.05);
}

.hero-bg-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.88) 0%, rgba(248, 250, 252, 0.96) 100%);
    backdrop-filter: blur(5px);
}

.hero-container {
    max-width: 950px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge-wrap {
    margin-bottom: 1.5rem;
}

.hero-luxe-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    padding: 0.6rem 1.6rem !important;
    font-size: 0.88rem !important;
    border-radius: 100px;
    font-weight: 700;
}

.green-glow {
    color: var(--primary-green);
    font-size: 0.95rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.2px;
}

.hero-green-glow {
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green) 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-sub);
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.65;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.5rem;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2bb063 100%);
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(56, 193, 114, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(56, 193, 114, 0.45);
}

.btn-glass {
    background: #ffffff !important;
    border: 1.5px solid var(--border-color) !important;
    color: var(--text-dark) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.btn-glass:hover {
    border-color: var(--primary-green) !important;
    color: var(--primary-green) !important;
    transform: translateY(-3px);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.6rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(56, 193, 114, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-info {
    text-align: left;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-sub);
    font-weight: 600;
}

.hero-filter-bar {
    position: relative;
    z-index: 10;
    margin-top: 3rem;
    width: 100%;
}

.filter-box {
    background: #ffffff;
    padding: 1.2rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 2rem;
    align-items: center;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.filter-item label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-item select {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    cursor: pointer;
    padding-right: 1rem;
}

.filter-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2bb063 100%);
    color: #ffffff;
    border: none;
    padding: 0.95rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 20px rgba(56, 193, 114, 0.3);
    white-space: nowrap;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(56, 193, 114, 0.45);
}

/* 7. İNTERAKTİF YATIRIM ŞEMASI */
.investment-showcase-section {
    padding: 5rem 0;
    background: radial-gradient(circle at center, rgba(56, 193, 114, 0.05) 0%, #f8fafc 70%);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.investment-hub-wrapper {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
    position: relative;
}

.investment-hub-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    z-index: 0;
    opacity: 0.3;
}

.hub-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.hub-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 1.4rem 1.6rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    opacity: 1 !important;
    transform: none !important;
}

.hub-card:hover {
    transform: translateY(-4px) !important;
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(56, 193, 114, 0.18);
}

.hub-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(56, 193, 114, 0.12);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.hub-card:hover .hub-icon {
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(56, 193, 114, 0.35);
}

.hub-text h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.hub-text p {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.45;
}

.hub-center-circle {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.center-core {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(56, 193, 114, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hub-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.3rem;
}

.center-core span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1px;
    line-height: 1.2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(56, 193, 114, 0.5);
    animation: spin 15s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 8. INTRO & NE SAĞLIYORUZ BÖLÜMLERİ */
.intro-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.intro-text {
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.intro-banner {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

.services-overview-section {
    position: relative;
    padding: 7rem 0;
    background-color: #f1f5f9;
    background-image: url('../assets/images/interior-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 250, 252, 0.92);
    z-index: 1;
}

.main-blue-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    margin: 0 auto 3.5rem auto;
    border-radius: 2px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(56, 193, 114, 0.12);
    border-color: rgba(56, 193, 114, 0.3);
}

.circle-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -5.5rem auto 1.8rem auto;
    font-size: 2.5rem;
    color: var(--text-dark);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.circle-icon.main-logo-icon img {
    width: 75px;
    height: auto;
    object-fit: contain;
}

.card-green-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.card-desc {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--primary-green);
    font-size: 1.8rem;
    opacity: 0.4;
    margin-bottom: 1rem;
}

.btn-card-outline {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.btn-card-outline:hover {
    background: var(--primary-green);
    color: #ffffff;
}

/* 9. BENTO GRID (DAMALI KAMPANYA IZGARASI) */
.campaigns-grid-section {
    padding: 6rem 0;
    background: #ffffff;
}

.slogan-sub {
    font-size: 1rem;
    color: var(--text-sub);
    font-weight: 600;
    margin-bottom: 3.5rem;
}

.slogan-sub .green-text {
    color: var(--primary-green);
    font-weight: 800;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.bento-box {
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.bento-text-box {
    background: #e8f5e9;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(56, 193, 114, 0.2);
}

.bento-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(56, 193, 114, 0.15);
    background: #e0f2f1;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.bento-desc {
    color: var(--text-sub);
    font-size: 0.92rem;
    line-height: 1.65;
}

.bento-img-box {
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.bento-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bento-img-box:hover img {
    transform: scale(1.04);
}

/* 10. EMLAK HABERLERİ STİLLERİ */
.news-section {
    padding: 6rem 0;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.news-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(56, 193, 114, 0.12);
    border-color: rgba(56, 193, 114, 0.3);
}

.news-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 0.8rem;
}

.news-excerpt {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.55;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.news-link {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.news-link:hover {
    transform: translateX(4px);
    color: var(--primary-blue);
}

/* 11. RESPONSIVE MOBİL UYUM */
@media (max-width: 1200px) {
    .header-right-box {
        display: none;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block !important;
    }

    .logo-img {
        height: 58px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-main);
        padding: 2rem;
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .dropdown-menu {
        position: static;
        width: 100% !important;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 0.5rem 0 0 1rem;
        display: none;
        grid-template-columns: 1fr !important;
    }

    .dropdown.active .dropdown-menu {
        display: grid;
    }

    .menu-featured-card {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats-grid,
    .filter-box,
    .intro-grid,
    .services-cards-grid,
    .bento-grid,
    .news-grid,
    .investment-hub-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investment-hub-wrapper::before {
        display: none;
    }

    .hub-center-circle {
        order: -1;
    }

    .circle-icon {
        margin-top: -4.5rem;
    }

    .bento-img-box {
        height: 240px;
    }
}
/* ==========================================
   STABİL VE SADE PRELOADER STİLLERİ
   ========================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-align: center;
}

/* LOGO VE ETRAFINDAKİ YUMUŞAK DÖNEN HALKA */
.logo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(56, 193, 114, 0.15);
    border-top-color: var(--primary-green);
    animation: smoothSpin 1.2s linear infinite;
    z-index: 1;
}

@keyframes smoothSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* İLERLEME BARI */
.loader-bar {
    width: 140px;
    height: 3px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 10px;
    animation: fillProgress 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ==========================================
   STABİL VE SADE PRELOADER STİLLERİ
   ========================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-align: center;
}

/* LOGO VE ETRAFINDAKİ YUMUŞAK DÖNEN HALKA */
.logo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    height: 65px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(56, 193, 114, 0.15);
    border-top-color: var(--primary-green);
    animation: smoothSpin 1.2s linear infinite;
    z-index: 1;
}

@keyframes smoothSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* İLERLEME BARI */
.loader-bar {
    width: 140px;
    height: 3px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 10px;
    animation: fillProgress 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-status-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-sub);
    letter-spacing: 0.5px;
}
/* ==========================================
   MULTI LANGUAGE (ÇOKLU DİL) & RTL STİLLERİ
   ========================================== */

.right-top-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Dil Seçici Butonu */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.lang-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.flag-icon {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-green);
}

.lang-drop-icon {
    font-size: 0.65rem;
    transition: var(--transition);
}

.lang-switcher.active .lang-drop-icon {
    transform: rotate(180deg);
}

/* Dil Dropdown Menüsü */
.lang-dropdown {
    position: absolute;
    top: 125%;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.4rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 0.45rem 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.lang-option:hover, .lang-option.active {
    background: var(--green-light);
    color: var(--primary-green);
}

/* ARAPÇA SAĞDAN SOLA (RTL) DÜZEN DESTEĞİ */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .nav-container,
html[dir="rtl"] .intro-grid,
html[dir="rtl"] .stat-card,
html[dir="rtl"] .filter-item,
html[dir="rtl"] .hub-card {
    direction: rtl;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}
/* ==========================================
   LOGO RENGİYLE %100 UYUMLU LUXE LIGHT FOOTER
   ========================================== */

.footer-section {
    background: #ffffff;
    color: var(--text-dark);
    position: relative;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.02);
}

/* 1. NEWSLETTER (BÜLTEN) ABONELİK BARI */
.footer-newsletter {
    position: relative;
    top: -45px;
    margin-bottom: -15px;
    z-index: 10;
}

.newsletter-box {
    background: #ffffff;
    border: 1px solid rgba(56, 193, 114, 0.3);
    border-radius: 20px;
    padding: 2.2rem 2.8rem;
    box-shadow: 0 15px 35px rgba(56, 193, 114, 0.08);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: center;
}

.news-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1.5px;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.2rem 0;
}

.newsletter-text p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.5;
}

.newsletter-form .input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.newsletter-form .input-group i {
    position: absolute;
    left: 1.2rem;
    color: var(--primary-green);
    font-size: 1.1rem;
    z-index: 2;
}

.newsletter-form input {
    width: 100%;
    padding: 1.05rem 9.5rem 1.05rem 3.2rem; /* Butona yer açmak için sağ pading genişletildi */
    border-radius: 12px;
    border: 1.5px solid var(--border-color);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(56, 193, 114, 0.15);
}

/* ABONE OL BUTONU DÜZELTİLDİ (YAZI VE İKON SIKIŞMASI GİDERİLDİ) */
.btn-subscribe {
    position: absolute;
    right: 6px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2bb063 100%);
    color: #ffffff !important;
    border: none;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap; /* A harfinin ve metnin kırılmasını önler */
    box-shadow: 0 4px 12px rgba(56, 193, 114, 0.25);
}

.btn-subscribe i {
    position: static !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 193, 114, 0.4);
}

.newsletter-msg {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* 2. ANA FOOTER IZGARASI (LOGO YEŞİLİ & AÇIK TEMA) */
.footer-main {
    padding: 3rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

/* Logo Filtresi Kaldırıldı: Orijinal Yeşil Amblem Görünecek */
.footer-logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: none !important;
}

.footer-about {
    color: var(--text-sub);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-light);
    border: 1px solid rgba(56, 193, 114, 0.2);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(56, 193, 114, 0.3);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.4rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-sub);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-contact-list i {
    color: var(--primary-green);
    font-size: 1.05rem;
}

.footer-contact-list a {
    color: var(--text-sub);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary-green);
}

/* 3. FOOTER BOTTOM */
.footer-bottom {
    background: #f8fafc;
    padding: 1.4rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.84rem;
    color: var(--text-sub);
    font-weight: 500;
}

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

.legal-links {
    display: flex;
    gap: 0.8rem;
}

.legal-links a {
    color: var(--text-sub);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary-green);
}

@media (max-width: 992px) {
    .newsletter-box,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* ==========================================
   ALT SAYFA BAŞLIK (PAGE HEADER) STİLLERİ
   ========================================== */

.page-header-section {
    padding: 9rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #edf7f2 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.page-subtitle {
    font-size: 1.05rem;
    color: var(--text-sub);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-padding {
    padding: 5rem 0;
}
/* ==========================================
   HAKKIMIZDA SAYFASI ÖZEL YENİ STİLLER
   ========================================== */

/* 1. RAKAMLARLA BANNER */
.about-stats-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, #228b4c 100%);
    color: #ffffff;
    padding: 3.5rem 0;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(56, 193, 114, 0.2);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-desc {
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.95;
    max-width: 220px;
}

/* 2. SÜREÇ / WORKFLOW KARTLARI */
.workflow-section {
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolonlu, 2 Satırlı Dengeli Düzen */
    gap: 1.8rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.3;
    margin-bottom: 0.8rem;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-stats-grid,
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-stats-grid,
    .workflow-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   FIRSATLAR SAYFASI & ŞEMATİK TAKAS STİLLERİ
   ========================================== */

/* 1. ŞEMATİK TAKAS BARI */
.trade-schema-section {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.trade-schema-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    position: relative;
}

.schema-node {
    flex: 1;
}

.schema-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem 1.6rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.schema-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(56, 193, 114, 0.15);
}

.featured-schema {
    border: 2px solid var(--primary-green);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.schema-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.2rem auto;
}

.schema-icon-wrap.main-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.schema-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.schema-card p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.55;
}

/* ŞEMA BAĞLANTI ANİMASYONU */
.schema-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: 140px;
}

.pulse-line {
    width: 100%;
    height: 3px;
    background: rgba(56, 193, 114, 0.25);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.pulse-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    animation: flowLine 2s infinite linear;
}

@keyframes flowLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.connector-badge {
    background: #ffffff;
    border: 1px solid var(--primary-green);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 10px rgba(56, 193, 114, 0.15);
    white-space: nowrap;
}

/* 2. FIRSAT KARTLARI (OPPORTUNITIES GRID) */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.opp-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.opp-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.featured-opp {
    border: 2px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(56, 193, 114, 0.12);
}

.opp-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.gold-badge {
    background: var(--primary-green);
}

.opp-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: var(--green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.opp-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.opp-card p {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.55;
    margin-bottom: 1.2rem;
}

.opp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.opp-list li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.opp-list i {
    color: var(--primary-green);
    font-size: 0.85rem;
}

.opp-btn {
    background: #f1f5f9;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.opp-btn:hover {
    background: var(--primary-green);
    color: #ffffff;
}

.btn-green {
    background: var(--primary-green);
    color: #ffffff;
}

.btn-green:hover {
    background: #2bb063;
}

/* 3. BAŞVURU BANI */
.trade-apply-banner {
    background: #ffffff;
    padding: 3.5rem 0 1.5rem 0;
    margin-bottom: 3.5rem; /* Footer ile arasındaki sıkışıklığı çözen mesafe */
}
/* ==========================================
   DÜZELTİLMİŞ BAŞVURU BANI & BUTON STİLLERİ
   ========================================== */

/* ==========================================
   LUXE LIGHT "BİZE ULAŞIN" YENİ TASARIM
   ========================================== */

.trade-apply-banner {
    background: #ffffff;
    padding: 3.5rem 0 1.5rem 0;
}

.apply-box-light {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 1.5px solid rgba(56, 193, 114, 0.35);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 12px 35px rgba(56, 193, 114, 0.08);
    position: relative;
    overflow: hidden;
}

.apply-box-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-green);
}

.apply-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 1.5px;
}

.apply-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.2rem 0 0.4rem 0;
}

.apply-content p {
    font-size: 0.9rem;
    color: var(--text-sub);
    max-width: 520px;
    line-height: 1.55;
}

.apply-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* YENİ WHATSAPP BUTONU */
.btn-wa-apply {
    background: #25d366;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.btn-wa-apply i {
    font-size: 1.25rem !important;
}

.btn-wa-apply:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* YENİ TELEFON BUTONU */
.btn-phone-apply {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark) !important;
    text-decoration: none;
    padding: 0.88rem 1.4rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.btn-phone-apply i {
    color: var(--primary-green) !important;
    font-size: 1rem !important;
}

.btn-phone-apply:hover {
    border-color: var(--primary-green);
    color: var(--primary-green) !important;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .apply-box-light {
        flex-direction: column;
        text-align: center;
        padding: 2.2rem 1.8rem;
    }
    .apply-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-wa-apply, .btn-phone-apply {
        width: 100%;
    }
}

/* YENİ WHATSAPP BUTONU (TAŞMA VE SIKIŞMA ÇÖZÜLDÜ) */
.btn-wa-apply {
    background: #25d366;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.btn-wa-apply i {
    font-size: 1.25rem !important;
}

.btn-wa-apply:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* YENİ TELEFON BUTONU (Koyu Metin & Yeşil İkon) */
.btn-phone-apply {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    color: var(--text-dark) !important;
    text-decoration: none;
    padding: 0.88rem 1.4rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.btn-phone-apply span {
    color: var(--text-dark) !important;
}

.btn-phone-apply i {
    color: var(--primary-green) !important;
    font-size: 1rem !important;
}

.btn-phone-apply:hover {
    border-color: var(--primary-green);
    background: #f0fdf4;
    transform: translateY(-2px);
}

.btn-phone-apply i {
    color: var(--primary-green) !important;
    font-size: 1rem !important;
}

.btn-phone-apply:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .apply-box {
        flex-direction: column;
        text-align: center;
        padding: 2.2rem 1.8rem;
    }
    .apply-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-wa-apply, .btn-phone-apply {
        width: 100%;
    }
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary-green);
    background: rgba(56, 193, 114, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .trade-schema-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .schema-connector {
        width: 100%;
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apply-box {
        flex-direction: column;
        text-align: center;
    }

    .apply-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   KURUMSAL HİZMETLER ÖZEL KART DÜZENİ
   ========================================== */

.corp-service-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.corp-service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.corp-service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(56, 193, 114, 0.1);
}

.corp-card-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.corp-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.corp-header-info {
    position: relative;
    width: 100%;
}

.corp-step {
    position: absolute;
    top: -5px;
    right: 0;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.2;
}

.corp-header-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.corp-short {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
    line-height: 1.5;
}

.corp-card-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 1.8rem;
}

.corp-desc-box h4,
.corp-scope-box h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.corp-desc-box p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.65;
}

.scope-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.scope-grid li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.scope-grid i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.corp-card-footer {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid #edf2f7;
}

.value-add-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.value-add-badge i {
    color: #eab308; /* Altın rengi kupa simgesi */
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .corp-card-body {
        grid-template-columns: 1fr;
    }
}
/* Ekosistem Menü Vurgusu */
.dropdown-menu .highlighted-item {
    background: rgba(46, 204, 113, 0.08) !important;
    border-left: 3px solid #2ecc71;
    font-weight: 700;
}

.dropdown-menu .highlighted-item .menu-icon {
    color: #2ecc71 !important;
}

.dropdown-menu .highlighted-item:hover {
    background: rgba(46, 204, 113, 0.18) !important;
}
/* Ekosistem Menü Vurgu Stili */
.dropdown-menu .eco-highlight {
    background-color: rgba(46, 204, 113, 0.12) !important;
    border-left: 3px solid #2ecc71 !important;
}

.dropdown-menu .eco-highlight .menu-title {
    color: #2ecc71 !important;
    font-weight: 700 !important;
}

.dropdown-menu .eco-highlight .menu-icon i {
    color: #2ecc71 !important;
}

.dropdown-menu .eco-highlight:hover {
    background-color: rgba(46, 204, 113, 0.25) !important;
}
/* ==========================================


/* ==========================================
   EKOSİSTEM HERO (HAKKIMIZDA SAYFASIYLA %100 AYNI HAFİF YEŞİL GRADIENT)
   ========================================== */

.eco-hero-section {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    color: #0f172a;
    text-align: center;
    overflow: hidden;
}

.eco-bg-glow {
    display: none;
}

.eco-tag {
    color: #2ecc71 !important;
    background: rgba(46, 204, 113, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.eco-title {
    color: #0f172a !important;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.eco-sub {
    color: #64748b !important;
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

/* HUB & CORE KISMI */
.eco-hub-section {
    background: #f8fafc;
}

.eco-hub-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* DEVA BÜYÜKLÜKTEKİ LOGO SIKINTISINI ÇÖZEN YER */
.eco-core-node {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.core-inner {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 3px solid #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    text-align: center;
    z-index: 2;
}

.core-inner img {
    max-width: 105px !important;
    height: auto !important;
    margin-bottom: 0 !important; /* Alt boşluk sıfırlandı, tam ortalandı */
}

.core-inner span {
    font-size: 11px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.5px;
}

/* PULSE ANİMASYONLARI */
.core-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(46, 204, 113, 0.4);
    animation: ecoPulse 3s infinite ease-out;
}

.core-pulse-ring.delay-1 {
    animation-delay: 1.5s;
}

@keyframes ecoPulse {
    0% { width: 160px; height: 160px; opacity: 1; }
    100% { width: 320px; height: 320px; opacity: 0; }
}

/* NODE GRID YAPISI */
.eco-nodes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1100px;
}

.eco-node-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.eco-node-card:hover {
    transform: translateY(-5px);
    border-color: #2ecc71;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.12);
}

.node-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.node-step {
    font-size: 11px;
    font-weight: 800;
    color: #2ecc71;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.node-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.node-info p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ==========================================
   SAĞLI SOLLU (ZİG-ZAG) EKOSİSTEM AKIŞ ÇİZELGESİ
   ========================================== */

.eco-flow-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

/* ORTADAKİ DİKEY ÇİZGİ */
.eco-flow-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.2) 0%, #2ecc71 50%, rgba(46, 204, 113, 0.2) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.flow-step-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

/* TEK SAYILAR (1, 3, 5) -> SOLDA */
.flow-step-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* ÇİFT SAYILAR (2, 4) -> SAĞDA */
.flow-step-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* İÇ KART KUTUSU */
.step-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
}

.flow-step-item:hover .step-content {
    transform: translateY(-5px);
    border-color: #2ecc71;
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.12);
}

/* SOL VE SAĞ KARTLAR İÇİN YEŞİL KENAR ÇİZGİSİ */
.flow-step-item:nth-child(odd) .step-content {
    border-right: 4px solid #2ecc71;
}

.flow-step-item:nth-child(even) .step-content {
    border-left: 4px solid #2ecc71;
}

/* ORTADAKİ YEŞİL DÜĞME / NOKTA (NODE) */
.flow-step-item::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 4px solid #2ecc71;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
    transition: all 0.3s ease;
}

.flow-step-item:nth-child(odd)::after {
    right: -10px;
}

.flow-step-item:nth-child(even)::after {
    left: -10px;
}

.flow-step-item:hover::after {
    background: #2ecc71;
    transform: scale(1.2);
}

/* NUMARA VE BAŞLIK AYARLARI */
.step-num {
    font-size: 28px;
    font-weight: 800;
    color: #2ecc71;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
    display: inline-block;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* MOBİL EKRAN UYUMU (Telefonda otomatik düz çizelgeye döner) */
@media (max-width: 768px) {
    .eco-flow-timeline::before {
        left: 20px;
    }
    
    .flow-step-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .flow-step-item::after {
        left: 10px !important;
    }
    
    .flow-step-item:nth-child(odd) .step-content,
    .flow-step-item:nth-child(even) .step-content {
        border-right: none;
        border-left: 4px solid #2ecc71;
    }
}
/* Bağımsız Ekosistem Menü Butonu */
.nav-menu .eco-nav-link {
    color: #2ecc71 !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu .eco-nav-link i {
    font-size: 14px;
}

.nav-menu .eco-nav-link:hover {
    color: #27ae60 !important;
}
/* Yasal Sayfalar Metin Düzeni */
.legal-content-section {
    background: #ffffff;
}

.legal-text-box {
    max-width: 900px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.8;
}

.legal-text-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 35px 0 12px;
    border-bottom: 2px solid rgba(46, 204, 113, 0.2);
    padding-bottom: 8px;
}

.legal-text-box h2:first-child {
    margin-top: 0;
}

.legal-text-box p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #64748b;
}

.legal-text-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text-box ul li {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 8px;
}
/* ==========================================
   YASAL / KVKK METİN STİLLERİ
   ========================================== */

.legal-content-section {
    background: #ffffff;
}

.legal-text-wrapper {
    max-width: 950px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.8;
}

.company-address-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2ecc71;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 35px;
}

.company-address-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.company-address-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.legal-article {
    margin-bottom: 35px;
}

.legal-article h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(46, 204, 113, 0.2);
    padding-bottom: 8px;
}

.legal-article p {
    font-size: 15px;
    color: #475569;
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 15px 0 20px 20px;
    list-style-type: disc;
}

.legal-article ul li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.legal-box-highlight {
    background: #f0fdf4;
    border: 1px solid rgba(46, 204, 113, 0.3);
    padding: 25px 30px;
    border-radius: 16px;
    margin-bottom: 35px;
}

.legal-box-highlight h3 {
    font-size: 18px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 12px;
}

.legal-box-highlight p {
    font-size: 14px;
    color: #15803d;
    margin-bottom: 10px;
}

.legal-box-highlight ol {
    margin-left: 20px;
}

.legal-box-highlight ol li {
    font-size: 14px;
    color: #166534;
    margin-bottom: 6px;
}
/* ==========================================
   PREMİUM İLETİŞİM SAYFASI STİLLERİ
   ========================================== */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 25px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #2ecc71;
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.12);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-box {
    background: #2ecc71;
    color: #ffffff;
}

.wa-card .contact-icon-box {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.wa-card:hover .contact-icon-box {
    background: #25d366;
    color: #ffffff;
}

.card-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.contact-info-content p {
    font-size: 13px;
    color: #64748b;
}

/* Form ve Harita Yan Yana */
.contact-body-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

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

.form-tag {
    color: #2ecc71;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #64748b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 45px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.textarea-wrapper i {
    top: 18px;
}

.input-wrapper textarea {
    resize: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    background: #ffffff;
    border-color: #2ecc71;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i {
    color: #2ecc71;
}

/* Checkbox & Button */
.form-bottom-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
}

.checkbox-container a {
    color: #2ecc71;
    text-decoration: underline;
}

.btn-submit-contact {
    background: #2ecc71;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.25);
}

.btn-submit-contact:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(46, 204, 113, 0.35);
}

.form-status-msg {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
}

.form-status-msg.success {
    display: block;
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

/* Harita Tarafı */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-card-info {
    background: #0f172a;
    color: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.map-logo {
    height: 40px;
    width: auto;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 8px;
}

.map-info-header h4 {
    font-size: 16px;
    font-weight: 800;
}

.map-info-header p {
    font-size: 13px;
    color: #94a3b8;
}

.map-full-address {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-full-address i {
    color: #2ecc71;
    margin-right: 6px;
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-map-directions:hover {
    background: #2ecc71;
    color: #ffffff;
}

.map-iframe-box {
    flex-grow: 1;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Responsive Düzenleme */
@media (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-body-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-bottom-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-submit-contact {
        justify-content: center;
    }
}
/* ==========================================
   PROJELER SAYFASI STİLLERİ
   ========================================== */

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

.project-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #2ecc71;
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.15);
}

.project-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.badge-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2ecc71;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-overlay-wa {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-card:hover .btn-overlay-wa {
    transform: translateY(0);
}

.project-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-location {
    font-size: 13px;
    color: #2ecc71;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
}

.feat-item {
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-item i {
    color: #2ecc71;
    width: 16px;
}

.progress-box {
    margin-top: auto;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 700;
}

.progress-info strong {
    color: #2ecc71;
}

.progress-bar-bg {
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    border-radius: 10px;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   TAMAMLANAN PROJELER ÖZEL STİLLERİ
   ========================================== */

.completed-card {
    opacity: 0.92;
    transition: all 0.3s ease;
}

.completed-card:hover {
    opacity: 1;
    border-color: #94a3b8 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.badge-done {
    background: #64748b !important; /* Pasif gri elit rozet */
    color: #ffffff;
}

.completed-footer-status {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #166534;
}

.completed-footer-status i {
    color: #2ecc71;
    font-size: 15px;
}
/* ==========================================
   PROJE FİLTRELEME ALANI STİLLERİ
   ========================================== */

.project-filter-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label i {
    color: #2ecc71;
}

.filter-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

.filter-btn.active {
    background: #2ecc71;
    color: #ffffff;
    border-color: #2ecc71;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.25);
}

/* Filtreleme Gizlenme / Gösterilme Animasyonu */
.project-card.filter-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .project-filter-wrapper {
        padding: 20px;
    }
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .filter-label {
        min-width: 100%;
    }
}
/* ==========================================
   PREMİUM AÇILIR MENÜ (DROPDOWN FİLTRE)
   ========================================== */

.project-filter-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.filter-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.filter-select-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-select-group label {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select-group label i {
    color: #2ecc71;
    font-size: 15px;
}

.custom-select-box {
    position: relative;
    width: 100%;
}

.custom-select-box select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 45px 14px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.custom-select-box select:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

.custom-select-box select:focus {
    background: #ffffff;
    border-color: #2ecc71;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
}

.custom-select-box .select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    font-size: 14px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select-box select:focus + .select-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Dynamic Filter Hide Class */
.project-card.filter-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .filter-dropdown-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
/* ==========================================
   DEVAM EDEN PROJELER BARS & BADGES
   ========================================== */

/* Rozet Renkleri */
.badge-tapu {
    background: #166534 !important; /* Koyu Prestij Yeşili */
    color: #ffffff;
}

.badge-faiz {
    background: #0f172a !important; /* Koyu Elit Lacivert/Siyah */
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.completed-text {
    color: #166534 !important;
}

.loading-text {
    color: #2ecc71 !important;
}

.completed-fill {
    background: #2ecc71 !important;
}

/* SÜREKLİ YÜKLENEN ANİMASYONLU BAR (36 AY 0 FAİZ İÇİN) */
.animated-loading-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(
        90deg, 
        rgba(46, 204, 113, 0.2) 0%, 
        rgba(46, 204, 113, 0.9) 50%, 
        rgba(46, 204, 113, 0.2) 100%
    );
    background-size: 200% 100%;
    animation: continuousLoading 2s infinite linear;
    border-radius: 10px;
}

@keyframes continuousLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/* Proje Kartı Overlay Detay Butonu */
.btn-overlay-details {
    background: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.project-card:hover .btn-overlay-details {
    transform: translateY(0);
    background: #27ae60;
}
/* Sağ Üst "Satışa Açık" Rozeti */
.badge-on-sale {
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-on-sale i {
    color: #2ecc71;
    font-size: 8px;
    animation: pulseDot 1.5s infinite ease-in-out;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Kartın Sağ Altındaki Avantaj Vurgusu */
.card-advantage-tag {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #2ecc71;
}

.card-advantage-tag i {
    font-size: 13px;
}
/* ==========================================
   PROJE DETAY SAYFALARI ÖZEL STİLLERİ
   ========================================== */

.project-detail-hero {
    position: relative;
    height: 480px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 10s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.85) 100%);
}

.project-hero-content {
    color: #ffffff;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.badge-advantage {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    color: #2ecc71;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
}

.project-detail-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.project-detail-location {
    font-size: 16px;
    color: #cbd5e1;
}

.project-detail-location i {
    color: #2ecc71;
    margin-right: 6px;
}

/* Künye Bar */
.project-stats-bar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 25px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.stat-card i {
    font-size: 26px;
    color: #2ecc71;
}

.stat-card h4 {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

.stat-card p {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

/* Ana İçerik Grid */
.project-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2, .info-block h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
}

.info-block p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.amenities-list li {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list li i {
    color: #2ecc71;
}

/* Sağ Form Kolonu */
.sidebar-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: sticky;
    top: 100px;
}

.sidebar-form-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.sidebar-form-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.sidebar-form .form-group {
    margin-bottom: 15px;
}

.sidebar-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.sidebar-form input, .sidebar-form select {
    width: 100%;
    padding: 12px 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
}

.btn-sidebar-send {
    width: 100%;
    background: #2ecc71;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-sidebar-send:hover {
    background: #27ae60;
}

.sidebar-wa-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.sidebar-wa-box p {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-sidebar-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-main-grid {
        grid-template-columns: 1fr;
    }
    .amenities-list {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   LÜKS SOSYAL OLANAKLAR GRID
   ========================================== */

.amenities-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.amenity-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    background: #ffffff;
    border-color: #2ecc71;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.12);
}

.amenity-icon {
    width: 45px;
    height: 45px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px auto;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: #2ecc71;
    color: #ffffff;
}

.amenity-card h4 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.amenity-card p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0;
}

/* ==========================================
   PREMİUM 6'LI FOTO GALERİ
   ========================================== */

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #2ecc71;
}

.map-sub-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.map-sub-desc i {
    color: #2ecc71;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .amenities-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .amenities-grid-luxury {
        grid-template-columns: 1fr;
    }
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   SEMBOLİK BÖLGE HARİTASI (RADAR / CIRCLE)
   ========================================== */

.symbolic-map-container {
    position: relative;
    width: 100%;
    height: 380px;
    background: #0f172a url('../images/istanbul-map-dark.webp') center/cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.2);
}

.symbolic-map-container iframe {
    position: absolute;
    inset: 0;
    pointer-events: none; /* Haritanın kaymasını engelleyip sabit tutar */
}

/* Radar Çemberleri */
.radar-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(46, 204, 113, 0.35);
    pointer-events: none;
}

.circle-15km {
    width: 320px;
    height: 320px;
    border-style: solid;
    border-color: rgba(46, 204, 113, 0.25);
    background: rgba(46, 204, 113, 0.03);
}

.circle-10km {
    width: 220px;
    height: 220px;
}

.circle-5km {
    width: 120px;
    height: 120px;
}

/* Artı Gösterge Çizgileri */
.radar-crosshair-v {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(46, 204, 113, 0.2), transparent);
}

.radar-crosshair-h {
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.2), transparent);
}

/* Merkez Pin ve Dalga Animasyonu */
.map-center-pin {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-icon {
    width: 44px;
    height: 44px;
    background: #2ecc71;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.8);
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    top: 10px;
    width: 24px;
    height: 24px;
    background: rgba(46, 204, 113, 0.6);
    border-radius: 50%;
    animation: mapPulse 2s infinite ease-out;
}

@keyframes mapPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    100% {
        transform: scale(4.5);
        opacity: 0;
    }
}

.pin-label {
    margin-top: 10px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 204, 113, 0.4);
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
}

.pin-label strong {
    display: block;
    font-size: 13px;
    color: #ffffff;
}

.pin-label span {
    font-size: 10px;
    color: #2ecc71;
    font-weight: 700;
}

/* Sol Alt Çap Rozeti */
.map-info-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    z-index: 5;
}

.map-info-badge i {
    font-size: 20px;
    color: #2ecc71;
}

.map-info-badge strong {
    display: block;
    font-size: 12px;
}

.map-info-badge span {
    font-size: 11px;
    color: #94a3b8;
}

@media (max-width: 576px) {
    .circle-15km { width: 250px; height: 250px; }
    .map-info-badge { bottom: 10px; left: 10px; right: 10px; }
}
/* ==========================================
   HERO BANNER ROZET BİNME FİXİ (GARANTİ STİL)
   ========================================== */

.project-detail-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    padding-top: 100px;
    overflow: hidden;
    background-color: #0f172a;
}

.hero-container-flex {
    width: 100%;
}

.project-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
}

/* Rozet Kapsayıcısı */
.hero-badges-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px 14px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
}

/* Tekil Rozet Kutusu */
.hero-badge-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    position: relative !important;
    inset: auto !important;
    transform: none !important;
}

/* Rozet Özel Renkleri */
.hero-badge-item.badge-tapu {
    background: #166534 !important;
    color: #ffffff !important;
}

.hero-badge-item.badge-on-sale {
    background: rgba(15, 23, 42, 0.85) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
}

.hero-badge-item.badge-on-sale i {
    color: #2ecc71 !important;
    font-size: 8px !important;
}

.hero-badge-item.badge-advantage {
    background: rgba(46, 204, 113, 0.2) !important;
    border: 1px solid #2ecc71 !important;
    color: #2ecc71 !important;
}

/* Başlık Metni */
.project-detail-title {
    font-size: 40px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    display: block !important;
    position: relative !important;
}

.project-detail-location {
    font-size: 16px !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    position: relative !important;
}

.project-detail-location i {
    color: #2ecc71 !important;
}
/* ==========================================
   TÜM PROJELERE DÖN BUTONU STİLİ
   ========================================== */

.btn-back-to-projects {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-back-to-projects:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #ffffff !important;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.35);
}

.btn-back-to-projects i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-back-to-projects:hover i {
    transform: translateX(-3px);
}
/* Stats Bar İkon & Metin Esnek Düzen Fix */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 18px 20px !important;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-icon-box {
    font-size: 24px;
    color: #2ecc71;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-text-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; /* Yazı taşmasını engeller */
}

.stat-text-box h4 {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.stat-text-box p {
    font-size: 15px;
    color: #0f172a;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

/* Arapça Modu İçin Hizalama */
html[dir="rtl"] .stat-card {
    text-align: right !important;
}

html[dir="rtl"] .stat-text-box {
    align-items: flex-start !important;
}
/* ==========================================
   ARAPÇA MODUNDA MENÜ VE HEADER'I NORMAL (LTR) TUTMA
   ========================================== */
html[dir="rtl"] .navbar,
html[dir="rtl"] header,
html[dir="rtl"] .nav-container,
html[dir="rtl"] .nav-menu,
html[dir="rtl"] .header-right-box {
    direction: ltr !important;
    text-align: left !important;
}

/* Menü içindeki dropdown açılır pencerelerin yönünü düzeltme */
html[dir="rtl"] .dropdown-menu {
    direction: ltr !important;
    text-align: left !important;
}
/* ==========================================
/* ==========================================
   ARAPÇA (RTL) EKOSİSTEM TIMELINE KESİN FIX
   ========================================== */

/* 1. Tüm Kapsayıcıyı Ortala ve Sabitle */
html[dir="rtl"] .eco-flow-section,
html[dir="rtl"] .eco-timeline-container,
html[dir="rtl"] .eco-flow-wrapper {
    position: relative !important;
    direction: ltr !important; /* Düzen yapısını LTR'de sabitleyip sadece metinleri sağa hizalıyoruz */
}

/* 2. Dikey Yeşil Çizgiyi Tam Merkezde Tut */
html[dir="rtl"] .eco-timeline-line,
html[dir="rtl"] .timeline-line,
html[dir="rtl"] .eco-line {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* 3. Yuvarlak Numaralı Düğümleri Tam Ortada Tut */
html[dir="rtl"] .eco-step-node,
html[dir="rtl"] .step-node,
html[dir="rtl"] .timeline-node {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
}

/* 4. Kartların Metinlerini Arapça (Sağa) Hizala */
html[dir="rtl"] .eco-step-card,
html[dir="rtl"] .step-card,
html[dir="rtl"] .eco-flow-card {
    direction: rtl !important;
    text-align: right !important;
}

/* 5. Kart Metin Başlıkları ve Paragraflar */
html[dir="rtl"] .eco-step-card h3,
html[dir="rtl"] .eco-step-card p,
html[dir="rtl"] .step-card h3,
html[dir="rtl"] .step-card p {
    text-align: right !important;
}
/* TAMAMLANAN / PASİF PROJE KART STİLİ */
.project-card.card-completed {
    opacity: 0.72;
    filter: grayscale(85%);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.project-card.card-completed:hover {
    opacity: 1;
    filter: grayscale(0%); /* Fareyle üzerine gelince orijinal renkleri açılır */
    transform: translateY(-4px);
}

/* Gri badge stili */
.badge-status.badge-completed {
    background: rgba(100, 116, 139, 0.9) !important;
    color: #fff !important;
}
/* SATIŞA KAPALI GRİ KART STİLİ */
.project-card.card-completed {
    opacity: 0.75;
    filter: grayscale(90%);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.project-card.card-completed:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-4px);
}

/* BÜYÜK SATIŞA KAPALI ROZETİ */
.badge-status.badge-closed {
    background: #475569 !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ANA SAYFA BİTMİŞ PROJELER TOGGLE / CHECKBOX STİLİ */
.filter-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.filter-toggle-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #10b981; /* Garanti yeşili */
    cursor: pointer;
}

.filter-toggle-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}
/* HERO FİLTRE BARI TEK SATIR (SINGLE ROW) DÜZENİ */
.hero-filter-bar .filter-box {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    background: #ffffff;
    padding: 16px 24px !important;
    border-radius: 50px !important; /* Premium yuvarlatılmış kapsül form */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    width: 100%;
}

/* Seçim Alanları */
.hero-filter-bar .filter-item {
    flex: 1;
    min-width: 0;
    margin-bottom: 0 !important;
}

/* Çentik (Checkbox) Alanı */
.hero-filter-bar .filter-toggle-box {
    flex: 0 0 auto !important;
    padding: 0 10px;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.filter-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.filter-toggle-wrap input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #10b981;
    cursor: pointer;
}

.filter-toggle-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    user-select: none;
}

/* Ara Butonu */
.hero-filter-bar .filter-btn {
    flex: 0 0 auto !important;
    white-space: nowrap;
    padding: 12px 28px !important;
    border-radius: 30px !important;
    margin: 0 !important;
}

/* Mobil / Tablet Uyumu */
@media (max-width: 991px) {
    .hero-filter-bar .filter-box {
        flex-direction: column !important;
        border-radius: 20px !important;
        gap: 12px !important;
    }
    .hero-filter-bar .filter-item,
    .hero-filter-bar .filter-btn {
        width: 100% !important;
    }
    .hero-filter-bar .filter-toggle-box {
        border: none !important;
        padding: 8px 0;
    }
}
/* MODERN BAŞARI BİLDİRİMİ (SUCCESS TOAST) */
.custom-toast {
    position: fixed;
    top: 30px;
    right: -400px; /* Başlangıçta ekranın dışında */
    background: #ffffff;
    border-left: 5px solid #22c55e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999999;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-toast.show {
    right: 30px; /* Ekrana kayarak girer */
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.toast-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.toast-content p {
    margin: 3px 0 0 0;
    font-size: 13px;
    color: #64748b;
}
/* MODERN & MİMARİ HARİTA BİLEŞENİ */
.custom-architectural-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Izgara Desen (Grid Bg) */
.map-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Radar Çemberleri */
.map-radar-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px dashed rgba(34, 197, 94, 0.25);
    border-radius: 50%;
    animation: rotateRadar 20s linear infinite;
}
.map-radar-circle.outer {
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Parlayan Pin & Nabız Animasyonu */
.custom-map-pin {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.pin-icon {
    width: 48px;
    height: 48px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
    transition: transform 0.3s ease;
}

.custom-map-pin:hover .pin-icon {
    transform: scale(1.15);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(34, 197, 94, 0.35);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
    z-index: -1;
}

/* Tooltip (Etiket) */
.pin-tooltip {
    margin-top: 10px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Harita İçi Hızlı Link */
.map-overlay-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    color: #cbd5e1;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-overlay-link:hover {
    background: #22c55e;
    color: #ffffff;
}

/* Animasyonlar */
@keyframes mapPulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes rotateRadar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.styled-dark-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.styled-dark-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(120%) hue-rotate(180deg);
    transition: filter 0.4s ease;
}

.styled-dark-map:hover iframe {
    filter: grayscale(80%) invert(90%) contrast(110%) hue-rotate(180deg);
}
/* =======================================================
   💎 ŞEFFAF BEYAZ & ZİNCİR BAĞLANTILI DİŞLİ EKOSİSTEMİ (FINAL)
   ======================================================= */

.eco-gear-section {
    width: 100% !important;
    background: #ffffff !important;
    color: #0f172a !important;
    position: relative;
    overflow: hidden !important;
    padding: 60px 0;
    margin: 0;
}

.eco-gear-section .section-title-box {
    text-align: center !important;
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.tech-badge-sub {
    color: #16a34a !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.eco-gear-section .section-title {
    color: #0f172a !important;
    font-size: 32px;
    font-weight: 800;
    margin-top: 6px;
}

.eco-gear-section .section-sub {
    color: #64748b !important;
    font-size: 14px;
    margin-top: 6px;
}

/* DİŞLİ SAHNE KAPSAYICISI (%15 FERAH AÇILMIŞ) */
.gear-train-wrapper {
    position: relative;
    width: 100%;
    max-width: 940px !important;
    height: 580px !important;
    margin: 0 auto;
}

/* MEKANİK ZİNCİR ÇİZGİLERİ (SVG CHAIN LINES) */
.chain-svg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.chain-line {
    stroke: #22c55e;
    stroke-width: 4;
    stroke-dasharray: 8 6;
    opacity: 0.75;
}

/* TÜM DİŞLİ ÇARKLAR (ŞEFFAF BEYAZ GÖVDE) */
.gear-wheel {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #22c55e !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 15px rgba(34, 197, 94, 0.2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    cursor: pointer;
    z-index: 10;
}

.cog-teeth {
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 4px dashed #22c55e !important;
    opacity: 0.85;
    transition: transform 0.6s ease;
}

.gear-content {
    text-align: center;
    padding: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.gear-num {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background: #16a34a;
    padding: 2px 8px;
    border-radius: 12px;
}

.gear-content h4 {
    font-size: 11px;
    font-weight: 800;
    color: #0f172a !important;
    margin: 0;
    line-height: 1.3;
}

/* =======================================================
   🔥 GARANTİPROJE ÇEKİRDEK (ŞEFFAF BEYAZ & ORİJİNAL LOGO)
   ======================================================= */
.gear-center {
    width: 180px !important;
    height: 180px !important;
    top: 290px !important;
    left: 470px !important;
    transform: translate(-50%, -50%) !important;
    background: rgba(255, 255, 255, 0.95) !important; /* İçi şeffaf beyaz */
    border: 3px solid #16a34a !important;
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.25) !important;
    z-index: 25 !important;
    overflow: hidden !important;
}

.gear-center .gear-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 10;
}

/* ORİJİNAL RENKLİ LOGO (FİLTRESİZ) */
.gear-center .tech-glow-logo {
    width: 110px !important;
    height: 42px !important;
    object-fit: contain !important;
    filter: none !important; /* Beyazlatma filtresi kaldırıldı */
}

.core-label {
    font-size: 8.5px;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: 1.2px;
    margin-top: 2px;
}

/* =======================================================
   📍 %15 AÇILMIŞ DİŞLİ KOORDİNATLARI
   ======================================================= */

/* 01: Sol Alt */
.gear-m1 { 
    width: 150px; height: 150px; 
    top: 475px; left: 310px; 
    transform: translate(-50%, -50%); 
}

/* 02: Sağ Alt */
.gear-m2 { 
    width: 150px; height: 150px; 
    top: 475px; left: 630px; 
    transform: translate(-50%, -50%); 
}

/* 03: Sol Orta */
.gear-m3 { 
    width: 155px; height: 155px; 
    top: 290px; left: 160px; 
    transform: translate(-50%, -50%); 
}

/* 04: Sağ Orta */
.gear-m4 { 
    width: 155px; height: 155px; 
    top: 290px; left: 780px; 
    transform: translate(-50%, -50%); 
}

/* 05: Sol Üst */
.gear-m5 { 
    width: 155px; height: 155px; 
    top: 95px; left: 310px; 
    transform: translate(-50%, -50%); 
}

/* 06: Zirve Tepe */
.gear-m6 { 
    width: 160px !important; height: 160px !important; 
    top: 70px; left: 470px; 
    transform: translate(-50%, -50%); 
}

/* HOVER EFFECTLERİ */
.gear-wheel:hover .cog-teeth {
    transform: rotate(90deg);
    border-color: #16a34a !important;
}

.gear-wheel:hover {
    transform: translate(-50%, -50%) scale(1.06) !important;
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.35) !important;
}

.gear-center:hover {
    transform: translate(-50%, -50%) scale(1.05) !important;
}

/* MOBİL VE TABLET AYRIMI */
.desktop-gear-view { display: block !important; }
.mobile-gear-view { display: none !important; }

@media (max-width: 991px) {
    .desktop-gear-view { display: none !important; }
    .mobile-gear-view {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        max-width: 420px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .mobile-core-card {
        background: #f8fafc;
        border: 2px solid #22c55e;
        border-radius: 14px;
        padding: 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .mobile-core-card span { font-size: 10px; font-weight: 800; color: #22c55e; }

    .mobile-arc-item {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        padding: 12px 15px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    }

    .mobile-arc-item h4 { font-size: 12px; font-weight: 700; color: #0f172a; margin: 0; }
    .mobile-arc-item.final-item { background: #0f172a; border-color: #22c55e; }
    .mobile-arc-item.final-item h4 { color: #ffffff; }
}
/* ==========================================
   MOBİL HERO & BUTON KESİN ÇÖZÜM
   ========================================== */
@media screen and (max-width: 768px) {
    
    /* Hero kapsayıcısını rahatlat */
    .hero, section.hero, .hero-section {
        padding-top: 120px !important;
        padding-bottom: 60px !important;
        height: auto !important;
        min-height: 100vh !important;
    }

    /* Buton kapsayıcısını dikey yap ve taşmayı önle */
    .hero-buttons, .hero-btns, .hero-actions, [class*="hero"] .btn-group {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 12px !important;
        box-sizing: border-box !important;
    }

    /* Butonları ekrana %100 yay */
    .hero .btn, .hero-buttons a, .hero-buttons button {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        white-space: normal !important; /* Uzun metinlerin sığması için */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    @media screen and (max-width: 768px) {

    /* ==========================================
       1. İSTATİSTİK KARTLARI (KÜÇÜLTME & DİZİLİM)
       ========================================== */
    /* Kartların dış kapsayıcısı */
    .hero-stats, .stats-grid, .stats-container {
        gap: 8px !important;
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }

    /* Beyaz kartların kendisi (Yükseklik ve padding düşürüldü) */
    .stat-card, .hero-stat-card {
        padding: 10px 14px !important;
        min-height: auto !important;
        border-radius: 12px !important;
    }

    /* Kart içindeki ikon boyutu */
    .stat-card i, .stat-icon, .stat-card svg {
        font-size: 1.2rem !important;
        width: 32px !important;
        height: 32px !important;
    }

    /* Kart içindeki dev rakamlar (1000+, %100 vb.) */
    .stat-number, .stat-card h3, .stat-value {
        font-size: 1.1rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    /* Kart içindeki küçük açıklama yazıları */
    .stat-label, .stat-card p {
        font-size: 0.72rem !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }

    /* ==========================================
       2. FİLTRELEME & ARAMA KUTUSU (PROJE ARA)
       ========================================== */
    .search-filter-box, .filter-bar, .hero-filter {
        padding: 12px 15px !important;
        border-radius: 16px !important;
        margin-top: 10px !important;
    }

    /* Select (Seçim) Kutuları */
    .filter-item, .form-group, .filter-select {
        margin-bottom: 8px !important;
    }

    .filter-select select, .form-control {
        padding: 8px 12px !important;
        font-size: 0.82rem !important;
        height: 38px !important;
    }

    /* Filtre içindeki etiketler/ikonlar */
    .filter-label, .form-label {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }

    /* Proje Ara Butonu */
    .btn-search, .filter-btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        height: 38px !important;
    }
}

}
/* Hero Alt Yazısını Parlak Beyaz Yap */
.hero-subtitle {
    color: #ffffff !important;
    opacity: 0.95 !important; /* Çok hafif yumuşaklık için, istersen 1 de yapabilirsin */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important; /* Arka plandan tamamen ayırmak için gölge */
}
/* ==========================================
   GARANTİPROJE MOBİL MÜKEMMELLEŞTİRME (KUSURSUZ TEK BLOK)
   ========================================== */

/* Genel Hero Alt Yazı Rengi */
.hero-subtitle {
    color: #ffffff !important;
    opacity: 0.95 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}

@media screen and (max-width: 768px) {

    /* 1. HERO ALANI YÜKSEKLİĞİ VE DOLGUSU */
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 20px !important;
        min-height: auto !important;
    }

    .hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* 2. BAŞLIK VE YEŞİL YAZI DÜZELTMESİ */
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        color: #ffffff !important;
    }

    /* "Yükselen Yapılar" yazısını bembeyaz ve başlıkla aynı boyuta getir */
    .hero-title .hero-green-glow, 
    .hero-green-glow {
        color: #ffffff !important;
        font-size: 1.4rem !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
        display: inline-block !important;
    }

    /* 3. PARAGRAF METNİ */
    .hero-subtitle {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        color: #ffffff !important;
        opacity: 0.95 !important;
        margin-bottom: 16px !important;
        padding: 0 5px !important;
    }

    /* 4. BUTONLAR */
    .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto 16px auto !important;
    }

    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
        font-size: 0.82rem !important;
        padding: 9px 14px !important;
    }

/* 5. İSTATİSTİK KARTLARI (İKONLAR TAM ÜST ORTADA HİZALI) */
    .hero-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        margin: 0 auto 15px auto !important;
    }

    .hero-stats-grid .stat-card {
        padding: 6px 2px !important;
        min-height: 70px !important;
        height: 70px !important;
        display: flex !important;
        flex-direction: column !important; /* Her şeyi dikeyde hizala */
        align-items: center !important;     /* Yatayda tam ortala */
        justify-content: center !important;  /* Dikeyde tam ortala */
        text-align: center !important;
        border-radius: 10px !important;
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        box-sizing: border-box !important;
    }

    /* İkon Kapsayıcısını Yan Yana Yapıdan Kurtar */
    .hero-stats-grid .stat-icon {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 0 2px 0 !important;
        float: none !important;
    }
    /* Anahtar İkonunu Diğerleriyle Birebir Aynı Çizgiye Çek */
    .hero-stats-grid .stat-card .fa-key,
    .hero-stats-grid .stat-card i.fa-key {
        transform: translateY(1.5px) !important; /* Milimetrik aşağı indirme */
        display: inline-block !important;
    }

    /* İkonun Kendisi */
    .hero-stats-grid .stat-icon i,
    .hero-stats-grid .stat-card i,
    .hero-stats-grid i {
        font-size: 0.80rem !important;
        color: #10b981 !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    /* Metin Bloğunu da Ortala */
    .hero-stats-grid .stat-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    .hero-stats-grid .stat-num {
        font-size: 0.80rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1.1 !important;
        display: block !important;
        margin-bottom: 2px !important;
    }

    .hero-stats-grid .stat-label {
        font-size: 0.55rem !important;
        color: #475569 !important;
        line-height: 1.05 !important;
        display: block !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .hero-stats-grid .stat-card {
        padding: 6px 2px !important;
        min-height: 65px !important;
        height: 65px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 10px !important;
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
        box-sizing: border-box !important;
    }

    /* İkon Boyutu Küçültüldü (İkon Kaymasını Engeller) */
    .hero-stats-grid .stat-icon,
    .hero-stats-grid .stat-card i,
    .hero-stats-grid i {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
        color: #10b981 !important;
        height: auto !important;
        width: auto !important;
        line-height: 1 !important;
    }

    .hero-stats-grid .stat-num {
        font-size: 0.80rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1 !important;
        display: block !important;
        margin-bottom: 2px !important;
    }

    .hero-stats-grid .stat-label {
        font-size: 0.55rem !important;
        color: #475569 !important;
        line-height: 1.05 !important;
        display: block !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

/* 6. FİLTRELEME KUTUSU (HAFİF KÜÇÜLTME & KİBARLAŞTIRMA) */
    .hero-filter-bar {
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-top: 10px !important;
    }

    /* Beyaz Ana Filtre Kutusu */
    .hero-filter-bar .filter-box {
        padding: 12px 14px !important; /* İç boşluklar küçültüldü */
        border-radius: 14px !important;
    }

    /* Etiketler (Proje Tipi, Lokasyon, Ödeme Şartı) */
    .hero-filter-bar .filter-item label {
        font-size: 0.72rem !important; /* Yazı boyutu hafif küçültüldü */
        margin-bottom: 3px !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }

    /* Select (Açılır Liste) Kutuları */
    .hero-filter-bar .filter-item select {
        padding: 6px 10px !important;
        font-size: 0.78rem !important;
        height: 36px !important; /* Kutu yüksekliği inceltildi */
        border-radius: 8px !important;
    }

    /* Filtre Elemanları Arasındaki Boşluk */
    .hero-filter-bar .filter-item {
        margin-bottom: 8px !important;
    }

    /* "Bitmiş Projeleri de Göster" Çentiği */
    .hero-filter-bar .filter-toggle-wrap {
        font-size: 0.72rem !important;
        margin-top: 4px !important;
        margin-bottom: 10px !important;
    }

    /* Proje Ara Butonu */
    .hero-filter-bar .filter-btn {
        padding: 8px 14px !important;
        font-size: 0.80rem !important;
        height: 38px !important; /* Buton yüksekliği dengelendi */
        border-radius: 10px !important;
    }
    /* 1. "Yükselen Yapılar" Yazısını Bembeyaz ve Net Yap */
    .hero-title .hero-green-glow, 
    .hero-green-glow {
        color: #ffffff !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8) !important;
    }

    /* 2. Kart İçindeki Açıklama Yazılarını İnce Ayarla */
    .hero-stats-grid .stat-label {
        font-size: 0.52rem !important;
        line-height: 1 !important;
    }

    /* 3. Filtre Kutusu Üst Boşluğu */
    .hero-filter-bar {
        margin-top: 16px !important;
    }
    /* Prestij Rozetini Kibarlaştır ve Boyutunu Düşür */
    .hero-luxe-badge,
    .hero-badge-wrap .hero-luxe-badge,
    .hero-badge {
        font-size: 0.68rem !important;      /* Yazı boyutu ufaltıldı */
        padding: 4px 10px !important;       /* İç boşluğu inceltildi */
        margin-bottom: 8px !important;      /* Altındaki boşluk kısaltıldı */
        letter-spacing: 0.2px !important;   /* Harf aralığı dengelendi */
    }

    /* Rozet İçindeki İkon Boyutu */
    .hero-luxe-badge i,
    .hero-badge i {
        font-size: 0.65rem !important;
        margin-right: 4px !important;
    }
    /* ==========================================
       AKILLI SERMAYE DÖNÜŞÜMÜ (NEDEN GAYRİMENKUL YATIRIMI) MOBİL
       ========================================== */
    
    /* 1. Bölüm Genel Dolguları */
    .investment-showcase-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* 2. Başlık ve Üst Metinler */
    .investment-showcase-section .section-tag {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 4px !important;
    }

    .investment-showcase-section .main-blue-title {
        font-size: 1.35rem !important; /* Dev boyut kibarlaştırıldı */
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .investment-showcase-section .slogan-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 15px !important;
        padding: 0 10px !important;
    }

/* 3. Ortadaki Logolu Daireyi Tam Yuvarlak Yapma (Elips Koruması) */
    .investment-hub-wrapper .hub-center-circle {
        width: 100px !important;
        height: 100px !important;
        min-width: 100px !important;
        min-height: 100px !important;
        max-width: 100px !important;
        max-height: 100px !important;
        border-radius: 50% !important;
        margin: 10px auto 20px auto !important;
        aspect-ratio: 1 / 1 !important; /* Esnemeyi engeller */
        flex-shrink: 0 !important;
    }

    /* Dışındaki Yeşil Halkanın (Pulse Ring) Boyutu */
    .investment-hub-wrapper .pulse-ring {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
    }

    /* İç Kısım (Center Core) */
    .investment-hub-wrapper .center-core {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .investment-hub-wrapper .center-core img {
        max-width: 30px !important;
        height: auto !important;
        margin-bottom: 2px !important;
    }

    .investment-hub-wrapper .center-core span {
        font-size: 0.58rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    /* 4. Kartların İnce Düzeni (Sermaye Değer Artışı vs.) */
    .investment-hub-wrapper .hub-cards-col {
        gap: 10px !important;
    }

    .investment-hub-wrapper .hub-card {
        padding: 10px 12px !important; /* Kart içi boşluklar düşürüldü */
        border-radius: 12px !important;
        min-height: auto !important;
    }

    /* Kart İçindeki İkon */
    .investment-hub-wrapper .hub-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
        margin-right: 10px !important;
    }

    /* Kart İçi Başlıklar */
    .investment-hub-wrapper .hub-text h4 {
        font-size: 0.85rem !important;
        margin-bottom: 2px !important;
    }

    /* Kart İçi Açıklama Metni */
    .investment-hub-wrapper .hub-text p {
        font-size: 0.70rem !important;
        line-height: 1.3 !important;
    }
    /* ==========================================
       GARANTİ PROJE VİZYONU (INTRO SECTION) MOBİL
       ========================================== */

    /* 1. Bölüm Genel Boşlukları */
    .intro-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* 2. Üst Etiket (GARANTİ PROJE VİZYONU) */
    .intro-section .section-tag {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 4px !important;
    }

    /* 3. Ana Başlık (Diğer Başlıklarla Birebir Aynı Boyut) */
    .intro-section .section-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 10px !important;
    }

    /* 4. Açıklama Paragrafı */
    .intro-section .intro-text {
        font-size: 0.78rem !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
        padding: 0 5px !important;
    }

    /* 5. Buton Hizalaması ve Boyutu */
    .intro-section .btn {
        font-size: 0.82rem !important;
        padding: 9px 18px !important;
        display: inline-flex !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }

    /* 6. Alt Görsel Yüksekliğini Dengeli Tutma */
    .intro-section .intro-banner {
        border-radius: 14px !important;
        overflow: hidden !important;
        max-height: 220px !important; /* Devasa görsel yüksekliğini kitleme */
    }

    .intro-section .intro-banner img,
    .intro-section .banner-img {
        width: 100% !important;
        height: 220px !important;
        object-fit: cover !important;
    }
    /* ==========================================
       NE SAĞLIYORUZ (SERVICES OVERVIEW) MOBİL
       ========================================== */

    /* 1. Bölüm Genel Boşlukları */
    .services-overview-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* 2. Ana Mavi Başlık (Diğer Bölümlerle Aynı Standart) */
    .services-overview-section .main-blue-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }

    /* 3. Kartlar Genel Yapı (Daha İnce ve Kibar) */
    .services-overview-section .services-cards-grid {
        gap: 12px !important;
    }

    .services-overview-section .feature-card {
        padding: 16px 14px 12px 14px !important; /* Kart dikeyde inceltildi */
        border-radius: 14px !important;
        min-height: auto !important;
    }

/* 4. Yuvarlak İkon ve Logo Dairesi (Kayma ve Taşma Düzeltmesi) */
    .services-overview-section .circle-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
        margin: 0 auto 10px auto !important; /* Negatif marjinler sıfırlandı, üstte ortalandı */
        position: static !important;         /* Dışarı kaymayı engeller */
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .services-overview-section .circle-icon img {
        max-width: 24px !important;
        height: auto !important;
    }

    /* Kart Üst Boşluğunu Dengeli Tut */
    .services-overview-section .feature-card {
        padding: 16px 12px 14px 12px !important;
        border-radius: 14px !important;
        margin-top: 15px !important;
    }
    /* 5. Kart İçi Başlıklar (Fırsat Konut Projeleri vb.) */
    .services-overview-section .card-green-title {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }

    /* 6. Kart İçi Açıklama Metni */
    .services-overview-section .card-desc {
        font-size: 0.75rem !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }

    /* 7. Alttaki Tırnak İkonu */
    .services-overview-section .quote-icon {
        font-size: 0.80rem !important;
        margin-top: 4px !important;
    }

    /* 8. Öne Çıkan Kart Butonu */
    .services-overview-section .btn-card-outline {
        font-size: 0.78rem !important;
        padding: 6px 14px !important;
        margin-top: 8px !important;
    }
    /* ==========================================
       KAMPANYALAR VE FIRSATLAR (BENTO GRID) MOBİL
       ========================================== */

    /* 1. Bölüm Genel Dış Boşlukları */
    .campaigns-grid-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* 2. Ana Mavi Başlık (Standart Boyut) */
    .campaigns-grid-section .main-blue-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    /* 3. Alt Slogan Metni */
    .campaigns-grid-section .slogan-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 16px !important;
    }

    /* 4. Bento Grid Izgarası */
    .campaigns-grid-section .bento-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important; /* Kutular arası boşluk düşürüldü */
    }

    /* 5. Metin Kutuları (Takas Kampanyası vb.) */
    .campaigns-grid-section .bento-box {
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    .campaigns-grid-section .bento-text-box {
        padding: 14px 14px !important; /* Kaba iç boşluk inceltildi */
    }

    /* Bento Başlıkları */
    .campaigns-grid-section .bento-title {
        font-size: 0.92rem !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    /* Bento Açıklama Metinleri */
    .campaigns-grid-section .bento-desc {
        font-size: 0.74rem !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }

    /* 6. Görsel Kutuları ve Resim Yükseklikleri */
    .campaigns-grid-section .bento-img-box {
        height: 160px !important; /* Devasa resim yüksekliği kibarlaştırıldı */
        min-height: 160px !important;
    }

    .campaigns-grid-section .bento-img-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    /* ==========================================
       PİYASA & EMLAK HABERLERİ (NEWS SECTION) MOBİL
       ========================================== */

    /* 1. Bölüm Genel Dış Boşlukları */
    .news-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    /* 2. Üst Etiket (SEKTÖREL GELİŞMELER) */
    .news-section .section-tag {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 4px !important;
    }

    /* 3. Ana Mavi Başlık (Standart Boyut) */
    .news-section .main-blue-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    /* 4. Alt Slogan Metni */
    .news-section .slogan-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 16px !important;
        padding: 0 10px !important;
    }

    /* 5. Haber Kartları Izgarası */
    .news-section .news-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    .news-section .news-card {
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    /* 6. Haber Görseli ve Badge */
    .news-section .news-img-wrap {
        height: 150px !important; /* Devasa resim yüksekliği kibarlaştırıldı */
    }

    .news-section .news-img-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .news-section .news-badge {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
        top: 10px !important;
        right: 10px !important;
    }

    /* 7. Haber Kart İçeriği */
    .news-section .news-content {
        padding: 12px 14px !important;
    }

    .news-section .news-date {
        font-size: 0.68rem !important;
        margin-bottom: 4px !important;
    }

    .news-section .news-title {
        font-size: 0.88rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    .news-section .news-excerpt {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }

    .news-section .news-link {
        font-size: 0.75rem !important;
    }
/* Newsletter Başlığı Kibarlaştırma */
    .newsletter-section h3,
    .newsletter-box h3,
    .newsletter-card h3,
    [class*="newsletter"] h3 {
        font-size: 1.10rem !important; /* Başlık boyutu ufalttık */
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .newsletter-section p,
    .newsletter-box p,
    [class*="newsletter"] p {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }

    /* Newsletter Beyaz Kapsayıcısı */
    .newsletter-form,
    .newsletter-box form,
    [class*="newsletter-form"] {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 12px !important;
        padding: 4px 5px 4px 10px !important;
        box-sizing: border-box !important;
        position: relative !important;
        overflow: hidden !important;
    }

    /* Input Kapsayıcısı & Zarf İkonu Düzenlemesi */
    .newsletter-form .input-wrap,
    .newsletter-box form .input-wrap {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important; /* İkon ile yazı arasına boşluk */
        flex: 1 !important;
        width: 100% !important;
    }

    /* Zarf İkonunu En Sola Kilitleme */
    .newsletter-form i,
    .newsletter-box form i,
    .newsletter-form .input-wrap i {
        position: static !important; /* Bağımsız kaymayı engeller */
        transform: none !important;
        font-size: 0.82rem !important;
        color: #10b981 !important;
        flex-shrink: 0 !important;
    }

    /* Input Yazı Alanı */
    .newsletter-form input,
    .newsletter-box form input {
        width: 100% !important;
        height: 36px !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        font-size: 0.75rem !important;
        color: #0f172a !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* Sağ Abone Ol Butonu */
    .newsletter-form button,
    .newsletter-box form button,
    .newsletter-form .btn,
    .newsletter-box form .btn {
        width: auto !important;
        white-space: nowrap !important;
        height: 36px !important;
        font-size: 0.75rem !important;
        padding: 0 12px !important;
        border-radius: 8px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        position: static !important;
    }

    /* Sol Mail Input Alanı */
    .newsletter-form input,
    .newsletter-box form input {
        width: 60% !important;
        flex: 1 !important;
        height: 36px !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        font-size: 0.75rem !important;
        color: #0f172a !important;
        padding: 0 4px !important;
        box-sizing: border-box !important;
    }

    /* Sağ Abone Ol Butonu (Hafif Küçültüldü, Taşma Engellendi) */
    .newsletter-form button,
    .newsletter-box form button,
    .newsletter-form .btn,
    .newsletter-box form .btn {
        width: auto !important;
        white-space: nowrap !important;
        height: 36px !important;
        font-size: 0.75rem !important;
        padding: 0 10px !important;
        border-radius: 8px !important;
        margin: 0 !important;
        flex-shrink: 0 !important; /* Butonun bükülüp taşmasını engeller */
        position: static !important;
    }
    /* ==========================================
       GLOBAL FOOTER MOBİL İNCE AYARI (TÜM SAYFALAR)
       ========================================== */

    footer,
    .main-footer,
    .footer {
        padding-top: 25px !important;
        padding-bottom: 20px !important;
    }

    /* Footer Başlıkları (Hizmetlerimiz, İletişim vb.) */
    footer h4,
    footer h5,
    .footer-title,
    .footer-widget-title {
        font-size: 0.85rem !important;
        margin-top: 15px !important;
        margin-bottom: 8px !important;
    }

    /* Liste Linkleri (Ana Sayfa, Kurumsal Hizmetler vb.) */
    footer ul li,
    .footer-links li {
        margin-bottom: 4px !important;
    }

    footer ul li a,
    .footer-links li a {
        font-size: 0.72rem !important; /* Yazı boyutu hafif küçültüldü */
        line-height: 1.4 !important;    /* Dikey sıkılaştırma */
    }

    /* İletişim Bilgileri İkonları ve Metinleri */
    footer .contact-info li,
    footer .footer-contact li,
    .footer-contact-item {
        font-size: 0.72rem !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    footer .contact-info i,
    footer .footer-contact i {
        font-size: 0.75rem !important;
        width: 14px !important;
    }

    /* En Alttaki Telif ve Gizlilik Politikası Alanı */
    footer .footer-bottom,
    .copyright-area {
        margin-top: 20px !important;
        padding-top: 12px !important;
        font-size: 0.65rem !important;
        line-height: 1.4 !important;
    }
    /* Footer "İstanbul / Türkiye" Satırını Birebir Eşitleme */
    footer [class*="contact"] p,
    footer [class*="contact"] span,
    footer [class*="contact"] div,
    footer .footer-widget p,
    footer .footer-widget span {
        font-size: 0.72rem !important;
        font-weight: 400 !important; /* Kalınlığı kaldırıp normale çeker */
        color: #475569 !important;   /* Diğer metinlerle aynı gri ton */
        line-height: 1.4 !important;
    }

    /* Konum İkonunu (Pin) Ufaltma ve Hizalama */
    footer [class*="contact"] i.fa-map-marker-alt,
    footer [class*="contact"] i.fa-location-dot,
    footer [class*="contact"] i[class*="location"],
    footer [class*="contact"] i[class*="map"] {
        font-size: 0.75rem !important;
        width: 14px !important;
        height: 14px !important;
        line-height: 1 !important;
    }
    /* ==========================================
       HERO PROJE FİLTRE KARTINI KÜÇÜLTME
       ========================================== */

    /* 1. Beyaz Filtre Kartının Genel Boyutu ve Boşlukları */
    .hero-section .filter-card,
    .hero-section .project-filter,
    .hero-section form,
    .hero-filter-wrapper {
        padding: 12px 12px !important; /* Dış dolgular daraltıldı */
        gap: 8px !important;
        margin-top: 15px !important;
    }

    /* 2. Etiketler (Proje Tipi, Lokasyon, Ödeme Şartı vb.) */
    .hero-section label,
    .hero-section .filter-label,
    .hero-section .form-label {
        font-size: 0.68rem !important; /* Etiket yazısı küçültüldü */
        margin-bottom: 2px !important;
    }

    .hero-section label i,
    .hero-section .filter-label i {
        font-size: 0.70rem !important; /* Yeşil ikonlar ufaltıldı */
    }

    /* 3. Seçim Kutuları (Dropdown Select'ler) */
    .hero-section select,
    .hero-section .form-select,
    .hero-section .form-control {
        height: 34px !important;       /* Dikey yükseklik %15 indirildi */
        font-size: 0.72rem !important;  /* Yazı boyutu inceltildi */
        padding: 0 8px !important;
        border-radius: 6px !important;
    }

    /* 4. "Bitmiş Projeleri de Göster" Checkbox Yazısı */
    .hero-section .form-check,
    .hero-section .checkbox-wrap {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .hero-section .form-check-label,
    .hero-section label[for*="bitmis"],
    .hero-section .checkbox-label {
        font-size: 0.68rem !important;
    }

    /* 5. En Alt "Proje Ara" Input Kutusu ve İkonu */
    .hero-section input[type="text"],
    .hero-section input[type="search"],
    .hero-section .search-input {
        height: 34px !important;
        font-size: 0.72rem !important;
        padding-left: 28px !important;
        border-radius: 6px !important;
    }

    .hero-section .search-input-wrap i,
    .hero-section .search-box i {
        font-size: 0.72rem !important;
        left: 8px !important;
    }
    /* ==========================================
       MOBİL DİL SEÇİCİ (LANG SWITCHER) GÖRÜNÜRLÜK
       ========================================== */

    /* 1. Gizlenmeyi Kaldır ve Görünür Yap */
    .lang-switcher,
    .language-switcher,
    .lang-select,
    .language-dropdown,
    [class*="lang"] {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 999 !important;
    }

    /* 2. Header İçinde İse Mobil Hizalaması */
    header .lang-switcher,
    .navbar .lang-switcher {
        margin-left: auto !important;
        margin-right: 10px !important;
        align-items: center !important;
    }

    /* 3. Dil Seçici Butonu / Dropdown Boyutu */
    .lang-switcher select,
    .lang-switcher button,
    .lang-switcher a,
    .language-switcher select {
        font-size: 0.72rem !important;
        padding: 4px 8px !important;
        height: 30px !important;
        border-radius: 6px !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        color: #0f172a !important;
    }

    /* Bayrak İkonu Varsa Boyutu */
    .lang-switcher img,
    .language-switcher img {
        width: 16px !important;
        height: auto !important;
        margin-right: 4px !important;
    }
    /* ==========================================
       1. "İSTANBUL / TÜRKİYE" YAZISI İNCE AYARI
       ========================================== */
    .footer-contact-list li:first-child span,
    .footer-contact-list li:first-child {
        font-size: 0.72rem !important;
        font-weight: 400 !important; /* Kalınlık normale çekildi */
        color: #475569 !important;   /* Telefon/mail yazısı ile aynı gri tona eşitlendi */
        line-height: 1.4 !important;
    }

    .footer-contact-list li:first-child i {
        font-size: 0.75rem !important;
        width: 14px !important;
    }


/* ==========================================
       2. MOBİL DİL SEÇİCİ & HAMBURGER HİZALAMA
       ========================================== */
    /* Header sağ kapsayıcıyı hamburgerin soluna sabitle */
    .header-right-box {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 8px !important;
        position: relative !important;
    }

    .right-top-row {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    /* Slogan ve Sosyal Medyayı Gizle */
    .header-slogan,
    .right-top-row .social-icons {
        display: none !important;
    }

    /* Dil Seçici Ana Kutusu */
    .lang-switcher {
        position: relative !important;
        display: inline-block !important;
    }

    /* Dil Butonu */
    .lang-btn {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
        height: 32px !important;
        border-radius: 6px !important;
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        cursor: pointer !important;
    }

    /* AÇILIR MENÜYÜ VARSAYILANDA GİZLE (Tıklanmadan Açılmaz) */
    .lang-dropdown {
        display: none !important; /* Açık kalmasını engeller */
        position: absolute !important;
        top: 100% !important;
        right: 0 !important;
        min-width: 110px !important;
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
        z-index: 99999 !important;
    }

    /* Tıklanınca veya Active Olunca Açılması İçin */
    .lang-switcher.active .lang-dropdown,
    .lang-dropdown.active,
    .lang-dropdown.show {
        display: block !important;
    }

    .lang-option {
        font-size: 0.72rem !important;
        padding: 6px 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    /* Hamburger Menü Butonunu En Sağa Kilitle */
    .mobile-menu-btn {
        margin-left: 0 !important;
        flex-shrink: 0 !important;
    }
    /* ==========================================
       HEADER HİZALAMA & LÜKS HAMBURGER BUTONU
       ========================================== */

    .navbar .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Logo En Sol */
    .navbar .logo {
        margin-right: auto !important;
    }

    .navbar .logo-img {
        max-height: 32px !important;
        width: auto !important;
    }

    /* Dil Seçici (Hamburgerin Solunda) */
    .header-right-box {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 10px !important;
    }

    .right-top-row {
        display: flex !important;
        align-items: center !important;
    }

    .header-slogan,
    .right-top-row .social-icons {
        display: none !important;
    }

    /* Modern Yuvarlatılmış Hamburger Butonu (En Sağda) */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        background: #ffffff !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
    }

    /* İçi Çizgileri */
    .mobile-menu-btn .bar {
        display: block !important;
        width: 18px !important;
        height: 2px !important;
        background-color: #0f172a !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    /* Ortadaki Çizgi Hafif Kısa (Lüks Mobil UI Modeli) */
    .mobile-menu-btn .bar:nth-child(2) {
        width: 12px !important;
        align-self: flex-start !important;
        margin-left: 10px !important;
    }

    /* Menü Açılınca Aktif Tıklama Durumu */
    .mobile-menu-btn.active,
    .mobile-menu-btn.open {
        background: #10b981 !important;
        border-color: #10b981 !important;
    }

    .mobile-menu-btn.active .bar,
    .mobile-menu-btn.open .bar {
        background-color: #ffffff !important;
    }

    .mobile-menu-btn.active .bar:nth-child(1),
    .mobile-menu-btn.open .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg) !important;
    }

    .mobile-menu-btn.active .bar:nth-child(2),
    .mobile-menu-btn.open .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .mobile-menu-btn.active .bar:nth-child(3),
    .mobile-menu-btn.open .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg) !important;
    }
    /* ==========================================
       FOOTER BAŞLIK ALTI BOŞLUKLARI BİREBİR EŞİTLEME
       ========================================== */

    /* 1. Üç Başlığın da Dış Boşluklarını Sıfırlayıp Eşitleme */
    footer .footer-title,
    .footer-col h4 {
        font-size: 0.85rem !important;
        margin-top: 20px !important;
        margin-bottom: 0 !important; /* Alt boşluğu sıfırlayıp listelerin üst margin'ine devrediyoruz */
        padding-bottom: 0 !important;
    }

    /* 2. Başlıkların Altındaki İlk Elemanların Üst Boşluğunu Birebir Aynı Yapma */
    footer .footer-links,
    footer .footer-contact-list {
        margin-top: 10px !important; /* ÜÇ LİSTENİN DE BAŞLIKLA ARASI TAM 10PX */
        padding-top: 0 !important;
        margin-bottom: 0 !important;
        padding-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important; /* Elemanların kendi aralarındaki dikey mesafe */
    }

    /* 3. İletişim Listesinin İlk Elemanındaki Gizli Marjinleri Ezme */
    footer .footer-contact-list li:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    /* ==========================================
   FOOTER İLETİŞİM ALANI GÜVENLİ HİZALAMA
   ========================================== */
@media screen and (max-width: 768px) {
    /* İletişim başlığının altındaki boşluğu Hizmetlerimiz ile eşitle */
    footer .contact-col .footer-title,
    footer .footer-col.contact-col h4 {
        margin-bottom: 0 !important;
    }

    /* İletişim listesini (İstanbul satırını) tam kararında aşağı it */
    footer .footer-contact-list {
        margin-top: 15px !important; 
        padding-top: 0 !important;
    }

    /* İlk elemanın (İstanbul) ekstra yukarı tırmanmasını kesin olarak engelle */
    footer .footer-contact-list li:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
}
/* ==========================================
   FOOTER SÜTUNLARI SERT DİKEY SIKIŞTIRMA
   ========================================== */
@media screen and (max-width: 768px) {
    /* 1. Sütunların dışındaki tüm marjinleri ve padding'leri kırp */
    footer .footer-col,
    .footer-main .footer-col,
    .footer-grid .footer-col {
        margin-bottom: 12px !important;
        padding-bottom: 0 !important;
    }

    /* 2. Başlık üstü ve altı mesafeleri minimuma indir */
    footer .footer-title,
    .footer-col h4 {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    /* 3. Link ve listelerin dikey mesafesini sıkılaştır */
    footer .footer-links,
    footer .footer-contact-list {
        gap: 6px !important;
        margin-bottom: 0 !important;
    }
}
/* ==========================================
   FOOTER MOBİL SON RÖTUŞ VE ÇİZGİ TEMİZLİĞİ
   ========================================== */
@media screen and (max-width: 768px) {
    
    /* 1. Başlıkların Solundaki İstenmeyen Yeşil Çizgileri Kaldır */
    footer h4::before,
    footer h4::after,
    footer .footer-title::before,
    footer .footer-title::after,
    .footer-col h4::before,
    .footer-col h4::after {
        display: none !important;
        content: none !important;
    }

    /* 2. Sütun ve Metin Hizalamalarını Resetle */
    footer,
    .footer-section,
    .main-footer,
    .footer-main {
        padding: 25px 20px !important;
        text-align: center !important;
    }

    footer .footer-col,
    .footer-main .footer-col,
    .footer-grid .footer-col {
        text-align: center !important;
        margin-bottom: 16px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    /* 3. Başlıklar */
    footer h4,
    footer h5,
    footer .footer-title,
    .footer-col h4,
    .footer-widget-title {
        text-align: center !important;
        font-size: 0.85rem !important;
        margin: 12px 0 6px 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    /* 4. Listeler ve Linkler (Tam Ortalı) */
    footer ul,
    footer .footer-links,
    footer .footer-contact-list {
        list-style: none !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
    }

    footer ul li,
    .footer-links li,
    .footer-links a,
    footer .footer-links a {
        text-align: center !important;
        float: none !important;
        font-size: 0.75rem !important;
    }

    /* 5. İletişim Bilgileri (İkon + Metin Blok Ortalama) */
    footer .footer-contact-list li,
    footer .contact-info li,
    footer .footer-contact li,
    .footer-contact-item {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 6px !important;
        font-size: 0.72rem !important;
        margin: 0 auto !important;
        float: none !important;
        width: 100% !important;
    }

    footer .footer-contact-list li span,
    footer .footer-contact-list li a {
        text-align: center !important;
    }

    /* 6. Sosyal Medya İkonları */
    .footer-socials,
    .footer-col .footer-socials {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 10px auto !important;
        padding: 0 !important;
    }

    /* 7. Telif Alanı */
    footer .footer-bottom,
    .copyright-area {
        text-align: center !important;
        margin-top: 15px !important;
        padding-top: 12px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        font-size: 0.62rem !important;
    }
}
/* ==========================================
   MOBİL FOOTER SIKIŞTIRMA
   Masaüstünü etkilemez
   ========================================== */
@media (max-width: 768px) {

    /* Footer ana alanındaki dikey boşluğu azalt */
    .footer-main {
        padding: 2.5rem 0 1rem 0 !important;
    }

    /* İletişim alanı ile telif alanını birbirine yaklaştır */
    footer .footer-bottom,
    .copyright-area {
        margin-top: 0 !important;
        padding-top: 10px !important;
    }

    /* Telif alanının altındaki boşluğu azalt */
    .footer-bottom {
        padding-bottom: 10px !important;
    }

}
/* ==========================================
   MOBİL ANA SAYFA İYİLEŞTİRMELERİ
   Masaüstünü etkilemez
   ========================================== */
@media (max-width: 768px) {

    /* ------------------------------------------
       1. HERO BAŞLIĞI
       Biraz daha güçlü ve okunaklı
       ------------------------------------------ */
    .hero h1,
    .hero-title {
        font-size: 1.7rem !important;
        line-height: 1.2 !important;
    }


    /* ------------------------------------------
       2. İSTATİSTİK KARTLARI
       Rakam ve açıklamaları biraz büyüt
       ------------------------------------------ */
    .hero-stats,
    .stats-grid {
        gap: 0.4rem !important;
    }

    .hero-stats .stat-card,
    .stats-grid .stat-card {
        padding: 0.65rem 0.35rem !important;
    }

    .hero-stats .stat-card strong,
    .stats-grid .stat-card strong {
        font-size: 0.85rem !important;
    }

    .hero-stats .stat-card span,
    .stats-grid .stat-card span {
        font-size: 0.65rem !important;
        line-height: 1.25 !important;
    }


    /* ------------------------------------------
       3. FİLTRE KARTI
       Dikey boşlukları %10-15 azalt
       ------------------------------------------ */
    .filter-card {
        padding: 1rem !important;
    }

    .filter-group {
        margin-bottom: 0.75rem !important;
    }

    .filter-group label {
        margin-bottom: 0.35rem !important;
    }

    .filter-select,
    .filter-card select {
        min-height: 38px !important;
        padding: 0.55rem 0.7rem !important;
    }


    /* ------------------------------------------
       4. FİLTRE KARTI İÇİNDEKİ ARALIKLAR
       ------------------------------------------ */
    .filter-options {
        gap: 0.65rem !important;
    }


    /* ------------------------------------------
       5. PROJE ARAMA KUTUSU
       Biraz daha kompakt
       ------------------------------------------ */
    .project-search,
    .filter-search {
        margin-top: 0.65rem !important;
    }


    /* ------------------------------------------
       6. FOOTER
       Daha önce yaptığımız mobil sıkıştırma
       ------------------------------------------ */
    .footer-main {
        padding: 2.5rem 0 1rem 0 !important;
    }

    footer .footer-bottom,
    .copyright-area {
        margin-top: 0 !important;
        padding-top: 10px !important;
    }

    .footer-bottom {
        padding-bottom: 10px !important;
    }

}
/* ==========================================
   MOBİL HERO - DİKEY BOŞLUK OPTİMİZASYONU
   Sadece mobil
   ========================================== */

@media screen and (max-width: 768px) {

    /* ------------------------------------------
       1. İSTATİSTİKLERDEN FİLTRE KARTINA
       OLAN BOŞLUĞU AZALT
       ------------------------------------------ */
    .hero-filter-bar {
        margin-top: 12px !important;
        padding-top: 0 !important;
    }


    /* ------------------------------------------
       2. FİLTRE KARTININ İÇ BOŞLUĞU
       ------------------------------------------ */
    .hero-filter-bar .filter-box {
        padding: 10px 12px !important;
        gap: 0 !important;
    }


    /* ------------------------------------------
       3. PROJE TİPİ / LOKASYON / ÖDEME
       ARASINDAKİ BOŞLUKLARI AZALT
       ------------------------------------------ */
    .hero-filter-bar .filter-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-filter-bar .filter-item + .filter-item {
        margin-top: 7px !important;
    }


    /* ------------------------------------------
       4. ETİKETLER
       ------------------------------------------ */
    .hero-filter-bar .filter-item label {
        display: block !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }


    /* ------------------------------------------
       5. DROPDOWNLAR
       ------------------------------------------ */
    .hero-filter-bar .filter-item select {
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 8px !important;
        margin: 0 !important;
    }


    /* ------------------------------------------
       6. BİTMİŞ PROJELER CHECKBOX
       ------------------------------------------ */
    .hero-filter-bar .filter-toggle-box {
        margin-top: 8px !important;
        margin-bottom: 6px !important;
        padding: 0 !important;
    }

    .hero-filter-bar .filter-toggle-wrap {
        margin: 0 !important;
        padding: 0 !important;
    }


    /* ------------------------------------------
       7. PROJE ARA BUTONU
       ------------------------------------------ */
    .hero-filter-bar .filter-btn {
        height: 34px !important;
        min-height: 34px !important;
        margin-top: 4px !important;
        padding: 0 10px !important;
    }


    /* ------------------------------------------
       8. HERO İSTATİSTİK KARTLARI
       FİLTREYE DAHA YAKIN
       ------------------------------------------ */
    .hero-stats {
        margin-bottom: 0 !important;
    }

}
@media screen and (max-width: 768px) {

    .hero-filter-bar .filter-item + .filter-item {
        margin-top: 10px !important;
    }
}
@media (max-width: 992px) {
    /* Mobilde dropdown aktif olduğunda alt menüyü göster */
    .dropdown.active .dropdown-menu {
        display: grid !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.02);
        margin-top: 0.5rem;
    }
}
/* ==========================================
   KESİN ÇÖZÜM: MOBİL MENÜ VE DROPDOWN FIX
   ========================================== */
@media (max-width: 992px) {
    /* 1. Hamburger menü kapalıyken solda gizli durur */
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 80px) !important;
        background: var(--bg-main, #f8fafc) !important;
        padding: 2rem !important;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow-y: auto !important;
        z-index: 1000 !important;
        display: block !important;
    }

    /* 2. Hamburger butonuna basılıp .active gelince ekrana kayar */
    .nav-menu.active {
        left: 0 !important;
    }

    /* 3. Menü içindeki dropdown (açılır) pencereler */
    .nav-menu .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border: none !important;
        padding: 0.5rem 0 0.5rem 1rem !important;
        margin-top: 0.5rem !important;
    }

    /* 4. Dropdown tık되어 aktif olduğunda açılır */
    .nav-menu .dropdown.active .dropdown-menu {
        display: grid !important;
    }
}
/* ==========================================
   HAKKIMIZDA SAYFASI MOBİL BAŞLIK DÜZELTMESİ
   ========================================== */
@media screen and (max-width: 768px) {
    .page-header-section {
        padding: 70px 15px 30px 15px !important; /* Üst ve alt boşluklar daraltıldı */
    }

    .page-header-section .section-tag,
    .page-header-section .page-tag {
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
        letter-spacing: 0.5px !important;
    }

    .page-header-section h1,
    .page-header-section .page-title {
        font-size: 1.5rem !important; /* "Hakkımızda" yazısı küçültüldü */
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }

    .page-header-section p,
    .page-header-section .page-subtitle {
        font-size: 0.78rem !important; /* Alt açıklama yazısı kibarlaştırıldı */
        line-height: 1.35 !important;
        max-width: 100% !important;
    }
}/* ==========================================
   ALT SAYFALAR İÇİN HEADER ALTINDA KALMA FİXİ
   ========================================== */
@media screen and (max-width: 992px) {
    .page-header-section {
        padding-top: 110px !important; /* Header'ın yüksekliği kadar aşağı ittik */
    }
}
/* ==========================================
/* ==========================================
   HAKKIMIZDA VİZYON / MİSYON KARTLARI MOBİL FİLTRESİ (İDEAL BOYUT)
   ========================================== */
@media screen and (max-width: 768px) {
    /* Bölüm genel boşlukları */
    .values-section, 
    .about-values-section,
    [class*="values-section"] {
        padding: 25px 0 !important;
    }

    /* Bölüm ana başlığı */
    .values-section .main-blue-title,
    .section-header .main-blue-title {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
    }

    /* Kartların iç dolguları ve boşlukları */
    .value-card, 
    .vision-mission-card,
    .feature-card {
        padding: 18px 14px !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
    }

    /* Üstteki ikon daireleri */
    .value-icon, 
    .vision-icon,
    .card-icon-box,
    .feature-card .circle-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    /* Ortadaki logo ikonu veya görsel boyutu */
    .feature-card .circle-icon img {
        max-width: 24px !important;
        max-height: 24px !important;
    }

    /* Kart başlıkları */
    .value-card h3, 
    .vision-mission-card h3,
    .feature-card h3 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    /* Açıklama metinleri */
    .value-card p, 
    .vision-mission-card p,
    .feature-card p {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
    }

}
/* ==========================================
   HAKKIMIZDA SÜREÇ / WORKFLOW KARTLARI MOBİL FİXİ
   ========================================== */
@media screen and (max-width: 768px) {
    /* Bölüm genel boşlukları daraltıldı */
    .workflow-section, 
    [class*="workflow"] {
        padding: 30px 0 !important;
    }

    /* Başlık alanının iç boşluğu ve yazı boyutu kibarlaştırıldı */
    .workflow-section .section-header,
    .workflow-section .container > div:first-child {
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .workflow-section h2,
    .workflow-section .section-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .workflow-section p,
    .workflow-section .section-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    /* Süreç kartlarının içi ve boşlukları küçültüldü */
    .workflow-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 15px !important;
    }

    .step-card {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    /* Kart içindeki dev numara (01, 02...) küçültüldü */
    .step-num {
        font-size: 1.4rem !important;
        margin-bottom: 4px !important;
    }

    .step-card h4 {
        font-size: 0.92rem !important;
        margin-bottom: 4px !important;
    }

    .step-card p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }
}
/* ==========================================
   VİZYON / MİSYON KARTLARI DAHA DA KİBARLAŞTIRMA
   ========================================== */
@media screen and (max-width: 768px) {
    /* Kartların kendi iç dolguları ve yükseklikleri düşürüldü */
    .value-card, 
    .vision-mission-card,
    .feature-card {
        padding: 14px 12px !important;
        border-radius: 12px !important;
        margin-bottom: 10px !important;
    }

    /* Üstteki ikon daireleri ufaltıldı */
    .value-icon, 
    .vision-icon,
    .card-icon-box {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
        margin-bottom: 6px !important;
    }

    /* Başlıklar küçültüldü */
    .value-card h3, 
    .vision-mission-card h3 {
        font-size: 0.88rem !important;
        margin-bottom: 4px !important;
    }

    /* Açıklama metinleri daraltıldı */
    .value-card p, 
    .vision-mission-card p {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }
}
/* ==========================================
   HAKKIMIZDA SAYFASI NAVBAR & HAMBURGER SAĞA HİZALAMA FİXİ
   ========================================== */
@media screen and (max-width: 992px) {
    .navbar .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 14px !important;
    }

    .navbar .logo {
        margin-right: auto !important;
    }

    /* Sağ taraftaki dil seçici ve hamburger butonunu gruplayıp en sağa sabitleme */
    .header-right-box {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 10px !important;
    }

    .mobile-menu-btn {
        margin-left: 0 !important;
        flex-shrink: 0 !important;
    }
}
/* ==========================================
   FIRSATLAR SAYFASI MOBİL FİXLERİ
   ========================================== */
@media screen and (max-width: 992px) {
    /* 1. Header & Hamburger Menü Sağda Hizalama */
    .navbar .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 14px !important;
    }

    .navbar .logo {
        margin-right: auto !important;
    }

    .header-right-box {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 10px !important;
    }

    .mobile-menu-btn {
        margin-left: 0 !important;
        flex-shrink: 0 !important;
    }

    /* 2. Fırsatlar Sayfası Üst Boşluk (Header Altında Kalmama) */
    .page-header-section {
        padding-top: 110px !important;
    }

    /* 3. Şematik Takas Şeması Mobil Düzeni (Dikey Akış) */
    .trade-schema-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .schema-node {
        width: 100% !important;
    }

    .schema-card {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }

    /* Çizgi / Bağlantı Animasyon Kutusu Mobilde Dikey Çizgiye Dönüşür */
    .schema-connector {
        width: 100% !important;
        height: 35px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        transform: none !important;
        margin: 0 !important;
    }

    .schema-connector .pulse-line {
        width: 3px !important;
        height: 100% !important;
    }

    .schema-connector .connector-badge {
        position: absolute !important;
        font-size: 0.65rem !important;
        padding: 2px 8px !important;
    }
}
/* ==========================================
   FIRSATLAR SAYFASI TAKAS SİSTEMİ MOBİL KÜÇÜLTME
   ========================================== */
@media screen and (max-width: 992px) {
    /* Bölüm dış boşlukları daraltıldı */
    .trade-schema-section {
        padding: 30px 0 !important;
    }

    /* Üst başlık (Arabanı veya Evini Ver...) boyutu küçültüldü */
    .trade-schema-section .section-tag {
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
    }

    .trade-schema-section .main-blue-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .trade-schema-section .slogan-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
        margin-bottom: 20px !important;
    }

    /* Takas kartları (Mevcut Varlığınız, Güvence, Yeni Mülk) küçültüldü */
    .trade-schema-wrapper .schema-card {
        padding: 16px 14px !important;
        border-radius: 14px !important;
    }

    .trade-schema-wrapper .schema-icon-wrap {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .trade-schema-wrapper .schema-icon-wrap.main-logo img {
        height: 26px !important;
    }

    .trade-schema-wrapper .schema-card h4 {
        font-size: 0.92rem !important;
        margin-bottom: 4px !important;
    }

    .trade-schema-wrapper .schema-card p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }
}
/* ==========================================
   FIRSATLAR / KAMPANYALAR KARTLARI MOBİL KÜÇÜLTME
   ========================================== */
@media screen and (max-width: 992px) {
    /* Bölüm dış boşlukları daraltıldı */
    .campaigns-showcase-section {
        padding: 30px 0 !important;
    }

    /* Üst başlık (Sizi Bekleyen Finansal Kolaylıklar) boyutu küçültüldü */
    .campaigns-showcase-section .section-tag {
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
    }

    .campaigns-showcase-section .main-blue-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    /* Kartlar ızgarası boşlukları ayarlandı */
    .opportunities-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 15px !important;
    }

    /* Tekil Fırsat Kartı İçi Daraltıldı */
    .opp-card {
        padding: 16px 14px !important;
        border-radius: 14px !important;
    }

    /* Kart İçi İkon Ufaltıldı */
    .opp-card .opp-icon {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
        border-radius: 10px !important;
    }

    /* Kart Başlığı */
    .opp-card h3 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }

    /* Kart Açıklama Metni */
    .opp-card p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }

    /* Özellik Listesi (Madde işaretleri) */
    .opp-list {
        gap: 4px !important;
        margin-bottom: 12px !important;
    }

    .opp-list li {
        font-size: 0.72rem !important;
    }

    /* Kart İçi Buton Boyutu */
    .opp-btn {
        padding: 8px 12px !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
    }

    /* Popüler / Sıfır Faiz Rozetleri */
    .opp-badge {
        font-size: 0.58rem !important;
        padding: 2px 6px !important;
        top: 12px !important;
        right: 12px !important;
    }
}
/* ==========================================
   BİZE ULAŞIN & BAŞVURU BARI MOBİL KÜÇÜLTME
   ========================================== */
@media screen and (max-width: 992px) {
    /* Bölüm dış boşlukları daraltıldı */
    .trade-apply-banner {
        padding: 30px 0 !important;
    }

    /* Kutu iç boşlukları ve köşeleri küçültüldü */
    .apply-box-light {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }

    .apply-content {
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .apply-tag {
        font-size: 0.62rem !important;
        margin-bottom: 4px !important;
    }

    .apply-box-light h3 {
        font-size: 1.15rem !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
    }

    .apply-box-light p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }

    /* Butonlar alt alta ve daha kompakt hale getirildi */
    .apply-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .apply-actions a {
        padding: 10px 14px !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
        justify-content: center !important;
    }
}
/* ==========================================
   İLETİŞİM SAYFASI KARTLARI MOBİL KÜÇÜLTME
   ========================================== */
@media screen and (max-width: 992px) {
    .contact-main-section {
        padding: 30px 0 !important;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .contact-info-card {
        padding: 14px 14px !important;
        border-radius: 12px !important;
        gap: 12px !important;
    }

    .contact-icon-box {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }

    .contact-info-content .card-label {
        font-size: 0.62rem !important;
        margin-bottom: 2px !important;
    }

    .contact-info-content h4 {
        font-size: 0.88rem !important;
        margin-bottom: 2px !important;
    }

    .contact-info-content p {
        font-size: 0.72rem !important;
    }
}
/* ==========================================
   İLETİŞİM FORMU MOBİL KÜÇÜLTME & DÜZENLEME
   ========================================== */
@media screen and (max-width: 992px) {
    .contact-body-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .contact-form-wrapper {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }

    .form-header {
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .form-tag {
        font-size: 0.62rem !important;
        margin-bottom: 4px !important;
    }

    .form-header h3 {
        font-size: 1.15rem !important;
        margin-bottom: 6px !important;
    }

    .form-header p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }

    /* Form elemanları arası boşluklar ve inputlar */
    .premium-contact-form {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .form-group label {
        font-size: 0.74rem !important;
        margin-bottom: 3px !important;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 8px 10px 8px 34px !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
    }

    .input-wrapper i {
        font-size: 0.85rem !important;
        left: 12px !important;
    }

    .checkbox-label {
        font-size: 0.7rem !important;
    }

    .btn-submit {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }
}
/* ==========================================
   İLETİŞİM HARİTA VE OFİS KARTI MOBİL FİXİ
   ========================================== */
@media screen and (max-width: 992px) {
    .contact-map-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 15px !important;
    }

    .map-card-info {
        padding: 16px 14px !important;
        border-radius: 12px !important;
    }

    .map-info-header {
        gap: 10px !important;
        margin-bottom: 8px !important;
    }

    .map-logo {
        height: 28px !important;
    }

    .map-info-header h4 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }

    .map-info-header p {
        font-size: 0.72rem !important;
    }

    .map-full-address {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
        margin-bottom: 12px !important;
    }

    .btn-map-directions {
        padding: 8px 12px !important;
        font-size: 0.78rem !important;
        border-radius: 8px !important;
        justify-content: center !important;
    }

    /* Harita Yüksekliği Mobilde Küçültüldü ve Dokunmatik Kontrol Rahatlatıldı */
    .styled-dark-map {
        height: 220px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
}
/* ==========================================
   EKOSİSTEM SAYFASI MOBİL FİXLERİ
   ========================================== */
@media screen and (max-width: 992px) {
    /* 1. Sayfa Üst Boşluk & Başlık İnce Ayarı */
    .page-header-section {
        padding: 100px 15px 30px 15px !important;
        text-align: center !important;
    }

    .page-header-section .page-title {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .page-header-section .page-subtitle {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
    }

    /* 2. Dişli Ekosistemi Bölüm Küçültme */
    .eco-gear-section {
        padding: 30px 0 !important;
    }

    .eco-gear-section .section-title-box {
        margin-bottom: 20px !important;
    }

    .eco-gear-section .section-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .eco-gear-section .section-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    /* Mobil Dişli / Çekirdek ve Liste Öğeleri */
    .mobile-core-card {
        padding: 16px !important;
        border-radius: 12px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        background: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    }

    .mobile-core-card img {
        height: 32px !important;
        margin-bottom: 6px !important;
    }

    .mobile-arc-item {
        padding: 12px 14px !important;
        border-radius: 10px !important;
        margin-bottom: 8px !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .mobile-arc-item .arc-num {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #22c55e !important;
    }

    .mobile-arc-item h4 {
        font-size: 0.85rem !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }

    /* 3. Zaman Çizgisi (Flow Timeline) Mobil Ayarları */
    .eco-flow-section {
        padding: 30px 0 !important;
    }

    .eco-flow-timeline {
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .flow-step-item {
        padding: 14px !important;
        border-radius: 12px !important;
        gap: 12px !important;
    }

    .flow-step-item .step-num {
        font-size: 1.1rem !important;
        width: 36px !important;
        height: 36px !important;
    }

    .flow-step-item h4 {
        font-size: 0.88rem !important;
        margin-bottom: 4px !important;
    }

    .flow-step-item p {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }
}
/* ==========================================
   MOBİL EKOSİSTEM KUSURSUZ LİSTE AKIŞ FİXİ
   ========================================== */
@media screen and (max-width: 992px) {
    .page-header-section {
        padding: 100px 15px 30px 15px !important;
        text-align: center !important;
    }

    .page-header-section .page-title {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .page-header-section .page-subtitle {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
    }

    .eco-gear-section {
        padding: 30px 15px !important;
    }

    .eco-gear-section .section-title-box {
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .eco-gear-section .section-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .eco-gear-section .section-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    /* Masaüstü çark sarmalını ve SVG çizgilerini mobilde tamamen gizle */
    .desktop-gear-view {
        display: none !important;
    }

    /* HTML'de hazır olan mobil ikonlu listeyi aktif et ve ortala */
    .mobile-gear-view {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-top: 15px !important;
        position: relative !important;
        width: 100% !important;
    }

    /* Merkez Çekirdek Kartı (En Üstte) */
    .mobile-core-card {
        background: #ffffff !important;
        padding: 18px !important;
        border-radius: 14px !important;
        text-align: center !important;
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.12) !important;
        border: 2px solid #22c55e !important;
        margin-bottom: 6px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    .mobile-core-card img.tech-glow-logo {
        height: 24px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .mobile-core-card span {
        font-size: 0.75rem !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        letter-spacing: 0.5px !important;
    }

    /* Dişli / Adım Kartları (01 - 06) */
    .mobile-arc-item {
        background: #ffffff !important;
        padding: 14px 16px !important;
        border-radius: 12px !important;
        box-shadow: 0 3px 12px rgba(0,0,0,0.04) !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        border-left: 4px solid #22c55e !important;
    }

    .mobile-arc-item .arc-num {
        font-size: 0.85rem !important;
        font-weight: 800 !important;
        color: #22c55e !important;
        background: rgba(34, 197, 94, 0.1) !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
        flex-shrink: 0 !important;
    }

    .mobile-arc-item .arc-icon {
        width: 34px !important;
        height: 34px !important;
        background: #f8fafc !important;
        color: #0f172a !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
        border: 1px solid #e2e8f0 !important;
    }

    .mobile-arc-item h4 {
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }

    /* Zaman Çizgisi */
    .eco-flow-section {
        padding: 30px 15px !important;
    }

    .eco-flow-timeline {
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .flow-step-item {
        padding: 14px !important;
        border-radius: 12px !important;
        gap: 12px !important;
    }

    .flow-step-item .step-num {
        font-size: 1.1rem !important;
        width: 36px !important;
        height: 36px !important;
    }

    .flow-step-item h4 {
        font-size: 0.88rem !important;
        margin-bottom: 4px !important;
    }

    .flow-step-item p {
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }
}
/* ==========================================
   ZAMAN ÇİZGİSİ (TIMELINE) ORİJİNAL SAĞLI SOLLU AKIŞ FİXİ
   ========================================== */
@media screen and (max-width: 992px) {
    .eco-flow-section {
        padding: 30px 10px !important;
        overflow: hidden !important;
    }

    .eco-flow-section .section-title-box {
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .eco-flow-section .section-title {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .eco-flow-section .section-sub {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }

    /* Zaman çizelgesi konteyneri */
    .eco-flow-timeline {
        position: relative !important;
        max-width: 100% !important;
        margin: 20px 0 0 0 !important;
        padding: 0 !important;
    }

    /* Ortadaki dikey yeşil çizgi tam ortada konumlandırıldı */
    .eco-flow-timeline::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 2px !important;
        background: linear-gradient(180deg, rgba(34, 197, 94, 0.2) 0%, #22c55e 50%, rgba(34, 197, 94, 0.2) 100%) !important;
    }

    /* Adım Kartları (Sağlı Sollu Dağılım) */
    .flow-step-item {
        position: relative !important;
        width: 50% !important;
        padding: 0 10px !important;
        margin-bottom: 16px !important;
        box-sizing: border-box !important;
    }

    /* Tek sayılar (1, 3, 5) -> Solda */
    .flow-step-item:nth-child(odd) {
        left: 0 !important;
        text-align: right !important;
    }

    /* Çift sayılar (2, 4) -> Sağda */
    .flow-step-item:nth-child(even) {
        left: 50% !important;
        text-align: left !important;
    }

    /* Ortadaki yeşil düğme / nokta */
    .flow-step-item::after {
        content: '' !important;
        position: absolute !important;
        top: 15px !important;
        width: 12px !important;
        height: 12px !important;
        background: #ffffff !important;
        border: 3px solid #22c55e !important;
        border-radius: 50% !important;
        z-index: 2 !important;
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.4) !important;
        display: block !important;
    }

    .flow-step-item:nth-child(odd)::after {
        right: -6px !important;
        left: auto !important;
    }

    .flow-step-item:nth-child(even)::after {
        left: -6px !important;
        right: auto !important;
    }

    /* Kart İçeriği */
    .flow-step-item .step-content,
    .flow-step-item > div:not(.step-num) {
        background: #ffffff !important;
        padding: 10px 12px !important;
        border-radius: 10px !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Sağlı sollu kart kenar çizgileri */
    .flow-step-item:nth-child(odd) .step-content {
        border-right: 3px solid #22c55e !important;
        border-left: 1px solid #e2e8f0 !important;
    }

    .flow-step-item:nth-child(even) .step-content {
        border-left: 3px solid #22c55e !important;
        border-right: 1px solid #e2e8f0 !important;
    }

    /* Numara ve Başlıklar */
    .flow-step-item .step-num {
        font-size: 1rem !important;
        font-weight: 800 !important;
        color: #22c55e !important;
        margin-bottom: 2px !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
    }

    .flow-step-item h4 {
        font-size: 0.76rem !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
    }

    .flow-step-item p {
        font-size: 0.65rem !important;
        color: #64748b !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
}
/* ==========================================
   EKOSİSTEME KATILIN BANNER MOBİL KÜÇÜLTME
   ========================================== */
@media screen and (max-width: 992px) {
    .trade-apply-banner {
        padding: 20px 10px !important;
    }

    .apply-box-light {
        padding: 16px 14px !important;
        border-radius: 12px !important;
        gap: 12px !important;
    }

    .apply-content {
        margin-bottom: 4px !important;
        text-align: center !important;
    }

    .apply-tag {
        font-size: 0.6rem !important;
        margin-bottom: 2px !important;
    }

    .apply-box-light h3 {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
        line-height: 1.25 !important;
    }

    .apply-box-light p {
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
    }

    .apply-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .apply-actions a,
    .apply-actions .btn-wa-apply,
    .apply-actions .btn-phone-apply {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
        justify-content: center !important;
        width: 100% !important;
    }
}
/* ==========================================
   KURUMSAL HİZMETLER MASAÜSTÜ 2 SÜTUN & MOBİL FİXİ
   ========================================== */
.corp-service-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
}

/* Çok uzun açıklamalara sahip kartların esnek durması için gerekirse tam genişlik verilebilir, 
   ancak 2 sütunlu grid yapısı sayfayı epey ferahlatacaktır. */

@media screen and (max-width: 992px) {
    .corp-service-list {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .corp-service-card {
        padding: 18px 14px !important;
        border-radius: 14px !important;
    }

    .corp-card-header {
        gap: 12px !important;
        margin-bottom: 12px !important;
        padding-bottom: 12px !important;
    }

    .corp-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        border-radius: 10px !important;
    }

    .corp-step {
        font-size: 1.4rem !important;
        top: -2px !important;
    }

    .corp-header-info h3 {
        font-size: 1rem !important;
        margin-bottom: 4px !important;
    }

    .corp-short {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
    }

    .corp-card-body {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .corp-desc-box h4,
    .corp-scope-box h4 {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }

    .corp-desc-box p {
        font-size: 0.74rem !important;
        line-height: 1.35 !important;
    }

    .scope-grid li {
        font-size: 0.72rem !important;
        gap: 6px !important;
    }

    .corp-card-footer {
        padding: 10px 12px !important;
        border-radius: 8px !important;
    }

    .value-add-badge {
        font-size: 0.72rem !important;
        gap: 6px !important;
    }

    .value-add-badge i {
        font-size: 1rem !important;
    }
}
/* ==========================================
   HAKKIMIZDA DEĞERLERİMİZ MOBİL HİZALAMA VE KAYMA DÜZELTMESİ
   ========================================== */
@media screen and (max-width: 768px) {
    /* Değerlerimiz bölümü padding */
    .values-section {
        padding: 30px 0 !important;
    }

    /* Başlık boyutu */
    .values-section .main-blue-title {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    /* Kart konteyneri ve Kartların Hizalanması */
    .services-cards-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .feature-card {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 24px 16px !important;
        border-radius: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }

    /* İkon kutusunun kart içine düzgünce yerleşmesi (Eksi margin ve absolute sıfırlandı) */
    .feature-card .circle-icon {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 auto 12px auto !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
    }

    /* Ortadaki logo ikonu boyutu */
    .feature-card .circle-icon img {
        width: 28px !important;
        height: auto !important;
        max-height: 28px !important;
        object-fit: contain !important;
    }

    /* Başlık ve Metinler */
    .feature-card .card-green-title {
        font-size: 1.05rem !important;
        margin-bottom: 8px !important;
    }

    .feature-card .card-desc {
        font-size: 0.82rem !important;
        line-height: 1.45 !important;
        margin: 0 !important;
    }

    /* Üstteki Rakamlar Banner'ı (Yeşil Kutu) Düzeltmesi */
    .about-stats-banner {
        padding: 20px 10px !important;
    }

    .about-stats-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
}
/* ==========================================
   LÜKS MOUSE EFEKTİ (GÜVENLİ MOD)
   ========================================== */
@media (min-width: 992px) {
    /* Varsayılan ok kalsın, takılma durumunda mouse kaybolmasın */
    html, body, a, button {
        cursor: auto !important;
    }

    .custom-cursor-outline {
        width: 36px;
        height: 36px;
        border: 2px solid #22c55e;
        background-color: rgba(34, 197, 94, 0.1);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-50%, -50%);
        transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
    }

    /* Hover durumunda halkanın tepkisi */
    body.cursor-hover .custom-cursor-outline {
        width: 54px;
        height: 54px;
        background-color: rgba(34, 197, 94, 0.2);
    }
}
/* ==========================================
   LÜKS MİMARİ CUSTOM CURSOR (CIRCLE & AURA)
   ========================================== */
@media (min-width: 992px) {
    /* Varsayılan sistem okunu tamamen kaldırıyoruz */
    html, body, a, button, input, select, textarea, [role="button"] {
        cursor: none !important;
    }

    /* Merkezdeki Sabit Nokta */
    .custom-cursor-dot {
        width: 8px;
        height: 8px;
        background-color: #22c55e; /* GarantiProje Yeşili */
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, background-color 0.2s ease;
    }

    /* Akıcı Takip Eden Dış Halka */
    .custom-cursor-ring {
        width: 38px;
        height: 38px;
        border: 1.5px solid rgba(34, 197, 94, 0.65);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 999998;
        transform: translate(-50%, -50%);
        transition: width 0.25s ease-out, height 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
    }

    /* Tıklanabilir Öğelere Gelindiğinde (Hover) Büyüme Efekti */
    body.cursor-hover .custom-cursor-ring {
        width: 62px;
        height: 62px;
        background-color: rgba(34, 197, 94, 0.12);
        border-color: #22c55e;
    }

    body.cursor-hover .custom-cursor-dot {
        transform: translate(-50%, -50%) scale(1.6);
        background-color: #16a34a;
    }
}
/* İK ve Genel Form Buton Hover Efekti */
form button[type="submit"] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

form button[type="submit"]:hover {
    background-color: #16a34a !important; /* Bir tık daha koyu ve canlı yeşil */
    transform: translateY(-3px); /* Buton hafifçe yukarı kalkar */
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4) !important; /* Yeşil parlama gölgesi */
    cursor: pointer;
}

form button[type="submit"]:active {
    transform: translateY(-1px); /* Tıklama hissi */
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3) !important;
}
/* ==========================================
   BLOG DETAY SAYFALARI MOBİL TİPOGRAFİ AYARI
   ========================================== */
.container article h1 {
    font-size: 2rem;
}

.container article h2 {
    font-size: 1.25rem;
}

.container article p {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .container article {
        padding: 20px !important;
    }
    
    .container article h1 {
        font-size: 1.5rem !important;
    }
    
    .container article h2 {
        font-size: 1.15rem !important;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* Yönetim Mesajı İmza / Profil Kartı İkon Boyutu Ayarı */
.management-card-img, 
.management-avatar, 
.profile-card-icon-box,
.management-signature-box img {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
    font-size: 2rem !important; /* Eğer ikon font-awesome ise */
}