:root {
    /* === ANA RENKLER === */
    --color-black: #0b0b0b; /* Arka plan ana siyah */
    --color-dark: #141414; /* Koyu gri geçişler */

    --color-gold: #d99a00; /* Altın sarısı (Mustafa yazısı) */
    --color-gold-dark: #d99a00; /* Koyu altın */
    --color-gold-light: #ffd56a; /* Açık altın vurgular */

    --color-orange: #ff8a00; /* Turuncu ana vurgu */
    --color-orange-dark: #e06f00; /* Koyu turuncu */
    --color-orange-light: #ffb347; /* Açık turuncu */
    /* === YARDIMCI RENKLER === */
    --color-white: #ffffff;
    --color-cream: #f7f2e8; /* Tatlı / pilav / çorba tonu */
    --color-gray: #bdbdbd;
    --color-gray-dark: #6e6e6e;
    /* === METİN RENKLERİ === */
    --text-primary: var(--color-gold);
    --text-secondary: var(--color-orange);
    --text-light: #f1f1f1;
    --text-muted: #9e9e9e;
    /* === ARKA PLANLAR === */
    --bg-main: var(--color-black);
    --bg-section: #101010;
    --bg-card: #171717;
    --bg-highlight: linear-gradient( 90deg, var(--color-orange), var(--color-gold) );
    /* === BUTONLAR === */
    --btn-primary-bg: linear-gradient( 135deg, var(--color-orange), var(--color-gold) );
    --btn-primary-text: #111;
    --btn-secondary-bg: transparent;
    --btn-secondary-border: var(--color-gold);
    --btn-secondary-text: var(--color-gold);
    /* === BORDER & GÖLGE === */
    --border-gold: 1px solid var(--color-gold);
    --border-orange: 1px solid var(--color-orange);
    --shadow-soft: 0 8px 24px rgba(0,0,0,0.45);
    --shadow-gold: 0 4px 20px rgba(245,179,1,0.35);
}

.slider-area{
    height:97vh;
}


.slider-bg {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .slider-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55); /* perde koyuluğu */
        z-index: 1;
    }

    /* İçerik perdenin üstünde kalsın */
    .slider-bg > .container {
        position: relative;
        z-index: 2;
    }


.label_black_fs18 {
    color: black !important;
    margin-top: 5px !important;
    font-size: 18px !important;
}


.services-08-item.service-bg {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Siyah overlay */
.services-08-item .service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 1;
}

/* İçerik */
.services-08-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: #fff;
}

    .services-08-content h3 a {
        color: #f5b301;
        font-size: 20px;
        font-weight: 600;
    }

    .services-08-content p {
        font-size: 14px;
        color: #f1f1f1;
        margin: 10px 0;
    }

    .services-08-content a {
        color: #ffb347;
        font-weight: 500;
    }

/* Hover efekti (premium dokunuş) */
.services-08-item:hover {
    transform: translateY(-6px);
    transition: all .3s ease;
}

    .services-08-item:hover .service-overlay {
        background: rgba(0,0,0,0.65);
    }


.index_blog_img{
    max-height:300px !important;
    object-fit:cover;
}

.masonry-gallery-huge .grid {
    display: flex;
    flex-wrap: wrap;
}

.masonry-gallery-huge .grid-item {
    width: 33.333%;
    padding: 8px;

}

    .masonry-gallery-huge .grid-item img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        max-height: 400px;
        object-fit: cover !important;
    }
@media (max-width: 991px) {
    .masonry-gallery-huge .grid-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .masonry-gallery-huge .grid-item {
        width: 100%;
    }
}


.breadcrumb-area {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    /* Siyah overlay */
    .breadcrumb-area::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6); /* koyuluk ayarı */
        z-index: 1;
    }

    /* İçerik overlay üstünde kalsın */
    .breadcrumb-area .container {
        position: relative;
        z-index: 2;
    }

.header-top{
    z-index:5;
}



.blog_img{
    max-height:400px !important;
    object-fit:cover;
}





.whatsapp-fixed-container {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.whatsapp-link {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .whatsapp-link i {
        font-size: 25px;
        z-index: 2;
    }

    /* Dalga Animasyonu */
    .whatsapp-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(37, 211, 102, 0.5);
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .whatsapp-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .whatsapp-link .wave:nth-child(3) {
            animation-delay: 1s;
        }

/* Dalga Animasyonu */
@keyframes wave-animation {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}



.phone-fixed-container {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
}

/* WhatsApp Butonu */
.phone-link {
    display: inline-block;
    background-color: #d99a00;
    color: white;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* WhatsApp İkonu */
    .phone-link i {
        font-size: 18px;
        z-index: 2;
    }

    .phone-link .wave {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #d99a00;
        border-radius: 50%;
        animation: wave-animation 1.5s infinite;
    }

        /* Dalga Efektinin Zamanlaması */
        .phone-link .wave:nth-child(2) {
            animation-delay: 0.5s;
        }

        .phone-link .wave:nth-child(3) {
            animation-delay: 1s;
        }



.area-box {
    display: block;
    padding: 14px;
    background: #f7f7f7;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    color: #222;
    transition: .3s;
}

    .area-box:hover {
        background: #d71920;
        color: #fff;
        transform: translateY(-3px);
    }


.support-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}

    .support-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

    .support-card h3 {
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .support-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .support-card .note {
        margin-top: 15px;
        font-size: 14px;
        color: #666;
    }

.support-icon {
    font-size: 42px;
}

.support-card.highlight {
    border: 2px solid #f5a623;
}
