* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

:root {
    --mavi: #3498db;
    --turuncu: #f59e0b;
    --koyu: #0f172a;
    --gri: #475569;
}

/* --- ODAKLANMA (FOCUS / TIKLAMA) EFEKTLERİNİ SİYAH YAPma (LOGO HARİÇ) --- */
button:focus:not(.logo), 
a:focus:not(.logo):not(.logo-container), 
input:focus, 
textarea:focus, 
select:focus,
button:active:not(.logo),
a:active:not(.logo):not(.logo-container) {
    outline: 2px solid #000000 !important;
    outline-offset: 2px;
}

/* --- ÜST MENÜ (PROFESYONEL TASARIM) --- */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    height: 85px;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mavi) 0%, var(--turuncu) 50%, var(--mavi) 100%);
    background-size: 200% 100%;
    animation: navbarSerit 6s linear infinite;
}

@keyframes navbarSerit {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    height: 100%;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.logo:focus,
.logo:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.logo img {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    margin: 0;
}

.logo-metin-alani {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-baslik-satiri {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f59e0b;
    padding-bottom: 2px;
    white-space: nowrap;
    gap: 6px;
}

.logo-baslik-satiri .barislar {
    font-size: 1.55rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-baslik-satiri .zemin {
    font-size: 1.55rem;
    font-weight: 900;
    color: #d97706;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-slogan {
    font-size: 0.55rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- MENÜ ÖGELERİ (BUTON GÖRÜNÜMÜ VE TIKLAMA HAREKETİ) --- */
.nav-links a {
    margin-left: 0;
    text-decoration: none;
    color: #475569;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 30px;
    position: relative;
    transition: all 0.25s ease;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links a::after {
    display: none !important;
}

.nav-links a:hover {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links a:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* --- MOBİL MENÜ BUTONU (MASAÜSTÜNDE GİZLİ) --- */
.mobile-menu-btn {
    display: none;
}

/* KARŞILAMA EKRANI (HERO) */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.5)), url('gorseller/arka.jpeg') center/cover;
    color: white;
    padding: 0 20px;
    margin-top: 85px;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    color: #ecf0f1;
    line-height: 1.6;
}

.iletisim-butonu {
    background-color: #3498db;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.iletisim-butonu:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    color: white;
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: color 0.3s;
}

.scroll-down:hover {
    color: #3498db;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* HİZMETLER BÖLÜMÜ */
.hizmetler-alani {
    padding: 100px 10%;
    text-align: center;
}

.hizmetler-baslik {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 50px;
    font-weight: 800;
}

.hizmetler-kutusu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

/* --- AMBLEM MAVİSİ TONUNDA HİZMET KARTI --- */
.hizmet-karti {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    padding: 30px 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 350px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    cursor: pointer;
    position: relative;
    border: 1px solid #90cdf4;
    border-top: 4px solid #0f172a;    
    border-bottom: 4px solid #0f172a; 
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

.hizmet-karti:hover,
.hizmet-karti:active {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%);
    border-color: #63b3ed;
    border-top-color: #000000;
    border-bottom-color: #000000;
    box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.16), 0 10px 15px -5px rgba(15, 23, 42, 0.08);
}

.hizmet-karti i {
    font-size: 2.4rem;
    color: #0f172a;
    margin-bottom: 18px;
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.hizmet-karti:hover i {
    transform: scale(1.08);
}

.hizmet-karti h3 {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.hizmet-karti p {
    color: #334155;
    line-height: 1.6;
    font-size: 0.92rem;
    margin-bottom: 10px;
    text-align: center;
}

.hizmet-gorsel {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid #90cdf4;
}

/* FOOTER (ALT BİLGİ) */
footer {
    background-color: #1e293b;
    color: white;
    padding: 70px 6% 35px 6%;
    margin-top: 50px;
}

.footer-icerik {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-sutun {
    flex: 1;
    min-width: 270px;
}

.footer-sutun h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
    color: #ffffff;
}

.iletisim-yatay-kutu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.iletisim-satiri {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: rgba(255,255,255,0.05);
    padding: 12px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
}

.iletisim-satiri i {
    width: 18px;
    font-size: 1rem;
    color: #3498db;
}

.sosyal-medya {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 22px;
}

.sosyal-medya a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.sosyal-medya a:hover {
    transform: translateY(-3px);
}

#link-whatsapp {
    background-color: #22c55e;
}

#link-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

#link-facebook {
    background-color: #3b82f6;
}

.footer-alt {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 35px;
    padding-top: 25px;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* --- YÖNETİM PANELİ VE AKORDEON --- */
.admin-body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #1e293b;
    padding: 40px 20px;
    min-height: 100vh;
}

.admin-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-bottom: 3px solid #3b82f6;
}

.admin-header h1 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f8fafc;
}

.admin-header h1 i {
    color: #3b82f6;
}

.btn-don {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-don:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

.panel-kapsayici {
    max-width: 950px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: none;
    border: 1px solid #e2e8f0;
}

.bolum-baslik {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.bolum-baslik i {
    color: #3b82f6;
}

.form-grup {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #000000;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

textarea {
    resize: vertical;
    height: 80px;
}

/* AKORDEON HİZMET KARTI TASARIMI */
.hizmet-item {
    background: #eff6ff;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
    border-left: 5px solid #2563eb;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.hizmet-baslik-seridi {
    background: #eff6ff;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
    margin: 0;
    border-radius: 0;
}

.hizmet-baslik-seridi:hover {
    background: #dbeafe;
}

.hizmet-baslik-seridi h4 {
    margin: 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
}

.hizmet-baslik-seridi h4 i {
    color: #2563eb;
    font-size: 1.1rem;
}

.kart-butonlar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-arrow {
    transition: transform 0.3s ease;
}

.hizmet-item.kapali .toggle-arrow {
    transform: rotate(0deg);
}

.hizmet-item:not(.kapali) .toggle-arrow {
    transform: rotate(180deg);
}

.hizmet-item.kapali .hizmet-govde {
    display: none;
}

.hizmet-govde {
    margin-top: 0;
    padding: 25px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.btn-sil {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-sil:hover {
    background: #fecaca;
}

.btn-ekle {
    background: #eff6ff;
    color: #2563eb;
    border: 2px dashed #3b82f6;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-ekle:hover {
    background: #dbeafe;
    border-color: #2563eb;
}

.telefon-container {
    display: flex;
    align-items: center;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
}

.telefon-container:focus-within {
    border-color: #000000;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

.telefon-prefix {
    padding: 12px 16px;
    background: #e2e8f0;
    font-weight: 700;
    color: #334155;
    border-right: 2px solid #cbd5e1;
}

.telefon-input {
    border: none !important;
    outline: none !important;
    padding: 12px 16px !important;
    flex: 1;
    background: transparent !important;
    box-shadow: none !important;
}

.alt-buton-alani {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.btn-kaydet {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-kaydet:hover {
    background: linear-gradient(135deg, #16a34a 100%, #15803d 100%);
    transform: translateY(-2px);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- HİZMET DETAY KARTLARI (BOŞLUKSUZ PINTEREST / MASONRY DÜZENİ) --- */
.galeri-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto 50px auto !important;
}

@media screen and (max-width: 1024px) {
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 600px) {
    .galeri-grid {
        grid-template-columns: 1fr !important;
    }
}

.galeri-karti {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.galeri-karti:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.galeri-karti img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.galeri-icerik {
    padding: 20px;
}

.galeri-icerik h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.galeri-icerik p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- ORTA EKRANLAR (Windows Ölçeklendirmesi ve Küçük Laptoplar) --- */
@media screen and (max-width: 1200px) {
    .nav-links a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    .logo img {
        height: 45px;
    }
    .logo-baslik-satiri .barislar,
    .logo-baslik-satiri .zemin {
        font-size: 1.3rem;
    }
    header {
        padding: 0 3%;
    }
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 1024px) {
    header {
        height: 85px !important;
        padding: 0 12px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .logo img {
        height: 40px !important;
    }
    
    .logo-baslik-satiri .barislar,
    .logo-baslik-satiri .zemin {
        font-size: 1.15rem !important;
    }
    
    .logo-slogan {
        font-size: 0.42rem !important;
        letter-spacing: 0.2px !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        font-size: 2rem !important;
        background: transparent !important;
        border: none !important;
        color: #ffffff !important; 
        cursor: pointer !important;
    }
    
   .mobile-menu-btn i, .mobile-menu-btn svg, .fa-bars {
        color: #0f172a !important; /* Artık genel menü ikonu koyu lacivert (neredeyse siyah) olacak */
        fill: #0f172a !important;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .hizmetler-alani {
        padding: 60px 5%;
    }
    
    .hizmetler-baslik {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .hizmet-karti {
        width: 100%;
        max-width: 100%;
    }
    
    footer {
        padding: 40px 5% 20px 5%;
    }
    
    body.admin-body {
        padding: 15px 10px;
    }
    
    .panel-kapsayici {
        padding: 20px;
    }
    
    .admin-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* --- ÖZEL MAKİNA İKONLARI --- */
.ozel-makina-ikonu {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 15px auto;
    display: block;
}

/* --- HİZMET DETAY SAYfASI ÖZEL STİLLERİ --- */

.detay-kapsayici {
    padding: 130px 20px 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.detay-baslik-alani {
    text-align: center;
    margin-bottom: 25px;
}

.detay-baslik-alani h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.detay-baslik-alani p {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* BÖLÜM BAŞLIKLARI */
.bolum-baslik-2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 50px 0 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    text-align: center;
}

.bolum-baslik-2 i {
    color: #000000;
    font-size: 1.4rem;
}

/* BÜYÜTÜLEN GÖRSEL MODALI */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.85); 
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #000000;
}

.galeri-icerik h3, 
.galeri-icerik p {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* =========================================================
   YÖNETİCİ GİRİŞ EKRANI (LOGIN) CSS'İ
========================================================= */
#login-ekrani {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.login-kutu {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 90%;
    max-width: 420px;
    text-align: center;
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
}

.login-kutu h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.login-kutu p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 30px;
}

.login-form-grup {
    position: relative;
    margin-bottom: 25px;
}

.login-form-grup i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.login-form-grup input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.05rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.login-form-grup input:focus {
    border-color: #000000;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

.btn-login {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    margin-bottom: 20px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.login-geri-don {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.login-geri-don:hover {
    color: #1e293b;
}

/* --- YUVARLAK İKONLAR VE TEKLİF BUTONU --- */
.hero-aksiyon-alani {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    gap: 30px;
}

.iletisim-yan-yana {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.modern-hap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
}
.modern-hap-btn i {
    font-size: 1.2rem;
}
.modern-hap-btn.tel-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}
.modern-hap-btn.tel-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.6);
}
.modern-hap-btn.wp-btn {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}
.modern-hap-btn.wp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.6);
}

.yuvarlak-ikon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;       
    height: 50px;      
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.yuvarlak-ikon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: white;
}

.tel-ikon { background-color: #3b82f6; }
.tel-ikon:hover { background-color: #2563eb; }

.wp-ikon { background-color: #25D366; }
.wp-ikon:hover { background-color: #128C7E; }

.teklif-butonu {
    background-color: #f59e0b; 
    color: white;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 50px; 
}

.teklif-butonu:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* =========================================================
   TEKLİF / İLETİŞİM AÇILIR PENCERE (MODAL) ORTALAMA DÜZELTİLDİ
========================================================= */
.modal-arkaplan {
    display: none; 
    position: fixed; 
    z-index: 99999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center; 
    justify-content: center;
}

.modal-arkaplan.goster {
    display: flex !important; 
    opacity: 1;
}

.modal-kutu {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9); 
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.modal-arkaplan.goster .modal-kutu {
    transform: scale(1); 
}

.modal-kapat {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    z-index: 10;
}

.modal-kapat:hover { color: #ef4444; }

.modal-kutu h2 {
    color: #1e293b;
    font-size: 1.7rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
}

.modal-kutu p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: left;
}

.form-grup-yan-yana {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media screen and (max-width: 500px) {
    .form-grup-yan-yana {
        grid-template-columns: 1fr; 
    }
}

.form-grup-teklif {
    margin-bottom: 15px;
    text-align: left;
}

.form-grup-teklif label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #475569;
    font-size: 0.85rem;
}

.form-grup-teklif input, 
.form-grup-teklif textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    color: #1e293b;
    box-sizing: border-box;
}

.form-grup-teklif input:focus, 
.form-grup-teklif textarea:focus {
    border-color: #000000;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.15);
}

.btn-teklif-gonder {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-teklif-gonder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* --- AÇILIR MENÜ (DROPDOWN) --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1001;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.dropdown-content a {
    color: #475569 !important;
    padding: 10px 20px !important;
    text-decoration: none;
    display: block;
    margin-left: 0 !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    transition: all 0.2s ease;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.dropdown-content a::after {
    display: none !important;
}

.dropdown-content a:hover {
    background-color: #f1f5f9 !important;
    color: #000000 !important;
    padding-left: 25px !important;
    transform: none !important;
    box-shadow: none !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* --- YÜZEN İLETİŞİM BUTONU (SABİT DOLAŞAN) --- */
.yuzen-iletisim-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    cursor: pointer;
    z-index: 99999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.yuzen-iletisim-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.6);
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .yuzen-iletisim-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* --- HİZMETLER VE PARKUR KUTULARI --- */
.hizmetler-kutusu, .parkur-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    max-width: 1250px !important;
    margin: 0 auto !important;
}

.hizmet-karti, .parkur-karti {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%) !important;
    padding: 30px 24px !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 380px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    cursor: pointer;
    position: relative;
    border: 1px solid #90cdf4 !important;
    border-top: 4px solid #000000 !important;    
    border-bottom: 4px solid #000000 !important; 
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
}

.hizmet-karti:hover, .parkur-karti:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #bee3f8 0%, #90cdf4 100%) !important;
    border-color: #63b3ed !important;
    border-top-color: #000000 !important;
    border-bottom-color: #000000 !important;
    box-shadow: 0 20px 35px -5px rgba(15, 23, 42, 0.16), 0 10px 15px -5px rgba(15, 23, 42, 0.08);
}

.hizmet-gorsel, .parkur-karti img {
    width: 100% !important;
    height: 165px !important;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid #90cdf4;
    display: block !important;
}

.parkur-karti-icerik, .hizmet-karti > div:not(img) {
    padding: 0 !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.parkur-karti-icerik h3, .hizmet-karti h3 {
    color: #0f172a !important;
    margin-bottom: 12px !important;
    font-size: 1.28rem !important;
    font-weight: 800 !important;
    line-height: 1.35;
    text-align: center;
}

.parkur-karti-icerik p, .hizmet-karti p {
    color: #334155 !important;
    line-height: 1.6 !important;
    font-size: 0.92rem !important;
    margin-bottom: 10px !important;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .hizmetler-kutusu, .parkur-grid { 
        flex-direction: column !important;
        align-items: center !important;
    }
    .hizmet-karti, .parkur-karti {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================
   MAKİNE PARKURU KARTLARI
   ========================================== */
.parkur-grid .parkur-karti {
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid #90cdf4 !important; 
    border-top: 4px solid #0f172a !important; 
    border-bottom: 4px solid #0f172a !important; 
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.parkur-grid .parkur-karti:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.1) !important;
    border-top-color: #000000 !important;
    border-bottom-color: #000000 !important;
}

.parkur-grid .parkur-karti img {
    width: 100% !important;
    height: 300px !important; 
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}

.parkur-grid .parkur-karti .parkur-karti-icerik {
    padding: 15px 15px !important; 
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%) !important; 
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    border-top: 1px solid #90cdf4 !important; 
}

.parkur-grid .parkur-karti .parkur-karti-icerik h3 {
    font-size: 1.4rem !important; 
    font-weight: 800 !important;
    color: #0f172a !important; 
    margin: 0 0 4px 0 !important;
    text-transform: capitalize !important;
}

.parkur-grid .parkur-karti .parkur-karti-icerik p,
.parkur-grid .parkur-karti .parkur-karti-icerik .adet-seridi {
    font-size: 1rem !important; 
    font-weight: 700 !important;
    color: #334155 !important; 
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* ==========================================
   GÖRSEL BÜYÜTME (MODAL)
   ========================================== */
div.swal2-popup {
    padding: 0 !important; 
    border-radius: 16px !important; 
    overflow: hidden !important; 
}

img.swal2-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important; 
    border-radius: 0 !important; 
    object-fit: cover !important; 
    display: block !important;
}

h2.swal2-title {
    padding: 20px 15px !important;
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: #0f172a !important;
    background: #ffffff !important;
}

button.swal2-close {
    background: rgba(0, 0, 0, 0.5) !important; 
    color: #ffffff !important;
    border-radius: 50% !important; 
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

button.swal2-close:hover {
    background: rgba(0, 0, 0, 0.8) !important; 
    color: #ff4444 !important; 
}

/* ==========================================
   YENİ NESİL KUTULU (ROZET) BAŞLIK TASARIMI
   ========================================== */
.hizmetler-baslik,
.bolum-baslik-merkez {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important; 
    margin: 0 auto 45px auto !important; 
    padding: 16px 45px !important; 
    background: #0f172a !important; 
    color: #ffffff !important; 
    font-size: 2.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 16px !important; 
    border-bottom: 5px solid #f59e0b !important; 
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25) !important; 
}

.hizmetler-baslik::after, .bolum-baslik-merkez::after,
.hizmetler-baslik::before, .bolum-baslik-merkez::before {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .hizmetler-baslik,
    .bolum-baslik-merkez {
        font-size: 1.5rem !important;
        padding: 14px 25px !important;
        margin-bottom: 35px !important;
        width: 85% !important; 
        text-align: center !important;
    }
}

#hizmetler {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7ed 100%) !important;
    border-bottom: 1px solid #ffedd5 !important;
}

#makine-parkuru {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    background-image: none !important; 
    border-top: 1px solid #bae6fd !important;
    border-bottom: 1px solid #bae6fd !important;
}

#ekipmanlar {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7ed 100%) !important;
    border-top: 1px solid #ffedd5 !important;
    border-bottom: 1px solid #ffedd5 !important;
}
/* ==========================================
   REFERANSLAR BÖLÜMÜ (BÜYÜTÜLMÜŞ LOGOLAR)
   ========================================== */
.referanslar-bolumu, .referans-alani {
    padding: 80px 10%;
    text-align: center;
    background: #ffffff;
}

.referans-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 25px !important;
    max-width: 1250px !important;
    margin: 0 auto !important;
}

.referans-kart {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px; 
    width: 100%; 
    max-width: 200px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
    border-top: 4px solid #f59e0b;    
    border-bottom: 4px solid #f59e0b; 
    overflow: hidden; 
}

.referans-kart:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
    border-top-color: #f59e0b;
    border-bottom-color: #f59e0b;
}

/* LOGOLARI BÜYÜTME KODU */
.referans-kart img, 
.referans-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; 
    filter: none !important;
    opacity: 1 !important;
    display: block !important;
}

.referans-kart:hover img, 
.referans-logo:hover img {
    filter: none !important;
    opacity: 1 !important;
    transform: scale(1.08) !important;
}