/* style.css - Tüm stiller */

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

body {
    font-family: 'Inter', sans-serif;
    background: #fefefe;
    color: #1e2a3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 80px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e466e, #0f2c44);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

#menu-bar {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 28px;
    height: 2px;
    background: #1e466e;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-list li a {
    text-decoration: none;
    font-weight: 500;
    color: #1e2a3e;
    transition: 0.2s;
    font-size: 1rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.nav-list li a:hover {
    color: #16a085;
    border-bottom-color: #16a085;
}

.section {
    padding: 80px 0;
}

.section:first-of-type {
    padding-top: 120px;
}

.bg-light {
    background: #f8fafc;
}

.bg-dark {
    background: #0f2c44;
    color: white;
}

.bg-dark h2, .bg-dark .text-center p {
    color: white;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
}
h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #16a085;
    margin: 16px auto 0;
    border-radius: 4px;
}

.hero {
    background: linear-gradient(135deg, #eef2f7 0%, #ffffff 100%);
    padding: 100px 0 80px;
    margin-top: 70px;
}
.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e466e, #16a085);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: #1e466e;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}
.btn-primary i {
    font-size: 1rem;
}
.btn-primary:hover {
    background: #0f2c44;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btn-wa {
    background: #25D366;
}
.btn-wa:hover {
    background: #1da851;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.card {
    background: white;
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    border: 1px solid #eef2f7;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1e466e;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card h3 i {
    color: #16a085;
    font-size: 1.5rem;
}
.card p {
    color: #334155;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    margin: 0 auto;
}
.price-table th {
    background: #1e466e;
    color: white;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1rem;
    text-align: left !important;
}
.price-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}
.price-table tr:last-child td {
    border-bottom: none;
}
.price-table tr:hover td {
    background-color: #f8fafc;
}
.sub-item td:first-child {
    padding-left: 40px;
    font-size: 0.9rem;
    color: #4a627a;
}
.spacer td {
    background: #f1f5f9;
    height: 8px;
    padding: 0;
}

.contact-form {
    background: white;
    max-width: 900px !important; /* 650px'den 900px'e çıkarıldı */
    margin: 30px auto 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 32px;
    border-radius: 32px;
    color: #1e2a3e;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    font-family: inherit;
    transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22,160,133,0.2);
}
button[type="submit"] {
    background: #16a085;
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}
button[type="submit"]:hover {
    background: #0f6b58;
}

.contact-info-card {
    background: white;
    border-radius: 32px;
    padding: 28px 32px;
    margin-top: 30px;
    max-width: 900px !important; /* 650px'den 900px'e çıkarıldı */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #1e2a3e;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.contact-info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e466e;
}
.contact-info-card .info-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 14px 0;
    font-size: 1.05rem;
    flex-wrap: wrap;
}
.contact-info-card .info-line i {
    width: 30px;
    color: #16a085;
    font-size: 1.3rem;
}
.contact-info-card .district-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    background: #f1f9f7;
    padding: 14px;
    border-radius: 48px;
}
.contact-info-card .district-list span {
    background: white;
    padding: 6px 14px;
    border-radius: 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.fixed-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1e466e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.fixed-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.fixed-btn-wa {
    background-color: #25D366;
}
.fixed-btn-tel {
    background-color: #1e466e;
}
@media (max-width: 480px) {
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .fixed-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
}

footer {
    background: #0a1c2c;
    color: #94a3b8;
    text-align: center;
    padding: 28px 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        width: 80%;
        height: calc(100vh - 70px);
        flex-direction: column;
        gap: 20px;
        padding: 40px 32px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.05);
        transition: 0.3s;
        z-index: 999;
    }
    #menu-bar:checked ~ .nav-list {
        left: 0;
    }
    #menu-bar:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menu-bar:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    #menu-bar:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    h2 {
        font-size: 1.8rem;
    }
    .section {
        padding: 60px 0;
    }
}

/* ===== RESMİ BELGELER (Masaüstü) ===== */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.doc-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: block; /* Masaüstünde görünür */
    opacity: 1; /* Masaüstünde tam görünür */
}
.doc-item:hover {
    transform: scale(1.05);
}
.doc-item img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: box-shadow 0.2s;
}
.doc-item img:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.doc-item span {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e466e;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255,255,255,0.15);
}
.lightbox .close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 44px;
    color: white;
    font-weight: 300;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2001;
}
.lightbox .close-btn:hover {
    color: #ccc;
    transform: rotate(90deg);
}

/* ===== LIGHTBOX NAV OKLARI ===== */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 48px;
    font-weight: 300;
    background: rgba(0,0,0,0.3);
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
    z-index: 2001;
}
.lightbox-nav:hover {
    background: rgba(0,0,0,0.7);
}
.lightbox-nav.left {
    left: 20px;
}
.lightbox-nav.right {
    right: 20px;
}

/* ===== MOBİL SLIDER (SADECE MOBİLDE AKTİF) ===== */
@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        position: relative;
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 50px; /* Sağ ve soldan butonlar için boşluk bırak */
    }
    .doc-item {
        display: none !important; /* Tüm görselleri gizle */
        text-align: center;
        padding: 0 10px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .doc-item.active {
        display: block !important; /* Sadece aktif olanı göster */
        opacity: 1;
    }
    .doc-item img {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
    }
    .doc-item span {
        font-size: 0.9rem;
        margin-top: 10px;
        display: block;
    }
    /* Ok butonları - grid'in içinde absolute konum */
    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(30, 70, 110, 0.85);
        color: white;
        border: none;
        font-size: 32px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, transform 0.2s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        backdrop-filter: blur(4px);
    }
    .slider-btn:hover {
        background: rgba(15, 44, 68, 0.95);
    }
    .slider-btn:active {
        transform: translateY(-50%) scale(0.92);
    }
    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
}

/* Masaüstünde butonları gizle */
@media (min-width: 769px) {
    .slider-btn {
        display: none !important;
    }
    .documents-grid {
        padding: 0; /* Mobildeki padding'i kaldır */
    }
}
/* H2 başlıklarındaki linkler - ağır ve kurumsal renk */
h2 a {
    color: #1e466e; /* Koyu lacivert, ana renklerinizle uyumlu */
    text-decoration: none; /* Alt çizgiyi kaldır */
    transition: color 0.2s ease;
}

h2 a:hover {
    color: #0f2c44; /* Daha koyu ton, hover'da koyulaşsın */
    text-decoration: underline; /* İsterseniz hover'da altı çizilsin */
}

/* Veya daha yumuşak bir geçiş için hover'da teal rengi de kullanabilirsiniz: */
/* h2 a:hover { color: #16a085; } */

.ortala {
    text-align: center;
    margin: 20px 0;
}

/* ===== REFERANSLAR ===== */
.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ref-item {
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1; /* Kare yapar */
}

.ref-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.ref-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Logolar orantılı olarak sığar */
    max-width: 120px;
    max-height: 120px;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.ref-item:hover img {
    filter: grayscale(0%);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .ref-item {
        padding: 12px;
    }
    .ref-item img {
        max-width: 80px;
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        gap: 12px;
    }
    .ref-item img {
        max-width: 60px;
        max-height: 60px;
    }
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e466e, #0f2c44);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}
.logo-divider {
    width: 40px;
    height: 2px;
    background: #16a085;
    margin: 4px 0;
    border-radius: 2px;
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: #4a627a;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .logo-group {
        align-items: center;
        text-align: center;
    }
    .logo-divider {
        margin: 4px auto;
    }
}

/* ===== SERVİS BÖLGELERİ ===== */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.area-btn {
    background: white;
    color: #1e466e;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: default;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    text-align: center;
}

.area-btn:hover {
    background: #1e466e;
    color: white;
    border-color: #1e466e;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(30, 70, 110, 0.12);
}

/* Mobil uyum */
@media (max-width: 768px) {
    .service-areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .area-btn {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .area-btn {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
}

/* Servis Ücret Tablosu */
.service-fee-table tbody tr:hover {
    background: #f8fafc;
}
.service-fee-table td {
    font-size: 0.95rem;
    color: #1e2a3e;
}

@media (max-width: 600px) {
    .service-fee-table th,
    .service-fee-table td {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }
    .service-fee-table td:last-child {
        text-align: right;
        font-weight: 600;
    }
}

/* ===== BUHARLI KOLTUK YIKAMA SÜRECİ ===== */
.surec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.surec-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px 22px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #eef2f7;
    transition: transform 0.2s, box-shadow 0.2s;
}
.surec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.surec-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #1e466e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.surec-content h4 {
    font-size: 1rem;
    color: #1e466e;
    margin-bottom: 4px;
}
.surec-content p {
    font-size: 0.92rem;
    color: #4a627a;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .surec-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .surec-item {
        padding: 16px 18px;
    }
    .surec-number {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
}

a {
    text-decoration: none !important;
    transition: color 0.2s;
}
a:hover {
    color: #1e466e !important;
}