/* --- GENEL AYARLAR & DEĞİŞKENLER --- */
:root {
    --primary-color: #0056b3;     /* Profesyonel Güven Mavisı */
    --secondary-color: #00a8cc;   /* Temizlik & Su Rengi */
    --dark-color: #1a2530;        /* Koyu Gri/Lacivert */
    --light-color: #f8f9fa;       /* Açık Gri Arka Plan */
    --white: #ffffff;
    --text-color: #4a5568;
    --accent-color: #25d366;      /* WhatsApp Yeşili */
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- BUTONLAR & BİLEŞENLER --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #003d80;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-call {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-call:hover {
    background-color: #0088a8;
}

.btn-block {
    width: 100%;
}

/* --- RESİM BOŞLUKLARI DÜZENİ --- */
.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: #e2e8f0;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.img-note {
    background-color: #edf2f7;
    color: #718096;
    padding: 8px 12px;
    font-size: 0.8rem;
    text-align: center;
    border: 1px dashed #cbd5e0;
    margin-top: 5px;
    border-radius: 6px;
}

/* --- HEADER / NAVBAR --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 1px;
}

.logo span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 2px;
}

.logo .sub-logo {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge {
    background-color: rgba(0, 168, 204, 0.15);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin: 15px 0;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* --- FEATURES --- */
.features {
    padding: 60px 0;
    margin-top: -40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
}

/* --- HAKKIMIZDA --- */
.about {
    padding: 80px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 10px 0 20px 0;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--secondary-color);
}

/* --- HİZMETLER --- */
.services {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    background-color: #cbd5e0;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* --- SÜREÇ --- */
.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step h4 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

/* --- İLETİŞİM --- */
.contact {
    padding: 80px 0;
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    background: #e6f2ff;
    padding: 12px;
    border-radius: 50%;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px 0;
    text-align: center;
}

.footer-logo h2 {
    color: var(--white);
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* --- WHATSAPP BUTONU --- */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--accent-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    .hero-content,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}




/* --- DİĞER HİZMETLER & GALERİ BÖLÜMÜ --- */
.other-services {
    padding: 80px 0;
    background-color: var(--white);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.other-service-card {
    background-color: var(--light-color);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    text-align: center;
    transition: var(--transition);
}

.other-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.other-service-card .icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px auto;
}

.other-service-card h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.other-service-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* GALERİ TASARIMI */
.gallery-wrapper {
    margin-top: 40px;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 16px;
    border: 1px dashed #cbd5e0;
}

.gallery-title {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-title h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.gallery-title p {
    font-size: 0.9rem;
    color: #718096;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item .img-placeholder {
    height: 180px;
}

@media (max-width: 768px) {
    .gallery-wrapper {
        padding: 20px 15px;
    }
    
    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
}



/* Logo ve Metni Yan Yana Hizalama */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Logo ile yazı arasındaki boşluk */
}

/* Logo Resim Boyutu ve Düzenlemesi */
.logo-img {
    height: 55px; /* İsteğe göre 60px veya 50px yapabilirsiniz */
    width: auto;
    object-fit: contain;
}

/* Logo Yanındaki Metin Grubu */
.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 1.5px;
    display: block;
}

.logo-text .sub-logo {
    font-size: 0.7rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* --- HERO YUVARLAK İKONLAR --- */
.hero-social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px; /* Butonlarla ikonlar arasındaki mesafe */
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

/* Özel Marka/Hizmet Renkleri */
.social-icon.whatsapp {
    background-color: #25d366;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.phone {
    background-color: var(--primary-color);
}

.social-icon.email {
    background-color: #ea4335;
}

/* Facebook İkon Rengi */
.social-icon.facebook {
    background-color: #1877f2;
}

/* İletişim Alanı E-Posta Linki Düzenlemesi */
.info-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}


/* --- İLETİŞİM DÜZELTME & MERKEZLEME --- */
.contact {
    padding: 70px 0;
    background-color: #f8fafc;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    color: #1a2530;
    margin-bottom: 10px;
}

.contact-info > p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background-color: #f1f5f9;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: #e6f2ff;
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.3rem;
    color: #0056b3;
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: #1a2530;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.info-item p, 
.info-item a {
    margin: 0;
    color: #4a5568;
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    color: #0056b3;
}

/* ===================================================
   GÖRSEL SIĞDIRMA VE BOYUTLANDIRMA DÜZELTMELERİ
   =================================================== */

/* 1. Tüm Genel Kutu Görselleri (Sünmeyi Önler ve Kutuya Tam Sığdırır) */
.service-img img,
.gallery-item img,
.hero-image-box img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli bozmadan kutuyu tamamen doldurur */
    object-position: center; /* Görselin ortasını odaklar */
    display: block;
}

/* 2. Hizmet Kartlarındaki Görsel Kutusunun Sabit Yüksekliği */
.service-img {
    width: 100%;
    height: 220px; /* Kart üstündeki resim yüksekliği */
    overflow: hidden;
    position: relative;
}

/* 3. Galeri Fotoğraflarının Alan Boyutu */
.gallery-item {
    width: 100%;
    height: 200px; /* Galeri fotoğraflarının standart yüksekliği */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* NOT: Eğer fotoğrafların HİÇ KIRPILMADAN, orijinal oranlarıyla 
   tamamının görünmesini istiyorsanız 'cover' yerine 'contain' kullanabilirsiniz. 
   Örnek: */
/*
.gallery-item img {
    object-fit: contain;
    background-color: #f0f0f0; /* Boş kalan kenarlar için açık gri arka plan */




/* --- GALERİİ 5 KOLONLU KESİN DÜZEN (Masaüstü) --- */
.image-gallery {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important; /* Kesin olarak 5 eşit kolon */
    gap: 15px !important;
}

/* Tablet ve Masaüstü Ekranlarda Görsel Yüksekliği */
.gallery-item {
    height: 170px !important; /* 5'li düzende fotoğrafların estetik durması için yükseklik */
}

/* MOBİL VE TABLET UYUMLULUĞU (Ekran daraldığında fotoğrafların sıkışmaması için) */
@media (max-width: 1024px) {
    .image-gallery {
        grid-template-columns: repeat(3, 1fr) !important; /* Tabletlerde 3 kolon */
    }
}

@media (max-width: 600px) {
    .image-gallery {
        grid-template-columns: repeat(2, 1fr) !important; /* Mobilde 2 kolon */
    }
}



/* TikTok İkon Rengi */
.social-icon.tiktok {
    background-color: #000000;
}