﻿:root {
    --primary-color: #fdb900;
    --primary-color-contrast: #000;
    --title-page-background-color: #222222;
    --title-page-text-color: #fefefe;
    --secondary-color: #412AAB;
    --accent-color: #fdb900;
    --accent: #fdb900;
    --text-color: #202020;
    --header-color: #313131;
    --body-background-color: #f7f7f7;
    --header-top-bg-color: #000;
    --header-top-text-color: #ffffff;
    --header-top-border-color: #000;
    --topbar-background: rgba(0,0,0,.45);
    --topbar-text: #fff;
    --topbar-sticky-bg: #1d1d1d;
    --topbar-sticky-text: #ffffff;
    --topbar-hover-sticky-text: #ffffff;
    --topbar-hover-text: #ffffff;
    --footer-background: #000000;
    --footer-text-color: rgba(255,255,255,.7);
    --copyright-background: #000000;
    --copyright-text: #ffffff;
    --shadow: 0 8px 24px rgba(0,0,0,.08);
    --container: 1200px;
    --spacing-1: .25rem;
    --spacing-2: .5rem;
    --spacing-3: .75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --font-sans: ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
    --h1: clamp(28px, 4vw, 40px);
    --h2: clamp(22px, 3vw, 28px);
    --gap: 24px;
    --card-pad: 16px;
    --radius: 14px;
    --brand: var(--primary-color);
    --brand-contrast: var(--primary-color-contrast);
    --icon-color: #fdb900;
}

html, body {
    background: var(--body-background-color);
    color: var(--text-color);
    font: 400 18px/1.8 var(--font-sans);
    height: 100%;
    margin: 0;
}

body {
    min-height: 100svh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.site-icon {
    display: inline-block;
    width: 1em; 
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}


.linkBtn {
    --btn-bg: var(--primary-color);
    --btn-text: #000;
    --btn-border: var(--primary-color);
    
    --btn-hover-bg: #e5a700;
    --btn-hover-text: #000;
    --btn-hover-border: #e5a700;
   
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none !important;
    line-height: 1.5;

    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-border);

    transition: all 0.3s ease;
    cursor: pointer;
}
    .linkBtn:hover {
        background-color: var(--btn-hover-bg);
        color: var(--btn-hover-text);
        border-color: var(--btn-hover-border);
        transform: translateY(-3px); 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .linkBtn:active {
        transform: translateY(0); 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.linkBtn-outline {
    --btn-bg: transparent;
    --btn-text: var(--primary-color);
    --btn-border: var(--primary-color);
    --btn-hover-bg: var(--primary-color);
    --btn-hover-text: #000;
    --btn-hover-border: var(--primary-color);
}

.titleA{
    font-size:28px;
}


.topbar {
    background: #000;
    color: #fff;
    width: 100%;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 16px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: .9;
}

    .topbar a:hover {
        opacity: 1;
    }

.social a {
    font-size: 16px;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone {
    color: #fdb900 !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .phone i {
        color: #fdb900 !important;
    }

.social {
    color: #fd4800 !important;
    font-size: 16px;
    transition: color 0.2s;
}
    .social:hover {
        color: #fdb900 !important;
    }

.contact-page .card {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    justify-content: flex-start; 
}

@media (max-width:600px) {
    .topbar-inner {
        justify-content: space-between;
    }

    .phone {
        font-size: 13px;
    }
}

.main-header {
    background: #151515;
    color: #fff;

}

.nav-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    padding-top:20px;
}


.left-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    display: block;
}

.contact {
    border-left: 1px solid #3a3a3a;
    padding-left: 20px;
    line-height: 1.1;
}

    .contact .label {
        font-size: 14px;
        color: #ccc;
    }

    .contact .phone {
        color: #fdb900;
        font-weight: 800;
        font-size: 20px;
        text-decoration: none;
    }


.main-nav {
    display: flex;
    gap: 32px;
    align-items: flex-end;
}

    .main-nav a {
        color: #fff !important;
        text-decoration: none;
        font-weight: 700;
        white-space: nowrap;
    }

        .main-nav a:hover {
            color: #fdb900 !important;
        }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fdb900;
    font-size: 28px;
    cursor: pointer;
}


@media (max-width: 992px) {
    .nav-wrap {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start; 
        width: 100%;
        background: #151515;
        padding: 10px 0;
        gap: 8px; 
    }

        .main-nav.show {
            display: flex; /* aktif hale gelir */
        }

        .main-nav a {
            width: 100%;
            padding: 6px 20px;
            border-top: 1px solid #2a2a2a;
            color: #fdb900; 
            text-decoration: none;
        }
            .main-nav a:hover {
                background: #222;
            }
}

@media (max-width:768px) {
    .container {
        flex-wrap: wrap;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 18px;
    }
}

main {
    flex: 1 0 auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto
}



.site-footer {
    background: url("../images/footer-bg.webp") repeat center center;
    color: #fff;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding: 0 20px;
  color: #ccc;  
}

.footer-box {
  flex: 1 1 250px;
}

.footer-box h3 {
  color:#fff;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0b400;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box a {
  color: #ccc !important;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

    .footer-box a:hover {
        color: #f0b400 !important;
    }

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top:20px;
  font-size: 14px;
  height:25px;
}


.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.row {
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top:20px;
}

.card {
    border: none;
    background: none; 
    padding: var(--card-pad);
}
    .card h2 {
        margin: 8px 0 6px;
        font-size: 1.1rem;
    }

    .card p {
        margin: 0;
        line-height: 1.5;
        color: #444;
    }


.photo {
    --img-w: 461; 
    --img-h: 476;
    --pad: 20px; 

    --ratio: calc(var(--img-h) / var(--img-w)); 

    width: min(100%, calc(var(--img-w) * 1px + 2 * var(--pad)));
    position: relative;
    padding-top: var(--pad);
    margin-inline: auto;
}

   
    .photo .bg {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: calc((100% - 2 * var(--pad)) * var(--ratio));
        background: var(--accent);
        z-index: 0;
    }

    
    .photo > img {
        display: block;
        width: calc(100% - 2 * var(--pad));
        height: auto;
        aspect-ratio: calc(var(--img-w) / var(--img-h));
        margin: 0 auto;
        transform: translateY(calc(-1 * var(--pad))); 
        position: relative;
        z-index: 1;
        max-width: none !important; 
    }




.features {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 24px;
    padding: 24px 0;
    text-align: center;
}

.feature {
    padding: 24px 16px;
    border-radius: 16px;
    background: transparent;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

    .feature:hover {
        background: #fff;
        border-color: #f59e0b;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .feature h3 {
        margin: 8px 0;
        font-size: 1.15rem;
    }

    .feature p {
        margin: 0;
        color: #555;
        line-height: 1.5;
    }

.icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    color: #f59e0b;
}




@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}



.cta-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all .2s ease;
    font-size: 1rem;
}

.btn-call {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
}

    .btn-call:hover {
        filter: brightness(0.95);
    }

.btn-quote {
    background: #fff;
    color: #f59e0b;
    border-color: #f59e0b;
}

    .btn-quote:hover {
        background: #fff7ec;
    }

@media (max-width:520px) {
    .btn {
        flex: 1 1 100%;
        text-align: center;
    }
}



.breadcrumb {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 16px;

}

    .breadcrumb ol {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

        .breadcrumb ol li {
            display: inline-flex;
            align-items: center;
        }

            .breadcrumb ol li a {
                color: #B8860B;
                text-decoration: none;
                font-weight: 500;
            }

                .breadcrumb ol li a:hover {
                    text-decoration: underline;
                    color: #ff5500;
                }

            .breadcrumb ol li.active {
                font-weight: bold;
                color: #000;
            }

.breadcrumb-sep {
    padding: 0 8px;
    color: #888;
}



.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.services-hero {
    padding: 60px 0;
    background: #f8f8f8;
}

.services-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

    .services-hero-container .text {
        max-width: 750px; 
    }


.services-hero .text h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.services-hero .text p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
}

.services-hero .image img {
    width: 100%;
    border-radius: 8px;
}


.services-grid .grid {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}


.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    max-width: 350px;
    width: 100%;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    will-change: box-shadow, transform;
}

    .service-card:hover {
        transform: translateY(-2px);
        border-color: #fdb90066;
        box-shadow: 0 10px 28px rgba(0,0,0,.08);
    }
   
    .service-card:focus-within {
        outline: 3px solid #fdb900;
        outline-offset: 2px;
    }


.stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-decoration: none; 
}

.service-card h3, .service-card p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.service-card h3 {
    margin-top: 10px;
    color: #B8860B;
    font-size: 20px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.service-thumb {
    margin: 0;
}

    .service-thumb img {
        width: 100%;
        max-width: 350px;
        height: 160px;
        object-fit: cover;
        border-radius: 6px;
    }

.service-card a, .service-card-link {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent;
}



/* Detay sayfası görsel alanı */
.service-image {
    width: 100%;
    aspect-ratio: 1200 / 400; 
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.service-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; 
    display: block;
}


/* ==========================================================================
   ANASAYFA HİZMETLER WIDGET'I (Namespace: .homePageServices)
   ========================================================================== */

.homePageServices {
    margin-top: 70px;
    margin-bottom: 70px;
}

    /* Başlık Alanı */
    .homePageServices .header-area {
        text-align: center;
        margin-bottom: 50px;
    }

        .homePageServices .header-area h2 {
            font-size: 2.2rem;
            color: #222;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .homePageServices .header-area p {
            color: #666;
            max-width: 650px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.6;
        }

    /* Ana Izgara */
    .homePageServices .content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 50px;
        align-items: center;
    }

    /* Sol Taraf: Hizmet Listesi */
    .homePageServices .services-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .homePageServices .service-item {
        border-bottom: 1px solid #eaeaea;
        padding-bottom: 15px;
        transition: background 0.2s;
    }

        .homePageServices .service-item:hover {
            background: #fafafa;
        }

        .homePageServices .service-item h3 {
            margin: 0 0 6px 0;
            font-size: 1.25rem;
        }

            /* Okunabilirlik için koyu renk link */
            .homePageServices .service-item h3 a {
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: color 0.3s ease;
                color: #222 !important;
            }

                .homePageServices .service-item:hover h3 a, .homePageServices .service-item h3 a:hover {
                    color: var(--primary-color) !important;
                }

        .homePageServices .service-item svg {
            width: 18px;
            height: 18px;
            color: var(--primary-color);
        }

        .homePageServices .service-item p {
            margin: 0 0 0 26px;
            color: #555;
            font-size: 0.95rem;
            line-height: 1.5;
        }

    .homePageServices .btn-container {
        margin-top: 10px;
    }

    /* Sağ Taraf: Slider Alanı */
    .homePageServices .slider-column {
        position: relative;
    }

    .homePageServices .slider-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        overflow: hidden;
        background: #fff;
    }

    /* Slayt Görselleri (Geçiş Animasyonlu) */
    .homePageServices .slide-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease-in-out, visibility 0.8s;
        z-index: 1;
    }

        .homePageServices .slide-img.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

    /* Sayaç Tasarımı */
    .homePageServices .slider-counter {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        z-index: 10;
        backdrop-filter: blur(4px);
        letter-spacing: 1px;
    }

    /* Yön Butonları */
    .homePageServices .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
        color: #fff;
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
        padding: 0;
    }

        .homePageServices .slider-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

    .homePageServices .slider-btn-prev {
        left: 15px;
    }

    .homePageServices .slider-btn-next {
        right: 15px;
    }

    /* Güven Rozeti */
    .homePageServices .trust-badge {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background: #fff;
        padding: 15px 25px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 10;
    }

        .homePageServices .trust-badge svg {
            width: 32px;
            height: 32px;
            color: var(--primary-color);
        }

        .homePageServices .trust-badge strong {
            display: block;
            color: #222;
            font-size: 1.1rem;
            line-height: 1.2;
        }

        .homePageServices .trust-badge span {
            color: #666;
            font-size: 0.85rem;
        }


