/* site.css - HOLDİNG & KIRMIZI KONSEPT */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0f172a; /* Derin Gece Mavisi */
    --primary-light: #334155;
    /* YENİ RENK: Kırmızımsı / Kurumsal Bordo-Kırmızı */
    --accent: #dc2626;
    --accent-hover: #b91c1c;
    --bg-body: #f3f4f6;
    --surface: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --sale: #ef4444;
    --rent: #10b981;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --glass: rgba(255, 255, 255, 0.95);
    --radius: 12px;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* --- HEADER --- */
.main-header {
    background-color: var(--surface);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .brand-logo img {
        max-height: 75px; /* Logonun taşıp menüyü bozmaması için */
        object-fit: contain;
    }

.nav-link {
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: var(--primary) !important;
    padding: 10px 18px !important;
    letter-spacing: -0.2px;
}

    .nav-link:hover, .nav-link.active {
        color: var(--accent) !important;
    }

/* DROPDOWN HOVER & STABILITY FIX */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.2s ease;
    }

    .dropdown-menu {
        margin-top: 0;
    }

        .dropdown-menu::before {
            content: "";
            position: absolute;
            top: -15px;
            left: 0;
            width: 100%;
            height: 15px;
            background: transparent;
        }
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius);
    padding: 15px;
    min-width: 240px;
    background-color: white;
}

.dropdown-item {
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--primary-light);
    transition: all 0.2s;
}

    .dropdown-item:hover {
        background-color: #f1f5f9;
        color: var(--accent);
        padding-left: 20px;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 100px 0 140px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.75)), url('https://images.unsplash.com/photo-1600596542815-e32c1647fbb2?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

/* YENİ: HOLDING TIMELINE TASARIMI */
.holding-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
    z-index: 5;
}

    .holding-timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        bottom: 20px;
        width: 4px;
        background: rgba(255,255,255,0.15);
        border-radius: 4px;
    }

.timeline-node {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
    position: relative;
}

    .timeline-node::before {
        content: '';
        position: absolute;
        left: -36px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: var(--primary);
        border: 3px solid var(--accent);
        border-radius: 50%;
        transition: all 0.3s;
        z-index: 2;
    }

    .timeline-node:hover, .timeline-node.active {
        transform: translateX(10px);
        color: white;
    }

        .timeline-node:hover::before, .timeline-node.active::before {
            background: var(--accent);
            box-shadow: 0 0 15px var(--accent);
        }

.node-icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    transition: 0.3s;
}

.timeline-node:hover .node-icon, .timeline-node.active .node-icon {
    background: var(--accent);
    border-color: var(--accent);
}

.node-text {
    display: flex;
    flex-direction: column;
}

.node-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.node-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* YENİ: YÜZEN GÖRSELLER (FLOATING IMAGES) */
.floating-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,0.1);
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    transition: 0.5s;
    filter: grayscale(50%);
}

    .floating-img:hover {
        opacity: 1;
        transform: scale(1.05);
        z-index: 10;
        filter: grayscale(0%);
        border-color: var(--accent);
    }

/* İNŞAAT GÖRSELİ */
.img-hafriyat {
    width: 190px !important; /* 200px'ten 150px'e %25 küçülttük */
    height: 145px !important; /* 140px'ten 105px'e orantıyı bozmadan küçülttük */
    /* GÖRSELİN YERİ KAYMASIN DİYE YENİ MERKEZ KOORDİNATLARI */
    top: 8px !important; /* -10px idi, küçüldüğü için aşağı ittik */
    right: 45px !important; /* 20px idi, küçüldüğü için sola ittik */

    animation: float 6s ease-in-out infinite;
    /* SOLUKLUĞU / BULANIKLIĞU KALDIRIP RENKLERİ CANLANDIRAN KISIM */
    opacity: 1 !important;
    filter: none !important;
    z-index: 99 !important; /* Arkadaki karanlık örtünün (overlay) üstüne çıkartır */
}

/* HAFRİYAT GÖRSELİ */
.img-insaat {
    width: 250px !important; /* Orijinal boyutta kaldı */
    height: 220px !important; /* Orijinal boyutta kaldı */

    bottom: -30px !important;
    right: 60px !important;
    animation: float 8s ease-in-out infinite reverse;
    /* SOLUKLUĞU / BULANIKLIĞU KALDIRIP RENKLERİ CANLANDIRAN KISIM */
    opacity: 1 !important;
    filter: none !important;
    z-index: 99 !important; /* Arkadaki karanlık örtünün (overlay) üstüne çıkartır */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ARAMA KUTUSU */
.search-box-wrapper {
    background: var(--glass);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.search-tab-btn {
    flex: 1;
    padding: 12px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

    .search-tab-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
    }

.form-control-lg, .form-select-lg {
    border: 1px solid #cbd5e1;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary);
    background-color: white;
}

    .form-control-lg:focus, .form-select-lg:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15); /* Kırmızımsı gölge */
    }

.btn-search-hero {
    background-color: var(--accent);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 10px;
    width: 100%;
    border: none;
    transition: transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .btn-search-hero:hover {
        background-color: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
    }

/* --- YENİ LÜKS İLAN KARTLARI (site.css içine ekleyin / güncelleyin) --- */
.listing-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

    .listing-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--accent);
    }

.card-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

    .card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.listing-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

/* Sol Üst ve Sağ Üst Rozetler */
.badge-status-container {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

    .badge-status-container .badge {
        padding: 8px 12px;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-radius: 8px;
        box-shadow: var(--shadow-sm);
    }

.price-tag {
    position: absolute;
    bottom: 15px;
    left: 15px; /* Sola alındı */
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.15rem;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.listing-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Özellikler (Oda, m2 vs) */
.listing-features {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
}

    .feature-item i {
        color: var(--accent);
        font-size: 1.1rem;
    }

/* Alt Bilgi: Danışman & Zaman */
.card-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.publisher-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.publisher-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.publisher-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.publisher-role {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
}

.publish-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* FOOTER */
footer {
    background-color: var(--primary);
    color: #94a3b8;
    padding-top: 80px;
    margin-top: 80px;
}

    footer h5 {
        color: white;
        font-weight: 700;
        margin-bottom: 25px;
    }

    footer ul li {
        margin-bottom: 12px;
    }

    footer a:hover {
        color: var(--accent);
        padding-left: 5px;
    }

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 10px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

    .mobile-nav-item.active {
        color: var(--accent);
    }

/* RESPONSIVE AYARLARI */
@media (max-width: 991px) {
    body {
        padding-bottom: 80px;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-section {
        padding: 60px 0 80px 0;
    }

    .search-tab-btn {
        padding: 10px 5px;
        font-size: 0.8rem;
    }
}

/* --- Cookie Consent Banner Tasarımı --- */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    border-top: 4px solid var(--accent); /* Sitenizin ana renk aksanı */
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .cookie-banner-wrapper.show-banner {
        transform: translateY(0);
    }

/* Mobil cihazlarda çerez bannerını alt menünün üzerine it */
@media (max-width: 767.98px) {
    .cookie-banner-wrapper {
        bottom: 65px; /* Mobil alt barınızın yüksekliği kadar yukarı itildi */
        padding-bottom: 10px;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.15); /* Gölgelendirmeyi belirginleştir */
    }

        /* Mobilde metin ile butonlar arası ezilmeyi engellemek için */
        .cookie-banner-wrapper p {
            font-size: 0.85rem !important;
            margin-bottom: 10px !important;
        }
}

/* --- Hakkımızda Mozaik Alanı --- */
.about-mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mosaic-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .mosaic-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    }

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1); /* Primary soft */
}

/* --- Kadromuz Yatay Kaydırma (Scroll) --- */
.team-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.team-scroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

    .team-scroll-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.team-card {
    width: 280px;
    scroll-snap-align: start;
}

.team-img-wrap {
    overflow: hidden;
}

.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,32,96,0.7); /* Primary Dark Hover */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

    .social-btn:hover {
        background: var(--accent);
        color: #fff;
        transform: scale(1.1);
    }


.wa-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s;
    animation: wa-pulse 2s infinite;
}

    .wa-toggle-btn:hover {
        transform: scale(1.1);
    }

.wa-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

    .wa-chat-window.active {
        transform: scale(1);
    }

.wa-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-body {
    padding: 20px;
    background-color: #ECE5DD;
    height: 200px;
    overflow-y: auto;
}

.wa-msg-bot {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 14px;
    color: #333;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 90%;
}

.wa-footer {
    padding: 10px;
    background: #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.wa-input {
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.wa-send-btn {
    background: #008f82;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Ana Kapsayıcı - Her cihazda görünmesini zorlar */
.wa-chatbot-wrapper {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    z-index: 2147483647 !important; /* Tarayıcıların desteklediği maksimum z-index değeri */
    display: block !important;
}

/* Mobilde Chatbot'u Alt Menünün Üstüne İtme ve Düzenleme */
@media (max-width: 767.98px) {
    .wa-chatbot-wrapper {
        bottom: 85px !important; /* Mobil alt barın tam üstü */
        right: 15px !important;
    }

    /* Mobil görünümde chat penceresi ekranı taşırmasın */
    .wa-chat-window {
        width: 290px !important;
        right: -5px !important;
        bottom: 75px !important;
    }
}

/* Ekip Kartları Detaylı Tasarım (About Sayfası Uyumu) */
.team-card-detailed {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f8f9fa;
}

    .team-card-detailed:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

.team-img-wrapper {
    height: 300px; /* Anasayfada fazla uzun durmaması için About'tan farklı olarak 300px idealdir */
    overflow: hidden;
}

    .team-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.team-card-detailed:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
}

.team-contact a.btn {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Çelenk Tasarımı (Altın Rengi, Defne Yaprakları İçeren SVG Arkaplan) */
.experience-wreath {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 65px;
    height: 65px;
    /* Şık bir SVG çelenk deseni (altın renginde) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4af37' d='M25.7,85.1c-0.6-0.6-1.3-1-2.1-1.3c-2.4-0.8-4.9-0.5-7,0.7c-0.9,0.5-1.7,1.2-2.3,2.1c-0.2,0.3-0.4,0.7-0.4,1c0,0.4,0.1,0.7,0.3,1c0.4,0.6,1.1,0.8,1.8,0.7c1.8-0.2,3.4-1.2,4.5-2.6C21.7,85.2,23.6,84.4,25.7,85.1z M74.3,85.1c0.6-0.6,1.3-1,2.1-1.3c2.4-0.8,4.9-0.5,7,0.7c0.9,0.5,1.7,1.2,2.3,2.1c0.2,0.3,0.4,0.7,0.4,1c0,0.4-0.1,0.7-0.3,1c-0.4,0.6-1.1,0.8-1.8,0.7c-1.8-0.2-3.4-1.2-4.5-2.6C78.3,85.2,76.4,84.4,74.3,85.1z M50,95c-11.4,0-21.5-6.7-26.3-16.8c-1.2-2.5-1.9-5.3-2.1-8.2c-0.1-1.3,0.8-2.5,2.1-2.6c1.3-0.1,2.5,0.8,2.6,2.1c0.2,2.3,0.8,4.5,1.7,6.5C32.1,84.5,40.4,90,50,90c9.6,0,17.9-5.5,22.1-13.9c0.9-2,1.5-4.2,1.7-6.5c0.1-1.3,1.3-2.3,2.6-2.1c1.3,0.1,2.3,1.3,2.1,2.6c-0.2,2.9-0.9,5.7-2.1,8.2C71.5,88.3,61.4,95,50,95z'/%3E%3Cpath fill='%23d4af37' d='M23.1,64.3c-2.4-0.9-4.9-0.8-7.1,0.3c-0.9,0.4-1.7,1.1-2.4,1.9c-0.2,0.3-0.4,0.6-0.4,1c0,0.4,0.1,0.8,0.3,1c0.4,0.6,1.1,0.8,1.8,0.7c1.8-0.3,3.4-1.4,4.4-2.8C20.6,65,21.8,64.2,23.1,64.3z M76.9,64.3c2.4-0.9,4.9-0.8,7.1,0.3c0.9,0.4,1.7,1.1,2.4,1.9c0.2,0.3,0.4,0.6,0.4,1c0,0.4-0.1,0.8-0.3,1c-0.4,0.6-1.1,0.8-1.8,0.7c-1.8-0.3-3.4-1.4-4.4-2.8C79.4,65,78.2,64.2,76.9,64.3z'/%3E%3Cpath fill='%23d4af37' d='M21.5,43c-2.3-1.1-4.9-1.3-7.2-0.3c-0.9,0.4-1.7,1-2.4,1.8c-0.3,0.3-0.4,0.6-0.4,1c0,0.4,0.2,0.8,0.4,1.1c0.4,0.5,1.1,0.7,1.8,0.5c1.7-0.5,3.3-1.7,4.2-3.2C19.1,43.2,20.2,42.5,21.5,43z M78.5,43c2.3-1.1,4.9-1.3,7.2-0.3c0.9,0.4,1.7,1,2.4,1.8c0.3,0.3,0.4,0.6,0.4,1c0,0.4-0.2,0.8-0.4,1.1c-0.4,0.5-1.1,0.7-1.8,0.5c-1.7-0.5-3.3-1.7-4.2-3.2C80.9,43.2,79.8,42.5,78.5,43z'/%3E%3Cpath fill='%23d4af37' d='M21.5,21.7c-2.1-1.4-4.6-1.9-7.1-1.2c-1,0.3-1.8,0.8-2.5,1.5c-0.3,0.3-0.5,0.7-0.5,1.1c0,0.4,0.2,0.8,0.5,1.1c0.5,0.5,1.2,0.6,1.8,0.4c1.6-0.7,3-2.1,3.8-3.7C18.6,21,19.9,20.6,21.5,21.7z M78.5,21.7c2.1-1.4,4.6-1.9,7.1-1.2c1,0.3,1.8,0.8,2.5,1.5c0.3,0.3,0.5,0.7,0.5,1.1c0,0.4-0.2,0.8-0.5,1.1c-0.5,0.5-1.2,0.6-1.8,0.4c-1.6-0.7-3-2.1-3.8-3.7C81.4,21,80.1,20.6,78.5,21.7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 55px 55px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

    .experience-wreath .wreath-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1;
        margin-top: 2px;
    }

    .experience-wreath .year {
        font-size: 1.3rem;
        font-weight: 900;
        color: #d4af37; /* Lüks Altın Rengi */
    }

    .experience-wreath .text {
        font-size: 0.55rem;
        font-weight: 800;
        color: #333;
        letter-spacing: 1px;
    }
