@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #0066ff;
    --secondary-color: #0046aa;
    --background-gradient: linear-gradient(135deg, #004aad, #001e5a);
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --card-bg: #ffffff;
    --gray-light: #f6f8fc;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f6f8fc;
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
.main-header {
    background-color: #001e5a;
    color: var(--text-light);
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.header-search-container {
    position: relative;
    flex: 1;
    margin: 0 30px;
    max-width: 400px;
}

.header-search-container input {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 15px 10px 40px;
    font-size: 15px;
    outline: none;
}

.header-search-container .search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-nav .nav-link {
    color: #cdd5e0;
    text-decoration: none;
    font-size: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Manrope', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-header-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-header-primary:hover {
    background: var(--secondary-color);
}

.btn-header-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ========== HERO ========== */
.hero {
    background: var(--background-gradient);
    color: var(--text-light);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../images/background.jpg');
    opacity: 0.3;
    background-size: cover;
}

.hero-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 30px;
}

.btn-hero {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

.btn-hero:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ========== HERO CARD ========== */
.hero-right-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.hero-right-card h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.hero-right-card p {
    font-size: 15px;
    text-align: center;
    margin-bottom: 25px;
    color: #d0d7e2;
}

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

.hero-buttons button {
    flex: 1 1 45%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.hero-buttons button:hover,
.hero-buttons button.active {
    background: #fff;
    color: var(--primary-color);
}

.select-row {
    display: flex;
    gap: 10px;
}

.select-box {
    flex: 1;
    position: relative;
}

.select-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    pointer-events: none;
}

.select-box select {
    width: 100%;
    height: 44px;
    padding: 0 10px 0 35px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-box select option {
    background: #001e5a;
    color: #fff;
}

.search-row {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    align-items: stretch;
}

.input-box {
    flex: 1;
    position: relative;
}

.input-box i {
    position: absolute;
    top: 60%;
    left: 12px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    pointer-events: none;
}

.input-box input {
    width: 100%;
    height: 44px;
    padding: 0 10px 0 35px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-search {
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 15px;
    height: 44px;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 12px;
    border: none;
}

.btn-search:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ========== POPÜLER KATEGORİLER ========== */
.popular-categories {
    background: linear-gradient(135deg, #f9fbff 0%, #eef5ff 100%);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popular-categories .container {
    position: relative;
    z-index: 1;
}

.popular-categories::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.popular-categories::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.popular-categories h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #0b1d3a;
    letter-spacing: -0.3px;
    font-family: 'Manrope', sans-serif;
}

.categories-carousel {
    position: relative;
}

.category-item {
    text-decoration: none;
    color: #0b3c91;
    transition: all 0.3s ease;
}

.icon-circle {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #1a5bdd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px auto;
    transition: all 0.35s ease;
}

.icon-circle i {
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.category-item p {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.2px;
    color: #0b3c91;
    transition: all 0.3s ease;
}

.category-item:hover .icon-circle {
    transform: translateY(-7px) scale(1.05);
    background: #3377ff;
    box-shadow: 0 8px 35px rgba(11, 60, 145, 0.4);
}

.category-item:hover p {
    color: #0d49b0;
}

/* ========== İLAN BÖLÜMLERİ ========== */
.ilanlar-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.ilanlar-section .container {
    position: relative;
}

.ilanlar-section.bg-light {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
}

/* Yatırımcı İlanları Özel Arka Plan */
.yatirimci-ilanlar-section {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
}

.yatirimci-ilanlar-section .container {
    position: relative;
    z-index: 1;
}

.yatirimci-ilanlar-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1d3a;
    position: relative;
    padding-left: 20px;
}

.section-header h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 35px;
    background: linear-gradient(to bottom, var(--primary-color), #00d4ff);
    border-radius: 5px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.view-all:hover {
    gap: 12px;
}

/* ========== İLAN KARTLARI (YENİ TASARIM) ========== */
.ilan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin: 10px;
    border: 2px solid transparent;
}

.ilan-card:hover {
    box-shadow: 0 8px 25px rgba(0,102,255,0.2);
    transform: translateY(-5px);
    border-color: rgba(0,102,255,0.3);
}

/* Yatırımcı İlan Kartı Özel Stil */
.yatirimci-ilan-card {
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.yatirimci-ilan-card:hover {
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.5);
}

.investor-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
}

.ilan-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.ilan-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    opacity: 0;
    transition: 0.3s;
}

.ilan-card:hover .slider-nav {
    opacity: 1;
}

.slider-nav button {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-nav button:hover {
    background: rgba(0,0,0,0.8);
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.ilan-price-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
}

.ilan-view-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ilan-content {
    padding: 20px;
}

.ilan-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ilan-details {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.ilan-details span {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ilan-location-detail {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.ilan-footer {
    display: flex;
    gap: 10px;
}

.ilan-footer.single-button {
    display: block;
}

.btn-full {
    width: 100%;
    flex: auto;
}

.btn-ilan-view {
    flex: 1;
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

.btn-ilan-view:hover {
    background: #333;
}

.btn-ilan-offer {
    flex: 1;
    background: #ffd900;
    color: #000;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
    font-size: 13px;
    display: block;
}

.btn-ilan-offer:hover {
    background: #f5c400;
    transform: scale(1.02);
}

.btn-investor {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: #fff;
}

.btn-investor:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff3838 100%);
}

/* ========== OWL CAROUSEL ========== */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
}

.owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    right: -25px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    pointer-events: all;
    background: var(--primary-color) !important;
    color: #fff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    transition: 0.3s !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
}

.owl-nav button:hover {
    background: var(--secondary-color) !important;
    transform: scale(1.1) !important;
}

.owl-nav button.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}
/* ========== YATIRIMCILAR ========== */
.populer-yatirimcilar {
    padding: 100px 0;
    background: linear-gradient(135deg, #e6eeff 0%, #d9e8ff 50%, #cce0ff 100%);
    position: relative;
    overflow: hidden;
}

.populer-yatirimcilar .container {
    position: relative;
    z-index: 1;
}

.populer-yatirimcilar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 91, 221, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.populer-yatirimcilar::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(51, 119, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.section-header-center h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0b1d3a;
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.divider-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, #1a5bdd, transparent);
}

.divider-icon {
    color: #1a5bdd;
    font-size: 12px;
}

.yatirimci-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
    border: 2px solid transparent;
    margin: 10px;
}

.yatirimci-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), #00d4ff);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: 0.3s;
}

.yatirimci-card:hover {
    box-shadow: 0 12px 40px rgba(26, 91, 221, 0.2);
    transform: translateY(-8px);
    border-color: rgba(26, 91, 221, 0.2);
}

.yatirimci-card:hover::before {
    opacity: 1;
}

.yatirimci-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.yatirimci-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.yatirimci-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.yatirimci-location {
    font-size: 13px;
    color: #888;
}

.yatirimci-stats {
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-label {
    font-size: 13px;
    color: #666;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.status-active {
    color: #4caf50;
}

.yatirimci-info,
.yatirimci-criteria,
.yatirimci-activity {
    margin-bottom: 20px;
}

.yatirimci-info h5,
.yatirimci-criteria h5,
.yatirimci-activity h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.yatirimci-bio,
.criteria-text,
.yatirimci-activity p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* ========== FOOTER ========== */
.main-footer {
    background: #e8e8e8;
    padding: 60px 0 20px;
    color: #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-col {
    max-width: 350px;
}

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

.footer-description {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.footer-follow-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

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

.footer-col ul li a i {
    font-size: 10px;
}

.footer-qr-col {
    text-align: center;
}

.footer-qr {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.etbis-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.dmca-badge {
    width: 80px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #d0d0d0;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .main-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* ========== BÖLÜM ÖZEL TASARIMLARI ========== */

/* 1. STARTUP İLANLARI - Modern Teknolojik */
.startup-ilanlar-section {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    position: relative;
    overflow: hidden;
}

.startup-ilanlar-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.startup-ilanlar-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.startup-ilanlar-section .section-header h2 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.startup-ilanlar-section .section-header h2::before {
    background: linear-gradient(to bottom, #00d4ff, #7b2ff7);
}

.startup-ilanlar-section .view-all {
    color: #00d4ff;
}

.startup-ilan-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.startup-ilan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    transition: 0.5s;
}

.startup-ilan-card:hover::before {
    left: 100%;
}

.startup-ilan-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

/* 2. FRANCHISE İLANLARI - Profesyonel Kurumsal */
.franchise-ilanlar-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.franchise-ilanlar-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 40%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, transparent 60%),
        linear-gradient(150deg, transparent 40%, rgba(255, 255, 255, 0.2) 40%, rgba(255, 255, 255, 0.2) 60%, transparent 60%);
    background-size: 100px 100px;
    opacity: 0.4;
}

.franchise-ilanlar-section .container {
    position: relative;
    z-index: 1;
}

.franchise-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.franchise-ilan-card {
    background: #fff;
    border: 2px solid #e0e5ec;
    box-shadow:
        12px 12px 24px rgba(174, 174, 192, 0.4),
        -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.franchise-ilan-card:hover {
    box-shadow:
        8px 8px 16px rgba(174, 174, 192, 0.5),
        -8px -8px 16px rgba(255, 255, 255, 1);
    border-color: #667eea;
}

/* 3. İŞLETME İLANLARI - Klasik Güvenilir */
.isletme-ilanlar-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    position: relative;
}

.isletme-ilanlar-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    background: url('data:image/svg+xml,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="1"/></pattern></defs><rect width="400" height="400" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.isletme-ilanlar-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.isletme-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.isletme-ilan-card {
    background: #fff;
    border: 2px solid rgba(245, 87, 108, 0.2);
    position: relative;
}

.isletme-ilan-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
    transform: scaleX(0);
    transition: 0.3s;
}

.isletme-ilan-card:hover::after {
    transform: scaleX(1);
}

.isletme-ilan-card:hover {
    border-color: #f5576c;
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.25);
}

/* 4. YATIRIMCI İLANLARI - Premium Lüks */
.yatirimci-ilanlar-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.yatirimci-ilanlar-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
}

.yatirimci-ilanlar-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.yatirimci-ilanlar-section .container {
    position: relative;
    z-index: 1;
}

.yatirimci-ilanlar-section .section-header h2 {
    color: #ffd700;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5);
}

.yatirimci-ilanlar-section .section-header h2::before {
    background: linear-gradient(to bottom, #ffd700, #ffa500);
}

.yatirimci-ilanlar-section .view-all {
    color: #ffd700;
}

.yatirimci-ilan-card {
    background: linear-gradient(135deg, #2c2c3e 0%, #1f1f2e 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.yatirimci-ilan-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transition: 0.5s;
    opacity: 0;
}

.yatirimci-ilan-card:hover::before {
    opacity: 1;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.yatirimci-ilan-card:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    transform: translateY(-8px);
}

.yatirimci-ilan-card .ilan-title {
    color: #fff;
}

.yatirimci-ilan-card .ilan-details span {
    color: #bbb;
}

.yatirimci-ilan-card .ilan-location-detail {
    color: #999;
}

.investor-premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #1a1a2e;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

/* Ortak Düzenlemeler */
.ilanlar-section .container {
    position: relative;
    z-index: 1;
}

/* ========== POPÜLER YATIRIMCILAR YENİ TASARIM ========== */
.populer-yatirimcilar {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d3a 50%, #0f1729 100%);
    position: relative;
    overflow: hidden;
}

.populer-yatirimcilar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.04) 0%, transparent 70%);
}

.populer-yatirimcilar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    animation: scan 15s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.populer-yatirimcilar .container {
    position: relative;
    z-index: 1;
}

.populer-yatirimcilar .section-header-center h2 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: -1px;
}

.populer-yatirimcilar .section-header-center p {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 500;
}

.populer-yatirimcilar .section-divider .divider-line {
    background: linear-gradient(to right, transparent, #ffd700, transparent);
    height: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.populer-yatirimcilar .section-divider .divider-icon {
    color: #ffd700;
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

/* Yatırımcı Kartı Premium Tasarım */
.yatirimci-card {
    background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
    margin: 10px;
    overflow: hidden;
}

.yatirimci-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.yatirimci-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.yatirimci-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.yatirimci-card:hover::after {
    opacity: 1;
    animation: glow-rotate 4s linear infinite;
}

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

.yatirimci-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.yatirimci-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.yatirimci-name {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.yatirimci-title {
    font-size: 15px;
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: 600;
}

.yatirimci-location {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.yatirimci-location i {
    color: #ffd700;
}

.yatirimci-stats {
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: 0.3s;
}

.stat-item:hover {
    padding-left: 10px;
    border-bottom-color: rgba(255, 215, 0, 0.3);
}



.status-active {
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.yatirimci-info h5,
.yatirimci-criteria h5,
.yatirimci-activity h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yatirimci-info h5::before,
.yatirimci-criteria h5::before,
.yatirimci-activity h5::before {
    content: "◆";
    color: #ffa500;
    font-size: 12px;
}

.yatirimci-bio,
.criteria-text,
.yatirimci-activity p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ========== SON EKLENEN İLANLAR YENİ TASARIM ========== */
.son-eklenen-ilanlar {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.son-eklenen-ilanlar::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 20s ease-in-out infinite;
}

.son-eklenen-ilanlar::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -50px) rotate(180deg); }
}

.son-eklenen-ilanlar .container {
    position: relative;
    z-index: 1;
}

.son-eklenen-ilanlar .section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.son-eklenen-ilanlar .section-header h2::before {
    background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.6));
}

.son-eklenen-ilanlar .view-all {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.son-eklenen-ilanlar .view-all:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

/* Son Eklenen İlan Kartları */
.son-eklenen-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    margin: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

.son-eklenen-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: 0.4s;
}

.son-eklenen-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: #fff;
}

.son-eklenen-card:hover::before {
    opacity: 1;
}

.yeni-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========== POPÜLER KATEGORİLER AÇIK RENK ========== */
.popular-categories {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 50%, #f0f4ff 100%);
    padding:50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animasyonlu Arka Plan Grid */
.popular-categories::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(102, 126, 234, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Parlayan Işık Efektleri */
.popular-categories::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.08) 0%,
        rgba(118, 75, 162, 0.05) 25%,
        rgba(255, 107, 107, 0.03) 50%,
        transparent 70%
    );
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.popular-categories .container {
    position: relative;
    z-index: 1;
}

/* Başlık Bölümü */
.categories-header {
    margin-bottom: 70px;
    position: relative;
}

.popular-categories h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #001e5a 50%, #05408d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.5));
    }
}

.popular-categories h2::before {
    content: "✦";
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #667eea;
    animation: spin-star 4s linear infinite;
}

.popular-categories h2::after {
    content: "✦";
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #764ba2;
    animation: spin-star 4s linear infinite reverse;
}

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

.category-subtitle {
    color: #667eea;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

/* Dekoratif Çizgiler */
.categories-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.decoration-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #667eea, transparent);
    position: relative;
}

.decoration-line::before,
.decoration-line::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
    animation: dot-pulse 2s ease-in-out infinite;
}

.decoration-line::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-line::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

@keyframes dot-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50% { transform: translateY(-50%) scale(1.5); opacity: 0.6; }
}

.decoration-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(102, 126, 234, 0.4);
    animation: icon-float 3s ease-in-out infinite;
}

.decoration-icon i {
    font-size: 22px;
    color: #fff;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Kategori Item Kartları */
.category-item {
    text-decoration: none;
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.category-wrapper {
    position: relative;
    padding: 20px;
}

/* Kategori İkon Merkezi */
.icon-circle {
    width: 130px;
    height: 130px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow:
        0 10px 30px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Parlayan Kenar Efekti */
.icon-circle::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        #667eea 45deg,
        transparent 90deg,
        transparent 180deg,
        #764ba2 225deg,
        transparent 270deg
    );
    animation: rotate-border 4s linear infinite;
    opacity: 0;
    transition: 0.5s;
}

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

.category-item:hover .icon-circle::before {
    opacity: 1;
}

/* İç Gradient Overlay */
.icon-circle::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 28px;
    z-index: 1;
}

/* İkon */
.icon-circle i {
    font-size: 48px;
    background: linear-gradient(135deg, #667eea 0%, #001e5a 50%, #05408d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

/* Kategori İsmi */
.category-item p {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #2d3748;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 8px;
}

/* Kategori Açıklaması */
.category-desc {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Hover Efektleri */
.category-item:hover .icon-circle {
    transform: translateY(-15px) scale(1.08) rotate(-5deg);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow:
        0 20px 50px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.category-item:hover .icon-circle i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 15px rgba(102, 126, 234, 0.5));
}

.category-item:hover p {
    color: #667eea;
    transform: translateY(-5px);
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.category-item:hover .category-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Parçacık Efekti Container */
.category-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s;
}

.category-item:hover .category-particles {
    opacity: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
    animation: particle-float 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 20%; animation-delay: 0.5s; }
.particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 1s; }
.particle:nth-child(4) { bottom: 20%; right: 25%; animation-delay: 1.5s; }

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

/* Carousel Okları */
.popular-categories .owl-nav button {
    background: linear-gradient(135deg, #667eea 0%, #001e5a 50%, #05408d 100%) !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    box-shadow:
        0 10px 30px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
}

.popular-categories .owl-nav button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: scale(1.15) !important;
    box-shadow:
        0 15px 40px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.popular-categories .owl-nav button i {
    color: #fff !important;
    font-weight: 900 !important;
}

/* ========== HEADER ULTRA MODERN ========== */
.main-header {
    background: linear-gradient(135deg, #1b2349 0%, #06306f 100%);
    color: var(--text-light);
    padding: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Parlayan Arka Plan Efekti */
.main-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: shine-header 3s ease-in-out infinite;
}



.main-header.scrolled {
    box-shadow:
        0 4px 30px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo Bölümü */
.logo {
    display: flex;
    align-items: center;
    transition: 0.3s;
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff, transparent);
    transition: 0.3s;
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.logo:hover a {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

.logo img {
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

/* Arama Kutusu */
.header-search-container {
    position: relative;
    flex: 1;
    margin: 0 30px;
    max-width: 450px;
}

.header-search-container form {
    position: relative;
    width: 100%;
}

.header-search-container input {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 50px 12px 20px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2d3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-search-container input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.header-search-container input:focus {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header-search-container .search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.header-search-container .search-icon:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.header-search-container input:focus + .search-icon {
    animation: pulse-search 1s ease-in-out infinite;
}

@keyframes pulse-search {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
}

.main-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}

.main-nav .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.main-nav .nav-link:hover::before {
    width: 60%;
}

/* Header Butonlar */
.btn {
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Primary Button */
.btn-header-primary {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    color: #667eea;
    box-shadow:
        0 4px 15px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-header-primary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fff 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-header-primary:hover i {
    transform: rotate(90deg);
}

/* Secondary Button */
.btn-header-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-header-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-header-secondary:hover i {
    transform: scale(1.2);
}

/* Active Button State */
.btn:active {
    transform: translateY(0);
}

/* Responsive Header */
@media (max-width: 1024px) {
    .header-search-container {
        max-width: 350px;
        margin: 0 20px;
    }

    .main-nav {
        gap: 10px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 12px 0;
    }

    .main-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        flex: 0 0 auto;
    }

    .header-search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .main-nav {
        flex: 1;
        justify-content: flex-end;
        gap: 8px;
    }

    .main-nav .nav-link {
        font-size: 0;
        padding: 10px;
    }

    .main-nav .nav-link i {
        font-size: 16px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0;
    }

    .btn i {
        font-size: 16px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 120px !important;
    }

    .btn {
        padding: 8px 12px;
    }
}

/* Header Glow Effect on Scroll */
.main-header.scrolled::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 10px;
    background: radial-gradient(ellipse, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    filter: blur(10px);
}

/* Logo Pulse Animation */
@keyframes logo-pulse {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    }
}

.logo:hover img {
    animation: logo-pulse 2s ease-in-out infinite;
}



/* ========== İLAN DETAY SAYFASI ========== */
.ilan-detay-section {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.breadcrumb i {
    color: #cbd5e0;
    font-size: 12px;
}

.breadcrumb span {
    color: #2d3748;
    font-size: 14px;
    font-weight: 600;
}

/* Grid Layout */
.detay-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

/* Sol Kolon - Main */
.detay-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Galeri */
.detay-galeri {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

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

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
}

.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.3s;
}

.thumbnail:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Detay Header */
.detay-header {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detay-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.detay-kategori {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.startup-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.detay-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.detay-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.detay-meta span {
    color: #718096;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.detay-meta i {
    color: #667eea;
}

.detay-fiyat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.fiyat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fiyat {
    display: block;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hızlı İstatistikler */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: #fff;
    font-size: 22px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


/* Content Boxes */
.detay-content-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detay-content-box h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.detay-content-box h2 i {
    color: #667eea;
    font-size: 20px;
}

.detay-content-box p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.detay-content-box p:last-child {
    margin-bottom: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #ffc107;
}

.highlight-box h2 {
    color: #f57c00;
    border-bottom-color: #ffc107;
}

.highlight-box h2 i {
    color: #ffc107;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    transition: 0.3s;
}

.tech-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Avantaj List */
.avantaj-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.avantaj-list li {
    color: #4a5568;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f7fafc;
    border-radius: 8px;
    transition: 0.3s;
}

.avantaj-list li:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.avantaj-list li i {
    color: #48bb78;
    font-size: 18px;
    flex-shrink: 0;
}

/* Finansal Tablo */
.finansal-tablo {
    overflow-x: auto;
}

.finansal-tablo table {
    width: 100%;
    border-collapse: collapse;
}

.finansal-tablo thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.finansal-tablo th {
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finansal-tablo tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: 0.3s;
}

.finansal-tablo tbody tr:hover {
    background: #f7fafc;
}

.finansal-tablo td {
    padding: 15px;
    color: #4a5568;
    font-size: 15px;
    font-weight: 600;
}

/* Sahip Box */
.sahip-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 2px solid #e2e8f0;
}

.sahip-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sahip-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.sahip-avatar i {
    color: #fff;
    font-size: 32px;
}

.sahip-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.sahip-unvan {
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sahip-deneyim {
    color: #718096;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Sidebar */
.detay-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-box h3 i {
    color: #667eea;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.contact-box h3 {
    color: #fff;
}

.contact-box h3 i {
    color: rgba(255, 255, 255, 0.8);
}

.contact-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: #667eea;
    color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Info Box */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 13px;
    color: #718096;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: #1a202c;
    font-weight: 600;
}

.status-active {
    color: #48bb78;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-active i {
    font-size: 8px;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Share Box */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}

.share-btn:hover {
    transform: translateY(-5px);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.link {
    background: #718096;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border: 2px solid #ffc107;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-box i {
    color: #ffc107;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.warning-box p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.warning-box strong {
    color: #f57c00;
}

/* Responsive */
@media (max-width: 1024px) {
    .detay-grid {
        grid-template-columns: 1fr;
    }

    .detay-sidebar {
        position: static;
    }

    .detay-title-row {
        flex-direction: column;
    }

    .detay-fiyat-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }

    .detay-title {
        font-size: 24px;
    }

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

    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .share-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .ilan-detay-section {
        padding: 20px 0 40px;
    }

    .detay-header,
    .detay-content-box,
    .sidebar-box {
        padding: 20px;
    }

    .fiyat {
        font-size: 24px;
    }
}

/* ========== FRANCHISE ÖZEL STİLLER ========== */

/* Franchise Badge */
.franchise-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.franchise-badge-img {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

/* Franchise Header */
.franchise-header {
    border-left: 5px solid #667eea;
}

/* Franchise Price Box */
.franchise-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Franchise Stats */
.franchise-stat {
    border-left: 4px solid #667eea;
}

.franchise-stat:hover {
    border-left-color: #764ba2;
}

.franchise-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Franchise Content Boxes */
.franchise-box {
    border-left: 4px solid #667eea;
}

.franchise-box h2 {
    color: #667eea;
}

.franchise-highlight {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    border: 2px solid #667eea;
}

.franchise-highlight h2 {
    color: #667eea;
    border-bottom-color: #667eea;
}

/* Franchise Paket Grid */
.franchise-paket-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: 0.3s;
}

.paket-item:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
    transform: translateX(5px);
}

.paket-label {
    font-size: 15px;
    color: #4a5568;
    font-weight: 600;
}

.paket-value {
    font-size: 16px;
    color: #667eea;
    font-weight: 700;
}

.paket-item.toplam {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-left-color: #fff;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.paket-item.toplam .paket-label,
.paket-item.toplam .paket-value {
    color: #fff;
    font-size: 18px;
}

/* Gelir Karlılık Grid */
.gelir-karlilik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gelir-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #667eea;
    transition: 0.3s;
}

.gelir-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.gelir-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.gelir-icon i {
    color: #fff;
    font-size: 26px;
}

.kar-icon {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.gelir-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gelir-label {
    font-size: 13px;
    color: #718096;
    font-weight: 600;
}

.gelir-value {
    font-size: 20px;
    color: #667eea;
    font-weight: 800;
}

.kar-value {
    color: #48bb78;
}

/* Franchise List */
.franchise-list li {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-left: 4px solid #667eea;
}

.franchise-list li:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
}

.franchise-list li i {
    color: #667eea;
}

/* Gereksinim Grid */
.gereksinim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gereksinim-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e8ecff;
    transition: 0.3s;
}

.gereksinim-item:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.gereksinim-item i {
    color: #667eea;
    font-size: 20px;
    flex-shrink: 0;
}

.gereksinim-item span {
    font-size: 14px;
    color: #4a5568;
    font-weight: 600;
}

/* Avantaj Grid */
.avantaj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.avantaj-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8ecff;
    transition: 0.3s;
}

.avantaj-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.avantaj-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.avantaj-icon i {
    color: #fff;
    font-size: 20px;
}

.avantaj-card span {
    font-size: 14px;
    color: #4a5568;
    font-weight: 600;
    line-height: 1.4;
}

/* Franchise Sahip */
.franchise-sahip {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid #667eea;
}

.franchise-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Franchise Contact Box */
.franchise-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.franchise-btn {
    background: #fff;
    color: #667eea;
}

.franchise-btn:hover {
    background: #f8f9ff;
}

/* Dokuman Box */
.dokuman-box {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border: 2px solid #e8ecff;
}

.dokuman-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dokuman-item {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4a5568;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid transparent;
}

.dokuman-item:hover {
    border-color: #667eea;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.dokuman-item i:first-child {
    color: #e53e3e;
    font-size: 24px;
}

.dokuman-item span {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.dokuman-item i:last-child {
    color: #667eea;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .gelir-karlilik-grid,
    .gereksinim-grid,
    .avantaj-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== İŞLETME ÖZEL STİLLER (BEYAZ/AÇIK TONLAR) ========== */

/* İşletme Badge */
.isletme-badge {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.isletme-badge-img {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(2, 132, 199, 0.9) 100%);
}

/* İşletme Header */
.isletme-header {
    border-left: 5px solid #0ea5e9;
}

/* İşletme Price Box */
.isletme-price {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.fiyat-alt {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* İşletme Stats */
.isletme-stat {
    border-left: 4px solid #0ea5e9;
}

.isletme-stat:hover {
    border-left-color: #0284c7;
}

.isletme-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* İşletme Content Boxes */
.isletme-box {
    border-left: 4px solid #0ea5e9;
}

.isletme-box h2 {
    color: #0284c7;
}

.isletme-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
}

.isletme-highlight h2 {
    color: #0284c7;
    border-bottom-color: #0ea5e9;
}

/* Finansal Özet Grid */
.finansal-ozet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.finansal-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e0f2fe;
    text-align: center;
    transition: 0.3s;
}

.finansal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.finansal-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finansal-value {
    display: block;
    font-size: 24px;
    color: #0284c7;
    font-weight: 800;
}

/* Müşteri Grid */
.musteri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.musteri-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #e0f2fe;
    transition: 0.3s;
}

.musteri-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.musteri-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.musteri-icon i {
    color: #fff;
    font-size: 20px;
}

.musteri-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.musteri-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.musteri-value {
    font-size: 16px;
    color: #0284c7;
    font-weight: 800;
}

/* Ürün Grid */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.urun-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #e0f2fe;
    transition: 0.3s;
}

.urun-item:hover {
    border-color: #0ea5e9;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}

.urun-item i {
    color: #0ea5e9;
    font-size: 18px;
    flex-shrink: 0;
}

.urun-item span {
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

/* Varlık List */
.varlik-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.varlik-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
    transition: 0.3s;
}

.varlik-item:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.varlik-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.varlik-header i {
    color: #0ea5e9;
    font-size: 14px;
}

.varlik-header strong {
    color: #1e293b;
    font-size: 15px;
}

.varlik-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    padding-left: 24px;
}

/* Ekip Chart */
.ekip-chart {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ekip-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ekip-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ekip-pozisyon {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

.ekip-sayi {
    font-size: 14px;
    color: #0284c7;
    font-weight: 700;
}

.ekip-bar-container {
    width: 100%;
    height: 12px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e0f2fe;
}

.ekip-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 100%);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

/* İşletme List */
.isletme-list li {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-left: 4px solid #0ea5e9;
}

.isletme-list li:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.isletme-list li i {
    color: #0ea5e9;
}

/* İşletme Avantaj */
.isletme-avantaj {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid #e0f2fe;
}

.isletme-avantaj:hover {
    border-color: #0ea5e9;
}

.isletme-avantaj-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* İşletme Sahip */
.isletme-sahip {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
}

.isletme-avatar {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* İşletme Contact Box */
.isletme-contact {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.isletme-btn {
    background: #fff;
    color: #0284c7;
}

.isletme-btn:hover {
    background: #f0f9ff;
}

/* Responsive */
@media (max-width: 768px) {
    .finansal-ozet-grid,
    .musteri-grid,
    .urun-grid {
        grid-template-columns: 1fr;
    }

    .finansal-item,
    .musteri-card {
        padding: 15px;
    }

    .finansal-value {
        font-size: 20px;
    }
}

/* ========== YATIRIMCI ÖZEL STİLLER (MAVİ TONLARI) ========== */

/* Yatırımcı Profil Header */
.yatirimci-profile-header {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.profile-banner {
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.profile-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(29, 78, 216, 0.2) 100%);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #60a5fa;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-premium 2s ease-in-out infinite;
}

@keyframes pulse-premium {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.premium-badge i {
    animation: rotate-crown 3s linear infinite;
}

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

.profile-content {
    padding: 0 30px 30px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
    margin-top: -60px;
    position: relative;
}

.profile-avatar-large {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.profile-avatar-large i {
    color: #fff;
    font-size: 60px;
}

.profile-info {
    flex: 1;
    padding-top: 70px;
}

.profile-name {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-title {
    font-size: 18px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.profile-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-meta span {
    color: #718096;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-meta i {
    color: #3b82f6;
}

.status-badge {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.status-badge i {
    color: #fff !important;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Yatırımcı Stats */
.yatirimci-stat {
    border-left: 4px solid #3b82f6;
}

.yatirimci-stat:hover {
    border-left-color: #2563eb;
}

.yatirimci-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Yatırımcı Content Boxes */
.yatirimci-box {
    border-left: 4px solid #3b82f6;
}

.yatirimci-box h2 {
    color: #2563eb;
}

.yatirimci-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #3b82f6;
}

.yatirimci-highlight h2 {
    color: #2563eb;
    border-bottom-color: #3b82f6;
}

/* Yatırım Profil Grid */
.yatirim-profil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.profil-item {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 18px 20px;
    border-radius: 12px;
    border: 2px solid #dbeafe;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.3s;
}

.profil-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.profil-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.profil-value {
    font-size: 16px;
    color: #2563eb;
    font-weight: 700;
}

/* İstatistik Grid */
.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.istatistik-card {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #dbeafe;
    transition: 0.3s;
}

.istatistik-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.istatistik-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.istatistik-icon i {
    color: #fff;
    font-size: 20px;
}

.istatistik-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.istatistik-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.istatistik-value {
    font-size: 16px;
    color: #2563eb;
    font-weight: 800;
}

/* İlgi Tags */
.ilgi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ilgi-tag {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: 0.3s;
}

.ilgi-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Sektör Chart */
.sektor-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sektor-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sektor-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sektor-name {
    font-size: 15px;
    color: #475569;
    font-weight: 600;
}

.sektor-percent {
    font-size: 16px;
    color: #2563eb;
    font-weight: 800;
}

.sektor-bar-container {
    width: 100%;
    height: 14px;
    background: #eff6ff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #dbeafe;
}

.sektor-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    transition: width 1s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.sektor-bar-fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine-bar 2s ease-in-out infinite;
}

@keyframes shine-bar {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Kriter Grid */
.kriter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.kriter-item {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #dbeafe;
    transition: 0.3s;
}

.kriter-item:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.kriter-item i {
    color: #3b82f6;
    font-size: 18px;
    flex-shrink: 0;
}

.kriter-item span {
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

/* Değer List */
.deger-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.deger-item {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: 0.3s;
}

.deger-item:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.deger-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.deger-header i {
    color: #3b82f6;
    font-size: 18px;
}

.deger-header strong {
    color: #1e293b;
    font-size: 16px;
}

.deger-item p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    padding-left: 28px;
    line-height: 1.6;
}

/* Portföy Grid */
.portfoy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfoy-card {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 2px solid #dbeafe;
    transition: 0.3s;
}

.portfoy-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
}

.portfoy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.portfoy-icon i {
    color: #fff;
    font-size: 24px;
}

.portfoy-card h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 700;
}

.portfoy-sektor {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.portfoy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #dbeafe;
}

.portfoy-yatirim {
    font-size: 16px;
    color: #2563eb;
    font-weight: 800;
}

.portfoy-durum {
    font-size: 12px;
    color: #48bb78;
    font-weight: 600;
    background: rgba(72, 187, 120, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Eğitim List */
.egitim-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.egitim-item {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 2px solid #dbeafe;
    transition: 0.3s;
}

.egitim-item:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.egitim-item i {
    color: #3b82f6;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.egitim-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.egitim-content strong {
    color: #1e293b;
    font-size: 15px;
}

.egitim-content p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* Referans Slider */
.referans-slider {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.referans-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
    position: relative;
    transition: 0.3s;
}

.referans-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.referans-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #2563eb;
    font-size: 30px;
    opacity: 0.3;
}

.referans-card p {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Süreç Timeline */
.surec-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding-left: 40px;
}

.surec-timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(to bottom, #3b82f6, #2563eb);
}

.surec-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    position: absolute;
    left: -40px;
}

.step-content {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 15px 20px;
    border-radius: 12px;
    flex: 1;
    border: 2px solid #dbeafe;
}

.step-content p {
    color: #334155;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

/* Yatırımcı Contact Box */
.yatirimci-contact {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.yatirimci-btn {
    background: #fff;
    color: #2563eb;
}

.yatirimci-btn:hover {
    background: #eff6ff;
}

/* Yatırımcı Info Box */
.yatirimci-info-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
}

/* Social Box */
.social-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.social-link:hover {
    transform: translateX(5px);
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.website {
    background: #718096;
}

.social-link i {
    font-size: 18px;
}

/* Yatırımcı Warning */
.yatirimci-warning {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
}

.yatirimci-warning i {
    color: #2563eb;
}

.yatirimci-warning strong {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-info {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .profile-banner {
        height: 150px;
    }

    .profile-avatar-large {
        width: 100px;
        height: 100px;
    }

    .profile-avatar-large i {
        font-size: 40px;
    }

    .profile-name {
        font-size: 24px;
    }

    .yatirim-profil-grid,
    .istatistik-grid,
    .kriter-grid,
    .portfoy-grid {
        grid-template-columns: 1fr;
    }

    .surec-timeline {
        padding-left: 30px;
    }

    .step-number {
        left: -30px;
    }
}


/* ========== HERO PARTNERS CAROUSEL ========== */
.hero-partners {
  max-width:420px;
  padding:5px;
    margin-top: 25px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.partners-title {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.partners-carousel {
    display: flex;
    align-items: center;
}

.partner-logo {
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 35px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.08);
}

/* Partners Carousel Navigation */
.hero-partners .owl-nav {
    display: none;
}

.hero-partners .owl-dots {
    display: none;
}

.hero-partners .owl-stage-outer {
    padding: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-partners {
        margin-top: 20px;
        padding: 20px 15px;
    }

    .partners-title {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .partner-logo {
        height: 45px;
        padding: 5px 8px;
    }

    .partner-logo img {
        max-height: 30px;
    }
}

/* Flash Messages Container */
.flash-messages-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 600px;
    width: 90%;
    transition: opacity 0.3s ease;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.dropdown-header .user-info strong {
    display: block;
    font-size: 15px;
    color: #1f2937;
    margin-bottom: 4px;
}

.dropdown-header .user-info span {
    font-size: 13px;
    color: #6b7280;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    font-size: 14px;
    transition: 0.2s;
}

.dropdown-item:hover {
    background: #f9fafb;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: #9ca3af;
}

.dropdown-item.text-danger {
    color: #ef4444;
}

.dropdown-item.text-danger:hover {
    background: #fef2f2;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

.badge {
    background: #ef4444;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}
/* Teklif Ver Butonu */
.offer-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    overflow: hidden;
}

.btn-make-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-make-offer:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-make-offer i {
    font-size: 20px;
}

.offer-box-hint {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    margin: 0;
    text-align: center;
}

.offer-box-hint i {
    margin-right: 6px;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
/* ==== Başlayın Alanı ==== */
.gstart-section {
    background:
            linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),  /* karartma efekti */
            url('https://images.presentationgo.com/2025/07/blurred-open-office-background.jpg') center/cover no-repeat;
    padding: 60px 20px;
    position: relative;
    text-align: center;
    color: #fff;
    font-family: 'Albert Sans', sans-serif;
}

.gstart-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gstart-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.gstart-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gstart-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gstart-box:hover {
    transform: translateY(-5px);
}

.gstart-box p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.gstart-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
}

.gstart-btn-blue {
    background: #0094e8;
}
.gstart-btn-blue:hover {
    background: #007cc2;
}

.gstart-btn-yellow {
    background: #f6b800;
    color: #000;
}
.gstart-btn-yellow:hover {
    background: #d49f00;
    color: #fff;
}

.gstart-btn-green {
    background: #3fbf4f;
}
.gstart-btn-green:hover {
    background: #34a843;
}

/* Yardım Butonu */
.gstart-help {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0094e8;
    padding: 14px 8px;
    border-radius: 8px 0 0 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.gstart-help a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.gstart-help a:hover {
    text-decoration: underline;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .gstart-boxes {
        flex-direction: column;
        align-items: center;
    }
    .gstart-box {
        width: 100%;
        max-width: 320px;
    }

    .hero-partners {
        max-width: 350px;
        padding: 5px;
        margin-top: 25px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .hero-right-card {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 15px;
        max-width: none;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .yatirim-hero-button{
        padding: 8px 12px;
        /* padding: 20px; */
        font-size: 13px;
    }
}
