/* --- GENEL AYARLAR & FONTLAR --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7; 
    color: #444; 
    overflow-x: hidden; 
}
h1, h2, h3, h4, h5, h6, .btn, .nav-btn-item a, .contact-text strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Başlıklar */
.section-title { text-align: center; font-size: 2.5rem; color: #004494; margin-bottom: 15px; font-weight: 800; margin-top: 60px; text-transform: uppercase; letter-spacing: 1px; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 50px; font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* --- TOP BAR (DÜZELTİLDİ) --- */
.top-bar { background: #004494; color: white; padding: 10px 0; font-size: 0.9rem; font-weight: 600; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-slogan { font-size: 0.9rem; letter-spacing: 0.5px; opacity: 0.95; }
.contact-info a { margin-left: 20px; color: white; display: inline-flex; align-items: center; gap: 6px; }
.contact-info a:hover { color: #ff9800; }

/* --- HEADER & MENU --- */
header { 
    background: white; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    transition: 0.3s; 
    width: 100%;
}
header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 20px; 
    position: relative;
}
.logo img { height: 50px; width: auto; }

/* Masaüstü Menü Yapısı */
#menuList { display: flex; align-items: center; gap: 25px; }
#menuList > li { position: relative; } 
#menuList > li > a:not(.btn-nav-cta) { 
    font-weight: 700; color: #333; padding: 15px 0; 
    display: block; font-size: 0.9rem; text-transform: uppercase; 
    white-space: nowrap;
}
#menuList > li > a:not(.btn-nav-cta):hover { color: #004494; }

/* Mobil Başlık (Masaüstünde Gizli) */
.mobile-menu-header { display: none !important; }

/* --- DROPDOWN --- */
.dropdown-content {
    display: block; 
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    top: 100%; left: 0; z-index: 9999;
    border-top: 4px solid #ff9800;
    border-radius: 0 0 5px 5px;
    opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.3s ease;
}
.dropdown-content li a { 
    padding: 12px 20px; border-bottom: 1px solid #f0f0f0; 
    display: block; color: #555 !important; 
    font-weight: 600; font-size: 0.9rem; text-transform: none; 
}
.dropdown-content li a:hover { background: #f9f9f9; color: #ff9800 !important; padding-left: 25px; }

/* Masaüstü Hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
}

/* Teklif Al Butonu */
.btn-nav-cta { 
    background: #ff9800; color: white !important; 
    padding: 10px 20px; border-radius: 5px; font-weight: 800; 
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4); 
    letter-spacing: 0.5px; white-space: nowrap; 
    display: inline-block; font-size: 0.9rem;
}
.btn-nav-cta:hover { background: #e68900; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 152, 0, 0.6); }

/* --- HERO SLIDER --- */
.hero-slider { position: relative; height: 85vh; overflow: hidden; background: #222; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.slide.active { opacity: 1; }
.hero-content { max-width: 900px; padding: 30px; color: white; position: relative; z-index: 20; }
.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; text-shadow: 3px 3px 6px rgba(0,0,0,0.8); line-height: 1.1; font-weight: 800; }
.hero-content p { font-size: 1.3rem; margin-bottom: 30px; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); font-weight: 400; }
.hero-cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 25; }
.btn { padding: 15px 30px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; cursor: pointer; }
.btn-primary { background: #0056b3; color: white; border: 2px solid #0056b3; }
.btn-primary:hover { background: white; color: #0056b3; }
.btn-whatsapp { background: #25D366; color: white; border: 2px solid #25D366; }
.btn-whatsapp:hover { background: white; color: #25D366; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: white; border: 2px solid rgba(255,255,255,0.5); width: 50px; height: 50px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; z-index: 15; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: white; color: #333; border-color: white; }
.hero-prev { left: 30px; } .hero-next { right: 30px; }

/* --- HAKKIMIZDA --- */
.about-intro-section { padding: 100px 0; background-color: #f4f7f6; }
.about-intro-grid { display: flex; align-items: flex-start; gap: 60px; }
.about-large-img { flex: 1.1; position: relative; }
.about-large-img img { width: 100%; border-radius: 15px; box-shadow: 0 25px 50px rgba(0,0,0,0.2); object-fit: cover; height: 550px; border: 5px solid white; }
.experience-badge { 
    position: absolute; top: 20px; left: 20px; 
    background: #ff9800; color: white; padding: 10px 20px; 
    border-radius: 50px; font-weight: 800; font-size: 0.9rem; 
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3); text-transform: uppercase; z-index: 5;
}
.about-text-content { flex: 1; }
.about-text-content h2 { font-size: 2.5rem; color: #004494; margin-bottom: 25px; line-height: 1.2; font-weight: 800; position: relative; padding-bottom: 20px; }
.about-text-content h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 80px; height: 4px; background: #ff9800; }
.lead-text { font-size: 1.1rem; font-weight: 600; color: #333; margin-bottom: 25px; line-height: 1.5; }
.about-text-content p { color: #666; margin-bottom: 35px; font-size: 1rem; }
.about-work-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.about-work-gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: 0.3s; border: 2px solid white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.about-work-gallery img:hover { transform: scale(1.05); z-index: 5; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }

/* --- HİZMETLER --- */
.services { padding: 100px 0; background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.service-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; transition: 0.3s; border-bottom: 5px solid transparent; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); border-bottom-color: #ff9800; }
.service-card img { width: 100%; height: 250px; object-fit: cover; transition: 0.5s; }
.service-card:hover img { transform: scale(1.05); }
.service-content { padding: 30px; }
.service-card h3 { margin: 15px 0; color: #004494; font-size: 1.4rem; }
.service-card p { color: #666; }

/* --- BLOG --- */
.blog-section { padding: 100px 0; background: #fefefe; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.blog-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #f0f0f0; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-content { padding: 25px; }
.blog-date { font-size: 0.85rem; color: #999; display: block; margin-bottom: 10px; }
.blog-content h3 { color: #333; margin-bottom: 15px; font-size: 1.3rem; line-height: 1.4; transition: 0.3s; }
.blog-card:hover h3 { color: #004494; }
.read-more { color: #004494; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { color: #ff9800; gap: 10px; }

/* --- YORUMLAR --- */
.testimonials-section { padding: 100px 0; background: #f8f9fa; }
.slider-container { position: relative; max-width: 900px; margin: 0 auto; overflow: hidden; padding: 20px; }
.testimonial-slider { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-item { min-width: 100%; padding: 50px; text-align: center; background: white; box-shadow: 0 15px 40px rgba(0,0,0,0.05); border-radius: 15px; position: relative; }
.testimonial-item::before { content: '\201C'; font-family: sans-serif; font-size: 120px; position: absolute; top: -20px; left: 30px; color: #f0f0f0; z-index: 0; }
.stars { color: #ffc107; font-size: 1.8rem; margin-bottom: 20px; position: relative; z-index: 1; }
.review-text { font-size: 1.3rem; font-style: italic; color: #444; margin-bottom: 30px; position: relative; z-index: 1; }
.client-name { font-weight: 800; color: #004494; font-size: 1.2rem; position: relative; z-index: 1; }
.prev-btn, .next-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; color: #004494; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; z-index: 10; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.prev-btn { left: 0; } .next-btn { right: 0; }

/* --- İLETİŞİM YENİ (CAM EFEKTİ) --- */
.contact-form-section { padding: 100px 0; background: linear-gradient(135deg, #002a5c 0%, #004494 100%); color: white; position: relative; overflow: hidden; }
.contact-form-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.form-wrapper { display: flex; gap: 80px; align-items: center; flex-wrap: wrap; position: relative; z-index: 2; }
.form-info { flex: 1; min-width: 300px; }
.sub-title { color: #ff9800; font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; text-transform: uppercase; }
.form-info h3 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; font-weight: 800; }
.form-info p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; line-height: 1.6; max-width: 500px; }
.contact-details { display: flex; flex-direction: column; gap: 25px; }
.contact-item-box { display: flex; align-items: center; gap: 20px; }
.icon-circle { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #ff9800; border: 1px solid rgba(255, 255, 255, 0.2); transition: 0.3s; }
.contact-item-box:hover .icon-circle { background: #ff9800; color: white; transform: scale(1.1); }
.contact-text span { display: block; font-size: 0.9rem; opacity: 0.7; margin-bottom: 3px; }
.contact-text strong { font-size: 1.1rem; font-weight: 700; display: block; line-height: 1.3; }
.form-box { flex: 1; min-width: 300px; background: white; padding: 50px; border-radius: 20px; color: #333; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 18px; border: 1px solid #e0e0e0; background-color: #f9f9f9; border-radius: 8px; font-size: 1rem; font-family: 'Open Sans', sans-serif; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #004494; background-color: #fff; outline: none; box-shadow: 0 5px 15px rgba(0, 68, 148, 0.1); }
.btn-submit { width: 100%; background: #ff9800; color: white; border: none; padding: 20px; border-radius: 8px; font-weight: 800; cursor: pointer; font-size: 1.1rem; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { background: #e68900; box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4); transform: translateY(-2px); }

/* --- FOOTER --- */
footer { background: #1a1a1a; color: #bbb; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-col h3 { color: white; margin-bottom: 30px; border-bottom: 3px solid #ff9800; display: inline-block; padding-bottom: 10px; font-size: 1.4rem; }
.footer-logo { margin-bottom: 20px; width: 160px; background: white; padding: 8px; border-radius: 5px; }
.footer-col ul li { margin-bottom: 12px; border-bottom: 1px solid #333; padding-bottom: 12px; }
.mini-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-gallery img { border-radius: 4px; cursor: pointer; opacity: 0.6; transition: 0.3s; width: 100%; height: 100px; object-fit: cover; }
.footer-bottom { border-top: 1px solid #333; margin-top: 60px; padding-top: 30px; text-align: center; }

/* --- MOBİL & TABLET UYUMLULUK (Responsive) --- */
.menu-icon, .menu-overlay { display: none; }

/* 991px ve altı (Tablet Dikey ve Mobil) */
@media (max-width: 991px) {
    /* Top Bar */
    .top-bar .container { justify-content: center; }
    .top-slogan { display: none; } 
    .contact-info a { margin: 0 10px; font-size: 0.8rem; }

    /* Header */
    header .container { padding: 15px 20px; }
    .logo img { height: 45px; }

    /* Menü İkonu */
    .menu-icon { display: block; font-size: 1.8rem; cursor: pointer; color: #004494; }

    /* Mobil Menü Kutusu */
    #menuList { 
        position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; 
        background: white; flex-direction: column; align-items: flex-start; 
        padding: 20px; transition: 0.4s; box-shadow: -5px 0 30px rgba(0,0,0,0.2); 
        z-index: 1001; margin-left: 0; gap: 0;
    }
    #menuList.active { right: 0; }
    #menuList > li { width: 100%; margin: 0; border-bottom: 1px solid #f0f0f0; display: block; }
    #menuList > li > a { padding: 15px 10px; width: 100%; display: flex; justify-content: space-between; font-size: 0.95rem; }
    
    /* Mobil Başlık (GÖRÜNÜR) */
    .mobile-menu-header { display: flex !important; justify-content: space-between; align-items: center; width: 100%; border-bottom: 2px solid #004494 !important; margin-bottom: 10px !important; padding-bottom: 15px; }
    .mobile-menu-header img { height: 40px; }
    .mobile-menu-header i { font-size: 1.8rem; cursor: pointer; color: #555; }
    
    /* Overlay */
    .menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; display: none; }
    .menu-overlay.active { display: block; }
    
    /* Dropdown Mobil */
    .dropdown-content { position: static; display: none; width: 100%; box-shadow: none; border: none; background: #f9f9f9; opacity: 1; visibility: visible; transform: none; transition: none; }
    .dropdown-content.show { display: block; }
    .dropdown-content li a { padding-left: 30px; }

    /* Buton Ayarı */
    .nav-btn-item { border-bottom: none !important; margin-top: 25px; }
    .btn-nav-cta { display: block; text-align: center; width: 100%; padding: 15px 0; margin: 0; font-size: 1rem; }

    /* Hover Kapat */
    .dropdown:hover .dropdown-content { display: none; }
    .dropdown-content.show { display: block !important; }

    /* Responsive Diğer */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-cta-buttons { flex-direction: column; gap: 10px; }
    .btn { width: 100%; justify-content: center; }
    .hero-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
    .hero-prev { left: 10px; } .hero-next { right: 10px; }

    .about-intro-section { padding: 60px 0; }
    .about-intro-grid { flex-direction: column; gap: 40px; }
    .about-large-img img { height: auto; max-height: 350px; }
    .experience-badge { left: 0; top: -15px; }
    .about-text-content h2 { font-size: 2.2rem; }
    
    .contact-form-section { padding: 60px 0; }
    .form-wrapper { gap: 40px; }
    .form-info h3 { font-size: 2.2rem; }
    .form-box { padding: 30px; }
    .icon-circle { width: 50px; height: 50px; font-size: 1.2rem; }
    .contact-item-box { gap: 15px; }
}


/* --- ALT SAYFA AYARLARI (YENİ EKLENDİ) --- */

/* Sayfa Başlık Bannerı */
.page-banner {
    height: 350px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Sayfa İçerik Alanı */
.page-content-section {
    padding: 0 0 80px 0;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
}

.text-block h3 {
    color: #004494;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

/* Harita Alanı (İletişim Sayfası İçin) */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 60px;
    border: 5px solid white;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobilde Banner Ayarı */
@media (max-width: 768px) {
    .page-banner { height: 250px; }
    .banner-content h1 { font-size: 2.2rem; }
    .map-container { height: 300px; }
}

/* --- HİZMET DETAY SAYFASI (YENİ EKLENDİ) --- */

.service-detail-section {
    padding: 0 0 80px 0;
    background-color: #f9f9f9;
}

/* Sayfa Düzeni: Sidebar + İçerik */
.service-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Yukarı hizala */
}

/* Sidebar (Sol Menü) */
.service-sidebar {
    flex: 0 0 300px; /* Sabit 300px genişlik */
    position: sticky;
    top: 100px; /* Sayfa kayınca sabit kalsın */
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    color: #004494;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #ff9800;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid #f9f9f9;
}

.sidebar-widget ul li a {
    display: block;
    padding: 12px 15px;
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    background: #fcfcfc;
    border-radius: 5px;
    transition: 0.3s;
}

.sidebar-widget ul li a:hover,
.sidebar-widget ul li a.active {
    background: #004494;
    color: white;
    padding-left: 20px;
}

.sidebar-widget ul li a i {
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Sidebar İletişim Kutusu */
.sidebar-contact-box {
    background: linear-gradient(135deg, #004494 0%, #002a5c 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.sidebar-contact-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff9800;
}

.sidebar-contact-box h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sidebar-contact-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.btn-sidebar-call {
    display: block;
    background: #ff9800;
    color: white;
    padding: 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
}

.btn-sidebar-call:hover {
    background: white;
    color: #004494;
}

/* Ana İçerik Alanı */
.service-content-area {
    flex: 1; /* Kalan tüm alanı kapla */
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-main-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-content-area h2 {
    font-size: 2.2rem;
    color: #004494;
    margin-bottom: 20px;
}

.service-content-area h3 {
    font-size: 1.6rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-content-area p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.05rem;
}

/* Madde İşaretli Liste */
.check-list {
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: #ff9800;
    font-size: 1.2rem;
}

/* İçerik İçi Galeri */
.content-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.content-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}

.content-gallery img:hover {
    transform: scale(1.02);
}

/* İçerik İçi CTA Kutusu */
.cta-box {
    background: #f0f7ff;
    border-left: 5px solid #004494;
    padding: 30px;
    margin-top: 40px;
    border-radius: 5px;
}

.cta-box h4 {
    color: #004494;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Responsive Service Page */
@media (max-width: 991px) {
    .service-layout {
        flex-direction: column; /* Mobilde alt alta al */
    }
    
    .service-sidebar {
        width: 100%;
        position: static;
        flex: none;
    }
    
    .service-content-area {
        width: 100%;
        padding: 25px;
    }
    
    .service-main-img img {
        height: 250px;
    }
    
    .content-gallery {
        grid-template-columns: 1fr; /* Galeriyi tek sütun yap */
    }
}

/* =========================================
   MOBİL CİHAZLAR İÇİN ÖZEL DÜZENLEMELER
   (Max Genişlik: 768px)
========================================= */
@media (max-width: 768px) {

    /* 1. SLIDER OKLARINI GİZLE */
    .hero-slider .hero-arrow {
        display: none !important;
    }

    /* 2. BUTONLARI DÜZENLE (Yan Yana ve Daha Dar) */
    .hero-cta-buttons {
        flex-direction: row; /* Butonları yan yana getir */
        justify-content: center; /* Ortala */
        gap: 10px; /* Aralarındaki boşluğu azalt */
        margin-top: 20px;
    }

    .hero-cta-buttons .btn {
        width: auto; /* Genişliği içeriğe göre ayarla (Tam genişlik yapma) */
        min-width: 140px; /* Çok küçülmemeleri için minimum genişlik */
        padding: 12px 15px; /* Mobilde paddingi biraz azalt */
        font-size: 14px; /* Yazı boyutunu mobilde biraz küçült */
    }

    /* (İsteğe Bağlı) Buton ikonlarını mobilde biraz küçült */
    .hero-cta-buttons .btn i {
        font-size: 16px;
        margin-right: 8px;
    }

    /* Mobil için başlık ve açıklama boyutlarını da optimize edelim */
     .hero-content h1 {
        font-size: 32px; /* Mobilde başlığı biraz küçült */
    }
    .hero-content p {
        font-size: 16px; /* Mobilde açıklamayı biraz küçült */
    }

    .service-sidebar{
        display: none;
    }
}

.hizmet-baslik{
    font-size: 2.2rem;
    color: #004494;
    margin-bottom: 10px;
    font-weight: bolder;
}