:root {
    --renk-koyu: #0B1426;
    --renk-koyu-acik: #152238;
    --renk-lacivert: #1E3354;
    --renk-altin: #B8860B;
    --renk-altin-acik: #D4A84B;
    --renk-altin-soft: rgba(184, 134, 11, 0.15);
    --renk-beyaz: #FFFFFF;
    --renk-krem: #FAFAF8;
    --renk-gri: #5C6678;
    --renk-gri-acik: #E8ECF1;
    --font-baslik: 'Montserrat', 'Segoe UI', sans-serif;
    --font-metin: 'Source Sans 3', 'Segoe UI', sans-serif;
    --gecis: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --golge: 0 12px 40px rgba(11, 20, 38, 0.12);
    --navbar-yukseklik: 78px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-metin);
    color: #2A3142;
    line-height: 1.75;
    overflow-x: hidden;
    background: var(--renk-beyaz);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-baslik);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--renk-koyu);
}

.site-navbar {
    background: rgba(11, 20, 38, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.65rem 0;
    transition: var(--gecis);
}

.site-navbar.scrolled {
    background: rgba(11, 20, 38, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.site-logo {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: var(--font-baslik);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.65rem 1rem !important;
    color: rgba(255, 255, 255, 0.82) !important;
    transition: var(--gecis);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--renk-altin-acik) !important;
}

.btn-altin {
    background: linear-gradient(135deg, var(--renk-altin), var(--renk-altin-acik));
    color: var(--renk-koyu);
    border: none;
    font-family: var(--font-baslik);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--gecis);
}

.btn-altin:hover {
    background: linear-gradient(135deg, var(--renk-altin-acik), #E8C56A);
    color: var(--renk-koyu);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}

.btn-outline-altin {
    border: 2px solid var(--renk-altin);
    color: var(--renk-altin);
    font-family: var(--font-baslik);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--gecis);
}

.btn-outline-altin:hover {
    background: var(--renk-altin);
    color: var(--renk-koyu);
    border-color: var(--renk-altin);
}

.hero-slider {
    position: relative;
    margin-top: calc(var(--navbar-yukseklik) * -1);
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 92vh;
    min-height: 580px;
    max-height: 900px;
}

.hero-slider .carousel-item {
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--renk-koyu);
}

.hero-slide-gorsel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 992px) {
    .hero-slide-gorsel {
        animation: heroZoom 8s ease-in-out infinite alternate;
    }
}

.hero-slide-varsayilan {
    background: linear-gradient(135deg, var(--renk-koyu) 0%, var(--renk-lacivert) 50%, #243B5C 100%);
}

.hero-slide-varsayilan .hero-slide-gorsel {
    display: none;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-slide-icerik {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 3;
    padding-top: var(--navbar-yukseklik);
}

.hero-sehir-etiket {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--altin-acik);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.hero-baslik {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--renk-beyaz);
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-alt-baslik {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-indicators {
    bottom: 2rem;
    z-index: 4;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 6px;
}

.hero-indicators button.active {
    background: var(--renk-altin);
    border-color: var(--renk-altin);
}

.hero-control {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    opacity: 0.8;
    z-index: 4;
}

.hero-control:hover {
    opacity: 1;
    background: rgba(184, 134, 11, 0.4);
}

.ozet-bant {
    background: var(--renk-beyaz);
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 1rem;
}

.ozet-kutu {
    background: var(--renk-beyaz);
    border: 1px solid var(--renk-gri-acik);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    box-shadow: var(--golge);
    height: 100%;
    transition: var(--gecis);
}

.ozet-kutu:hover {
    transform: translateY(-4px);
    border-color: var(--renk-altin-soft);
    box-shadow: 0 16px 48px rgba(11, 20, 38, 0.14);
}

.ozet-kutu i {
    font-size: 2rem;
    color: var(--renk-altin);
    margin-bottom: 0.75rem;
    display: block;
}

.ozet-kutu h6 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.ozet-kutu p {
    color: var(--renk-gri);
    font-size: 0.92rem;
    margin: 0;
}

.bolum-alan {
    padding: 5rem 0;
}

.bolum-baslik {
    text-align: center;
    margin-bottom: 3rem;
}

.bolum-etiket {
    display: inline-block;
    font-family: var(--font-baslik);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--renk-altin);
    margin-bottom: 0.75rem;
}

.bolum-etiket-acik {
    color: var(--renk-altin-acik);
}

.bolum-baslik h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.bolum-baslik p {
    color: var(--renk-gri);
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.sanatci-kart {
    background: var(--renk-beyaz);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--renk-gri-acik);
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.06);
    transition: var(--gecis);
    height: 100%;
}

.sanatci-kart:hover {
    transform: translateY(-8px);
    box-shadow: var(--golge);
    border-color: transparent;
}

.sanatci-kart-resim {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.sanatci-kart-resim .kapak-resim-alan,
.sanatci-kart-resim .kapak-resim-yok {
    height: 100%;
    min-height: 100%;
}

.sanatci-kart-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sanatci-kart:hover .sanatci-kart-resim img {
    transform: scale(1.06);
}

.sanatci-kart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 1.5rem 1.25rem;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.92));
    color: white;
}

.sanatci-kart-overlay h5 {
    color: white;
    font-size: 1.15rem;
    margin: 0;
}

.sanatci-kart-icerik {
    padding: 1.35rem;
}

.sanatci-kart-icerik p {
    color: var(--renk-gri);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.neden-biz-alan {
    background: var(--renk-krem);
}

.neden-biz-kart {
    text-align: center;
    padding: 2.25rem 1.5rem;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--renk-gri-acik);
    height: 100%;
    transition: var(--gecis);
}

.neden-biz-kart:hover {
    transform: translateY(-6px);
    box-shadow: var(--golge);
}

.neden-biz-ikon {
    width: 68px;
    height: 68px;
    background: var(--renk-altin-soft);
    border: 2px solid rgba(184, 134, 11, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    color: var(--renk-altin);
}

.neden-biz-kart h5 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.neden-biz-kart p {
    color: var(--renk-gri);
    font-size: 0.92rem;
    margin: 0;
}

.neden-biz-metin {
    color: var(--renk-gri);
    font-size: 1.05rem;
}

.teklif-alan {
    background: linear-gradient(160deg, var(--renk-koyu) 0%, var(--renk-lacivert) 100%);
    color: white;
}

.teklif-kutu {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
}

.teklif-kutu h2 {
    color: white;
}

.teklif-aciklama {
    color: rgba(255, 255, 255, 0.75);
}

.teklif-alan .form-control,
.teklif-alan .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 8px;
    font-family: var(--font-metin);
}

.teklif-alan .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.teklif-alan .form-control:focus,
.teklif-alan .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--renk-altin);
    color: white;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.teklif-alan .form-select option {
    color: #333;
}

.sayfa-baslik-alan {
    background: linear-gradient(135deg, var(--renk-koyu), var(--renk-lacivert));
    color: white;
    padding: 5rem 0 3.5rem;
    text-align: center;
    margin-top: calc(var(--navbar-yukseklik) * -1);
    padding-top: calc(5rem + var(--navbar-yukseklik));
}

.sayfa-baslik-alan h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: white;
    margin-bottom: 0.5rem;
}

.sayfa-baslik-alan p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.sanatci-detay-profil {
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    box-shadow: var(--golge);
}

.sanatci-sosyal .btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.galeri-resim {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--gecis);
}

.galeri-resim:hover {
    transform: scale(1.02);
    box-shadow: var(--golge);
}

.galeri-resim img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.eser-kart {
    background: var(--renk-krem);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--renk-gri-acik);
}

.eser-kart iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.eser-kart-baslik {
    padding: 1rem 1.25rem;
    background: white;
    font-weight: 600;
    font-family: var(--font-baslik);
}

.iletisim-kart {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid var(--renk-gri-acik);
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.06);
    height: 100%;
    transition: var(--gecis);
}

.iletisim-kart:hover {
    box-shadow: var(--golge);
}

.iletisim-kart i {
    font-size: 2rem;
    color: var(--renk-altin);
    margin-bottom: 1rem;
}

.harita-alan {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--golge);
    border: 1px solid var(--renk-gri-acik);
}

.site-footer {
    background: var(--renk-koyu);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-baslik {
    color: var(--renk-altin-acik);
    font-family: var(--font-baslik);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-metin {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-menu li {
    margin-bottom: 0.55rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--gecis);
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--renk-altin-acik);
    padding-left: 4px;
}

.footer-iletisim li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-iletisim i {
    color: var(--renk-altin);
    margin-top: 0.2rem;
}

.sosyal-linkler a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    margin-right: 0.5rem;
    transition: var(--gecis);
    text-decoration: none;
}

.sosyal-linkler a:hover {
    background: var(--renk-altin);
    color: var(--renk-koyu);
    border-color: var(--renk-altin);
}

.footer-ayrac {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 2rem 0 1.5rem;
}

.footer-alt {
    font-size: 0.88rem;
    opacity: 0.65;
}

.nav-tabs {
    border-bottom: 2px solid var(--renk-gri-acik);
}

.nav-tabs .nav-link {
    color: var(--renk-gri);
    font-family: var(--font-baslik);
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 0;
}

.nav-tabs .nav-link.active {
    color: var(--renk-altin);
    border-bottom: 3px solid var(--renk-altin);
    background: transparent;
}

.kurumsal-icerik {
    background: white;
    padding: 2.5rem;
    border-radius: 14px;
    border: 1px solid var(--renk-gri-acik);
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.05);
    margin-bottom: 2rem;
}

.kurumsal-icerik h3 {
    color: var(--renk-koyu);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--renk-altin);
    display: inline-block;
    font-size: 1.25rem;
}

.form-control,
.form-select {
    font-family: var(--font-metin);
    border-radius: 8px;
    border-color: var(--renk-gri-acik);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--renk-altin);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

@media (max-width: 991px) {
    .hero-slider {
        width: 100%;
        max-width: 100%;
        position: relative;
        left: auto;
        transform: none;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }

    .hero-slider .carousel {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hero-slider .carousel-inner {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible;
    }

    .hero-slider .carousel-item {
        width: 100%;
        max-width: 100%;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible;
        display: none;
        flex-direction: column;
        float: none;
        margin-right: 0;
    }

    .hero-slider .carousel-fade .carousel-item {
        position: relative;
        opacity: 0;
    }

    .hero-slider .carousel-fade .carousel-item.active {
        opacity: 1;
    }

    .hero-slider .carousel-item.active,
    .hero-slider .carousel-item-next,
    .hero-slider .carousel-item-prev {
        display: flex;
    }

    .hero-slide {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        order: 1;
        margin: 0;
        padding: 0;
        overflow: visible;
        background: var(--renk-koyu);
    }

    .hero-slide-gorsel {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto !important;
        max-height: none;
        object-fit: unset;
        object-position: center top;
        transform: none;
        animation: none;
        margin: 0;
        padding: 0;
        display: block;
        vertical-align: top;
    }

    .hero-slide-icerik {
        position: relative;
        inset: auto;
        order: 2;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 1rem 0.85rem 1.1rem;
        background: var(--renk-koyu);
        align-items: stretch;
        justify-content: flex-start;
        box-sizing: border-box;
        z-index: 2;
    }

    .hero-slide-icerik.container {
        max-width: 100%;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .hero-slide-icerik .row {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .hero-slide-icerik [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .hero-sehir-etiket {
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
        margin-bottom: 0.5rem;
    }

    .hero-baslik {
        font-size: 1.35rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .hero-alt-baslik {
        font-size: 0.88rem;
        margin-bottom: 0.75rem;
        line-height: 1.45;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-butonlar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
        width: 100%;
        justify-content: stretch;
    }

    .hero-butonlar .btn {
        width: 100%;
        margin: 0;
        padding: 0.55rem 0.4rem;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        border-radius: 8px;
    }

    .hero-butonlar .btn:first-child {
        grid-column: 1 / -1;
    }

    /* 2 buton: yan yana eşit */
    .hero-butonlar .btn:first-child:nth-last-child(2),
    .hero-butonlar .btn:first-child:nth-last-child(2) ~ .btn {
        grid-column: auto;
    }

    /* 3 buton: ilki tam genişlik, alttakiler yan yana */
    .hero-butonlar .btn:first-child:nth-last-child(3) {
        grid-column: 1 / -1;
    }

    .hero-butonlar .btn-lg {
        padding: 0.55rem 0.4rem;
        font-size: 0.8rem;
    }

    .hero-indicators {
        bottom: 0.5rem;
        z-index: 5;
    }

    .hero-control {
        top: clamp(70px, 24vw, 200px);
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
    }

    .ozet-bant {
        margin-top: 0;
    }

    .site-logo {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .hero-slide-icerik {
        text-align: center;
    }

    .hero-alt-baslik {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-butonlar {
        justify-content: center;
    }

    .sanatci-kart-resim {
        height: 240px;
    }

    .bolum-alan {
        padding: 3.5rem 0;
    }
}

/* Hizmetler */
.hizmetler-on-sayfa {
    background: var(--renk-krem);
}

.hizmet-kart {
    background: var(--renk-beyaz);
    border-radius: 14px;
    border: 1px solid var(--renk-gri-acik);
    overflow: hidden;
    height: 100%;
    transition: var(--gecis);
    display: flex;
    flex-direction: column;
}

.hizmet-kart:hover {
    transform: translateY(-6px);
    box-shadow: var(--golge);
    border-color: transparent;
}

.hizmet-kart-ust {
    position: relative;
    background: var(--renk-koyu);
    min-height: 200px;
    overflow: hidden;
    padding: 0;
}

.hizmet-kart-ust .kapak-resim-alan {
    position: absolute;
    inset: 0;
}

.hizmet-kart-ust .kapak-resim-alan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-kart-ust .kapak-resim-yok {
    position: absolute;
    inset: 0;
    min-height: 200px;
}

.hizmet-kart-resim {
    position: absolute;
    inset: 0;
}

.hizmet-kart-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kapak-resim-alan {
    width: 100%;
    height: 100%;
}

.kapak-resim-alan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kapak-resim-yok {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8ecf3 0%, #d4dae5 100%);
    color: #6b7a90;
    text-align: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.kapak-resim-yok span {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 1rem;
    line-height: 1.4;
}

.kapak-resim-profil .kapak-resim-yok,
.kapak-resim-profil img {
    border-radius: 14px;
}

.kapak-resim-detay {
    max-width: 720px;
    margin: 0 auto;
}

.kapak-resim-detay .kapak-resim-yok,
.kapak-resim-detay img {
    border-radius: 14px;
    min-height: 240px;
}

.hizmet-detay-kapak {
    max-width: 280px;
    margin: 0 auto;
}

.hizmet-ikon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    background: rgba(184, 134, 11, 0.2);
    border: 2px solid var(--renk-altin);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--renk-altin-acik);
}

.hizmet-kart-icerik {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hizmet-kart-icerik h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.hizmet-kart-icerik p {
    color: var(--renk-gri);
    font-size: 0.92rem;
    flex: 1;
    margin-bottom: 1rem;
}

.hizmet-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.hizmet-breadcrumb .breadcrumb-item.active {
    color: var(--renk-altin-acik);
}

.hizmet-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.hizmet-baslik-ikon {
    width: 72px;
    height: 72px;
    background: rgba(184, 134, 11, 0.2);
    border: 2px solid var(--renk-altin);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--renk-altin-acik);
}

.hizmet-detay-resim img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: var(--golge);
}

.hizmet-detay-icerik {
    line-height: 1.9;
    font-size: 1.05rem;
}

.hizmet-cta-kutu {
    background: var(--renk-krem);
    border: 1px solid var(--renk-gri-acik);
    border-left: 4px solid var(--renk-altin);
    border-radius: 12px;
    padding: 1.5rem 2rem;
}

.hizmet-yan-panel {
    background: white;
    border: 1px solid var(--renk-gri-acik);
    border-radius: 14px;
    padding: 1.75rem;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.06);
}

.hizmet-yan-panel h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--renk-koyu);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--renk-altin-soft);
}

.hizmet-yan-liste li {
    margin-bottom: 0.65rem;
}

.hizmet-yan-liste a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--renk-gri);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--gecis);
    padding: 0.35rem 0;
}

.hizmet-yan-liste a:hover {
    color: var(--renk-altin);
    padding-left: 4px;
}

.hizmet-yan-liste a i {
    color: var(--renk-altin);
    font-size: 1rem;
}

/* Üst Bar */
.ust-bar {
    background: linear-gradient(90deg, #061018, var(--renk-koyu));
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.ust-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--gecis);
}

.ust-bar a:hover {
    color: var(--renk-altin-acik);
}

.whatsapp-bar-link {
    background: #25D366;
    color: white !important;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.whatsapp-bar-link:hover {
    background: #1fb855;
    color: white !important;
    transform: translateY(-1px);
}

/* Mega Menü */
.hizmet-mega-menu {
    min-width: 580px;
    max-width: 680px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    margin-top: 0.75rem !important;
}

.mega-menu-icerik {
    background: white;
    padding: 0;
}

.mega-menu-baslik {
    background: linear-gradient(135deg, var(--renk-koyu), var(--renk-lacivert));
    padding: 0.85rem 1.25rem;
}

.mega-tum-link {
    color: var(--renk-altin-acik);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-tum-link:hover {
    color: white;
}

.mega-kategori-blok {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--renk-gri-acik);
    min-height: 100%;
}

.mega-kategori-blok:nth-child(odd) {
    border-right: 1px solid var(--renk-gri-acik);
}

.mega-kategori-baslik {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-baslik);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--renk-koyu);
    text-decoration: none;
    margin-bottom: 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--renk-altin-soft);
}

.mega-kategori-baslik:hover {
    color: var(--renk-altin);
}

.mega-kategori-baslik i {
    color: var(--renk-altin);
}

.mega-hizmet-liste li a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0;
    color: var(--renk-gri);
    text-decoration: none;
    font-size: 0.84rem;
    transition: var(--gecis);
}

.mega-hizmet-liste li a:hover {
    color: var(--renk-altin);
    padding-left: 4px;
}

.mega-hizmet-liste li a i {
    font-size: 0.7rem;
    color: var(--renk-altin);
}

/* WhatsApp Float (masaüstü) */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: var(--gecis);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1fb855;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* Mobil Hemen Ara + WhatsApp çubuğu */
.mobil-destek-cubuk {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    gap: 0;
    box-shadow: 0 -4px 24px rgba(11, 20, 38, 0.18);
}

.mobil-destek-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 0.75rem;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    color: white;
    transition: var(--gecis);
    border: none;
}

.mobil-destek-btn i {
    font-size: 1.2rem;
}

.mobil-ara-btn {
    background: linear-gradient(135deg, var(--renk-altin), #c9941a);
    color: var(--renk-koyu);
}

.mobil-ara-btn:hover {
    background: linear-gradient(135deg, #d4a82a, var(--renk-altin));
    color: var(--renk-koyu);
}

.mobil-whatsapp-btn {
    background: #25D366;
    color: white;
}

.mobil-whatsapp-btn:hover {
    background: #1fb855;
    color: white;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 58px;
    }
}

.footer-sehir-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(184, 134, 11, 0.15);
    color: var(--renk-altin-acik);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.sosyal-linkler .whatsapp-sosyal:hover {
    background: #25D366;
    border-color: #25D366;
}

/* Hizmetler Sayfa v2 */
.hizmetler-sayfa {
    background: linear-gradient(180deg, var(--renk-krem) 0%, white 100%);
}

.hizmet-kategori-filtre {
    position: sticky;
    top: 120px;
    z-index: 10;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-radius: 12px;
}

.kategori-filtre-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    border: 1px solid var(--renk-gri-acik);
    background: white;
    color: var(--renk-gri);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--gecis);
}

.kategori-filtre-btn:hover,
.kategori-filtre-btn.active {
    background: var(--renk-koyu);
    color: white;
    border-color: var(--renk-koyu);
}

.hizmet-kategori-bolum {
    margin-bottom: 4rem;
    scroll-margin-top: 140px;
}

.kategori-bolum-baslik {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--renk-gri-acik);
}

.kategori-bolum-ikon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--renk-altin), var(--renk-altin-acik));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--renk-koyu);
    flex-shrink: 0;
}

.kategori-bolum-baslik h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.kategori-bolum-baslik p {
    color: var(--renk-gri);
    margin: 0;
    font-size: 0.95rem;
}

.hizmet-kart-v2 {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(11, 20, 38, 0.06);
}

.hizmet-kart-v2:hover {
    box-shadow: 0 16px 48px rgba(11, 20, 38, 0.14);
}

.hizmet-kategori-etiket {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(184, 134, 11, 0.9);
    color: var(--renk-koyu);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hizmet-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--renk-altin);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--gecis);
}

.seo-hizmet-link:hover {
    color: var(--renk-altin);
    border-color: var(--renk-altin);
    padding-left: 1.25rem;
}

/* SEO FAQ */
.seo-faq-alan {
    background: var(--renk-krem);
}

.seo-accordion .accordion-item {
    border: 1px solid var(--renk-gri-acik);
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.seo-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--renk-koyu);
    background: white;
    box-shadow: none;
}

.seo-accordion .accordion-button:not(.collapsed) {
    background: var(--renk-altin-soft);
    color: var(--renk-koyu);
}

.seo-accordion .accordion-body {
    color: var(--renk-gri);
    line-height: 1.7;
}

.seo-metin-blok p {
    line-height: 1.8;
    color: var(--renk-gri);
}

.bolge-seo-baslik {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--renk-altin-soft);
}

.sehir-seo-kart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    background: white;
    border: 1px solid var(--renk-gri-acik);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--renk-koyu);
}

.sehir-seo-kart i {
    color: var(--renk-altin);
    flex-shrink: 0;
}

.seo-hizmet-link {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--renk-gri-acik);
    border-radius: 10px;
    color: var(--renk-koyu);
    text-decoration: none;
    font-weight: 500;
    transition: var(--gecis);
}

/* İletişim v2 */
.iletisim-kart-v2 {
    background: white;
    border: 1px solid var(--renk-gri-acik);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: var(--gecis);
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.04);
}

.iletisim-kart-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge);
}

.iletisim-kart-v2.whatsapp-kart {
    border-color: rgba(37, 211, 102, 0.3);
    background: linear-gradient(180deg, #f0fdf4, white);
}

.iletisim-kart-ikon {
    width: 56px;
    height: 56px;
    background: var(--renk-altin-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--renk-altin);
}

.iletisim-kart-ikon.whatsapp-ikon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.iletisim-kart-v2 h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.iletisim-kart-v2 a {
    color: var(--renk-koyu);
    text-decoration: none;
    font-weight: 600;
}

.iletisim-form-kutu {
    background: white;
    border: 1px solid var(--renk-gri-acik);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.05);
}

.bg-krem {
    background: var(--renk-krem);
}

.sayfa-baslik-hizmet {
    background: linear-gradient(135deg, #061018 0%, var(--renk-lacivert) 50%, #1a3a5c 100%);
}

/* Medya Galerisi */
.medya-sekmeler .nav-link {
    color: var(--renk-koyu);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin: 0 0.25rem;
    border: 1px solid var(--renk-gri-acik);
    background: white;
}

.medya-sekmeler .nav-link.active {
    background: var(--renk-altin);
    border-color: var(--renk-altin);
    color: var(--renk-koyu);
}

.medya-foto-kart {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--renk-koyu);
    cursor: pointer;
    transition: var(--gecis);
}

.medya-foto-kart:hover {
    transform: translateY(-4px);
    box-shadow: var(--golge);
}

.medya-foto-kapak,
.medya-foto-kapak img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.medya-foto-buyut {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 20, 38, 0.45);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: var(--gecis);
}

.medya-foto-kart:hover .medya-foto-buyut {
    opacity: 1;
}

.medya-foto-baslik {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(transparent, rgba(11, 20, 38, 0.9));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: left;
}

.medya-video-kart {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--renk-gri-acik);
    box-shadow: 0 4px 20px rgba(11, 20, 38, 0.06);
    transition: var(--gecis);
    height: 100%;
}

.medya-video-kart:hover {
    box-shadow: var(--golge);
    transform: translateY(-4px);
}

.medya-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.medya-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.medya-video-baslik {
    padding: 1rem 1.15rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--renk-koyu);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.medya-modal-icerik {
    background: #0b1426;
    border: none;
}

.medya-modal-icerik .modal-title {
    color: white;
}

.medya-modal-icerik .btn-close {
    filter: invert(1);
}

@media (max-width: 991px) {
    .hizmet-mega-menu {
        min-width: 100%;
    }

    .mega-kategori-blok:nth-child(odd) {
        border-right: none;
    }

    .hizmet-kategori-filtre {
        position: static;
    }
}
