/* ==========================================
   1. GENEL SIFIRLAMA VE TEMEL BİLEŞENLER
========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

/* ==========================================
   2. GECE / GÜNDÜZ MODU (DARK / LIGHT)
========================================== */
body.dark-mode {
    background-color: #f4f4f4;
    color: #111;
}

body.dark-mode .services,
body.dark-mode .features,
body.dark-mode .brands,
body.dark-mode .gallery,
body.dark-mode .testimonials,
body.dark-mode .contact,
body.dark-mode .service-area {
    background-color: #f4f4f4;
    color: #111;
}

body.dark-mode .service-card,
body.dark-mode .feature-box,
body.dark-mode .brand-box,
body.dark-mode .testimonial-card,
body.dark-mode .contact-card,
body.dark-mode .area-list div {
    background-color: #fff;
    color: #111;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

body.dark-mode .service-card p,
body.dark-mode .feature-box p,
body.dark-mode .testimonial-card p,
body.dark-mode .contact-card p,
body.dark-mode .contact-card a,
body.dark-mode .section-text {
    color: #444;
}

body.dark-mode .service-card h3,
body.dark-mode .feature-box h3,
body.dark-mode .testimonial-card h4,
body.dark-mode .contact-card h3 {
    color: #111;
}

body.dark-mode .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/oto-servis.jpg') center/cover no-repeat;
}

body.dark-mode .hero-content h1 { color: #fff; }
body.dark-mode .hero-content p { color: #eee; }

body.dark-mode .quick-help-container {
    background: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .quick-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

body.dark-mode .quick-btn:hover {
    background: #d60000 !important;
    color: #ffffff !important;
}

body.dark-mode .navbar {
    background: rgba(0, 0, 0, 0.85) !important;
}

body.dark-mode .menu a { color: #ffffff !important; }

/* ==========================================
   AÇIK MOD (DARK-MODE) SIDEBAR METİN DÜZELTMELERİ
========================================== */
body.dark-mode .sidebar {
    background: #ffffff;
    box-shadow: 5px 0 15px rgba(0,0,0,0.15);
}

body.dark-mode .sidebar-header h2,
body.dark-mode .sidebar-menu-list a {
    color: #111111;
}

body.dark-mode .sidebar-menu-list a {
    background: #f0f0f0;
}

body.dark-mode .sidebar-menu-list a:hover {
    background: #d60000;
    color: #ffffff;
}
/* Görünmeyen silik yazılar için renk düzeltmeleri */
body.dark-mode .sidebar-content p,
body.dark-mode .sidebar-content p strong {
    color: #222222 !important; /* Açık ve koyu gri metinleri koyu siyah yapar */
}

body.dark-mode .sidebar-content h3 {
    color: #111111 !important; /* "⚠ Acil Durum" başlığını netleştirir */
}

body.dark-mode .sidebar hr {
    border-top: 1px solid #ddd;
}

body.dark-mode footer {
    background-color: #e0e0e0;
    color: #222;
}

body.dark-mode footer p,
body.dark-mode footer a,
body.dark-mode footer h3,
body.dark-mode .copyright {
    color: #111;
}

body.dark-mode .modal-content {
    background-color: #ffffff;
    color: #111;
    border-color: #ddd;
}

body.dark-mode .modal-content h2 {
    color: #111;
    border-bottom-color: #eee;
}

body.dark-mode .faq-item,
body.dark-mode .modal-content ul li {
    background: #f0f0f0;
    color: #222;
}

body.dark-mode .close-modal { color: #333; }

/* ==========================================
   3. ANIMASYONLU LOADER
========================================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b0b0b;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.loader-hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-wheel-box {
    position: relative;
    width: 260px;
    height: 90px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-wheel {
    width: 65px;
    height: 65px;
    position: absolute;
    bottom: 10px;
    animation: driveAndSpin 2s linear infinite;
}

.loader-road {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.loader-road::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, #d60000, #d60000 15px, transparent 15px, transparent 30px);
    animation: roadMove 0.5s linear infinite;
}

.loader-static-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: 15px;
    border: 2px solid #d60000;
}

.loader-content h1 {
    font-size: 26px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.loader-subtitle {
    color: #d60000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes driveAndSpin {
    0% { left: -70px; transform: rotate(0deg); }
    100% { left: 270px; transform: rotate(720deg); }
}

@keyframes roadMove {
    0% { background-position: 0 0; }
    100% { background-position: -30px 0; }
}

/* ==========================================
   4. NAVBAR VE SIDEBAR
========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: all 0.4s ease;
}

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu a:hover { color: #d60000; }

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 4px 8px;
    font-size: 13px;
    width: 150px;
}

.search-box input::placeholder { color: #ccc; }

.search-box button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #d60000;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #141414;
    z-index: 100000;
    transition: left 0.4s ease;
    padding: 25px 20px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    overflow-y: auto;
}

.sidebar.active { left: 0; }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.sidebar-header h2 { font-size: 18px; color: #fff; }

#closeSidebar {
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
}

.sidebar-content p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
}

.sidebar-content hr {
    border: none;
    border-top: 1px solid #333;
    margin: 15px 0;
}

.sidebar-call {
    display: block;
    text-align: center;
    background: #d60000;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: none;
}

.sidebar-overlay.active { display: block; }

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.sidebar-menu-list li { margin-bottom: 12px; }

.sidebar-menu-list a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    display: block;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #d60000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-menu-list a:hover {
    background: #d60000;
    padding-left: 18px;
}

/* ==========================================
   5. HERO VE İÇERİK (TAM EKRANA SIĞDIRILMIŞ)
========================================== */
.hero {
    height: 100vh; /* Ekranı tam kaplar */
    max-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('images/oto-servis.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px 15px 20px; /* Üst ve alt boşluklar sıkılaştırıldı */
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin-top: 0; /* İçeriği aşağı iten margin sıfırlandı */
    padding-top: 0; /* İçeriği aşağı iten padding sıfırlandı */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-centered-logo {
    text-align: center;
    margin-bottom: 10px;
}

.hero-centered-logo img{
    max-width:320px;
    width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    mix-blend-mode:lighten;
    transition:transform .3s ease;
}
.hero-centered-logo img:hover { 
    transform: scale(1.05); 
}

.hero-badges-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 12px auto;
}

.live-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1.5px solid #ffcc00;
    border-radius: 10px;
    padding: 4px 12px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
    user-select: none;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.status-icon { font-size: 1rem; }

.status-text {
    font-size: 0.75rem;
    line-height: 1.1;
}

.status-text strong {
    display: block;
    color: #94a3b8;
    font-size: 0.6rem;
    text-transform: uppercase;
}

#today-service-count {
    color: #ffcc00;
    font-weight: 800;
}

#avg-time {
    color: #22c55e;
    font-weight: 700;
}

.status-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
}

.hero-content h1 {
    font-size: 26px; /* Başlık boyutu dengelendi */
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 15px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.call-btn, .wp-btn {
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.call-btn { background: #d60000; color: #fff; }
.wp-btn { background: #25d366; color: #fff; }

.call-btn:hover, .wp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.quick-help-container {
    background: rgba(255,255,255,0.08);
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.quick-help-title {
    display: block;
    font-size: 13px;
    color: #ff4d4d;
    font-weight: 600;
    margin-bottom: 8px;
}

.quick-help-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.quick-btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    background: rgba(255,255,255,0.15);
    transition: background 0.3s;
}
.quick-btn:hover { background: #d60000; }

/* ==========================================
   6. HİZMETLER VE BÖLÜMLER
========================================== */
section {
    padding: 80px 8%;
    text-align: center;
}

section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background: #d60000;
    margin: 8px auto 0;
}

.section-text {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 15px;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card i {
    font-size: 40px;
    color: #d60000;
    margin-bottom: 15px;
    transition: transform 0.4s ease-in-out, color 0.3s ease;
    display: inline-block;
}

.service-card:hover i {
    transform: translateY(-8px) scale(1.2);
    color: #ff1a1a;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #aaa;
    font-size: 14px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #d60000;
}

/* ÖZELLİKLER */
.feature-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: #1a1a1a;
    padding: 25px 15px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.feature-box.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-box i {
    font-size: 32px;
    color: #d60000;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    color: #aaa;
    font-size: 13px;
}

/* MARKALAR */
.brand-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.brand-box {
    background: #1a1a1a;
    padding: 12px 25px;
    border-radius: 20px;
    border: 1px solid #333;
    font-weight: 600;
    font-size: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.brand-box.show {
    opacity: 1;
    transform: translateY(0);
}

.brand-box:hover {
    border-color: #d60000;
    color: #d60000;
}

/* GALERİ */
.gallery-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    width:100%;
}

.gallery-box{
    width:100%;
    height:180px;
}

.gallery-box.show {
    opacity: 1;
    transform: scale(1);
}

.gallery-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-box:hover img { transform: scale(1.1); }

/* YORUMLAR */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid #d60000;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.testimonial-card.show {
    opacity: 1;
    transform: translateY(0);
}

.stars { margin-bottom: 10px; }

.testimonial-card p {
    font-style: italic;
    color: #ddd;
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    color: #d60000;
    font-size: 15px;
}

/* İLETİŞİM */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background: #1a1a1a;
    padding: 25px 15px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.contact-card.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-card i {
    font-size: 30px;
    color: #d60000;
    margin-bottom: 10px;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.active-pulse {
    display: inline-block;
    color: #25d366;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* HİZMET BÖLGELERİ */
.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-list div {
    background: #1a1a1a;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #333;
}

/* ==========================================
   7. FOOTER VE MODALLAR
========================================== */
footer {
    background: #0a0a0a;
    padding: 50px 8% 20px;
    color: #aaa;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-box a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-box a:hover { color: #d60000; }

.footer-links {
    list-style: none;
    padding: 0;
}

footer hr {
    border: none;
    border-top: 1px solid #222;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    font-size: 13px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.search-hidden { display: none !important; }

.custom-modal {
    display: none; 
    position: fixed; 
    z-index: 999999 !important;
    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: 15px;
}

.custom-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-top: 4px solid #d60000;
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover { color: #d60000; }

.modal-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 15px;
    background: #252525;
    padding: 12px 15px;
    border-radius: 8px;
}

.faq-item h4 {
    color: #ff4d4d;
    margin-bottom: 5px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content ul li {
    background: #252525;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 8px;
    line-height: 1.5;
}

.note-box {
    background-color: rgba(214, 0, 0, 0.1);
    border: 1px solid rgba(214, 0, 0, 0.3);
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
}

.note-box p {
    color: #ff8080 !important;
    font-size: 13px;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* FLOATING & STICKY BUTTONS */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-buttons a, 
.floating-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.floating-theme { background: #444; }
.floating-call { background: #d60000; }
.floating-whatsapp { background: #25d366; }

.sticky-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    z-index: 9999;
    padding: 10px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}

.sticky-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sticky-call { background: #d60000; margin-right: 5px; }
.sticky-location { background: #25d366; }

/* ==========================================
8. MOBİL UYUMLULUK (RESPONSIVE) - YUKARI ÇEKİLMİŞ & YAN YANA
========================================== */
@media (max-width: 768px) {
    /* 1. Navbar & Üst Bar */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 6px 10px 6px 50px !important;
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999 !important;
    }

    .menu-toggle {
        position: fixed !important;
        top: 6px !important;
        left: 8px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 15px !important;
        z-index: 10000 !important;
    }

    .menu {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 12px !important;
        padding: 2px 0 !important;
        margin-bottom: 4px !important;
        scrollbar-width: none;
    }

    .menu::-webkit-scrollbar { display: none; }

    .menu a { font-size: 12.5px !important; }

    .search-box {
        padding: 2px 8px !important;
    }

    .search-box input { font-size: 12px !important; }

    /* 2. Hero Alanı (Yukarı Çekilmiş Düzen) */
    .hero { 
        height: auto !important;
        min-height: auto !important;
        padding-top: 65px !important; /* Ekstra yukarı çekildi */
        padding-bottom: 20px !important;
    }

    .hero-centered-logo {
        margin-top: 0px !important;
        margin-bottom: 5px !important;
    }

    .hero-centered-logo img {
        max-width: 150px !important; /* Boyut ufaltılarak içerik yukarı çekildi */
        width: 55% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .hero-badges-wrapper {
        margin-bottom: 8px !important;
        gap: 6px !important;
    }

    .google-review-badge, .live-status-badge {
        padding: 3px 8px !important;
        font-size: 11px !important;
    }

    .hero-content h1 { 
        font-size: 16px !important; 
        line-height: 1.2 !important;
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .hero-content p { 
        font-size: 11.5px !important; 
        margin-bottom: 10px !important;
    }

    /* 3. Butonlar ve Yan Yana Acil Seçenekleri */
    .buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 6px !important;
        margin-bottom: 10px !important;
    }

    .call-btn, .wp-btn {
        width: 100% !important;
        padding: 10px 0 !important;
        font-size: 13.5px !important;
    }

    .quick-help-container {
        padding: 8px 10px !important;
    }

    /* Butonları Yan Yana Getiren Kısım */
    .quick-help-buttons { 
        display: flex !important;
        flex-direction: row !important; /* Yan yana dizilim */
        justify-content: center !important;
        gap: 8px !important; 
        width: 100% !important;
    }

    .quick-btn { 
        flex: 1 !important; /* Eşit genişlikte bölünme */
        width: 50% !important; 
        padding: 8px 5px !important;
        font-size: 12px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    /* Genel Izgara Yapıları */
    .service-container, 
    .feature-container,
    .contact-container,
    .gallery-container,
    .area-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }

    body { padding-bottom: 0px !important; }
    footer { padding-bottom: 20px !important; }
}
/* ==========================================
   MODERN HAVA BASINCI REHBERİ MODAL STİLLERİ
========================================== */
.pressure-guide-modal {
    max-width: 520px !important;
    padding: 30px !important;
    border-radius: 16px !important;
}

.modal-header-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.modal-header-icon {
    font-size: 32px;
    color: #d60000;
}

.modal-header-custom h2 {
    font-size: 20px !important;
    margin-bottom: 2px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.modal-subtitle {
    font-size: 13px;
    color: #888;
}

.guide-selector-box {
    margin-bottom: 22px;
    text-align: left;
}

.guide-selector-box label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ddd;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper select {
    width: 100%;
    padding: 12px 16px;
    background: #252525;
    color: #fff;
    border: 1px solid #3d3d3d;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d60000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.custom-select-wrapper select:focus {
    border-color: #d60000;
    box-shadow: 0 0 10px rgba(214, 0, 0, 0.25);
}

.guide-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.psi-card {
    background: linear-gradient(145deg, #222222, #181818);
    border: 1px solid #333;
    padding: 18px 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.psi-card:hover {
    transform: translateY(-3px);
    border-color: #d60000;
}

.psi-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
    font-weight: 500;
}

.psi-card-header i {
    color: #d60000;
}

.psi-badge {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: rgba(214, 0, 0, 0.15);
    border: 1px solid rgba(214, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.note-box-modern {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(214, 0, 0, 0.08);
    border: 1px solid rgba(214, 0, 0, 0.25);
    padding: 12px 15px;
    border-radius: 10px;
    text-align: left;
}

.note-box-modern i {
    color: #d60000;
    font-size: 18px;
    margin-top: 2px;
}

.note-box-modern p {
    font-size: 12px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Açık Mod Uyumluğu */
body.dark-mode .pressure-guide-modal {
    background: #ffffff !important;
}

body.dark-mode .modal-header-custom h2,
body.dark-mode .guide-selector-box label {
    color: #111 !important;
}

body.dark-mode .custom-select-wrapper select {
    background-color: #f5f5f5;
    color: #111;
    border-color: #ddd;
}

body.dark-mode .psi-card {
    background: #f9f9f9;
    border-color: #e5e5e5;
}

body.dark-mode .psi-badge {
    color: #d60000;
    background: rgba(214, 0, 0, 0.08);
}

body.dark-mode .note-box-modern p {
    color: #444;
}
/* ==========================================
   MOBİL MENÜ & LOGO KONUM DÜZELTMESİ
========================================== */
@media (max-width: 768px) {
    /* 1. Üst Navbar Düzeni */
    .navbar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 10px 15px 12px 60px !important; /* Sol boşluk hamburger buton için ayrıldı */
        background: rgba(10, 10, 10, 0.95) !important;
        backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999 !important;
    }

    /* Yatay Kaydırılabilir Şık Menü */
    .menu {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 20px !important;
        padding: 6px 0 !important;
        margin-bottom: 6px !important;
        width: 100% !important;
        scrollbar-width: none; /* Firefox için */
    }

    .menu::-webkit-scrollbar {
        display: none; /* Chrome/Safari için */
    }

    .menu a {
        font-size: 13.5px !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        letter-spacing: 0.3px;
        text-transform: capitalize;
        opacity: 0.9;
    }

    .menu a:hover, .menu a:active {
        color: #d60000 !important;
        opacity: 1;
    }

    /* Arama Kutusu Genişletme */
    .search-box {
        width: 100% !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 10px !important;
        padding: 4px 10px !important;
    }

    .search-box input {
        width: 100% !important;
        font-size: 13px !important;
    }

    /* Hamburger Butonu Konumu (Çakışmayı önler) */
    .menu-toggle {
        top: 12px !important;
        left: 12px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        z-index: 10000 !important;
        box-shadow: 0 4px 12px rgba(214, 0, 0, 0.4) !important;
    }

    /* 2. Logoyu Aşağı Kaydırma ve Hero Alanı Dengesi */
    .hero { 
        padding-top: 170px !important; /* Üst bardan sonra logoyu aşağıya iter */
        padding-bottom: 40px !important;
    }

    .hero-centered-logo {
        margin-top: 15px !important;
        margin-bottom: 25px !important;
    }

   .hero-centered-logo img {
    max-width: 320px !important;
}

    .hero-content h1 { 
        font-size: 22px !important; 
    }

    .hero-content p { 
        font-size: 14px !important; 
    }

    /* Butonlar & Kartlar */
    .buttons {
        flex-direction: column;
        width: 100%;
    }

    .call-btn, .wp-btn {
        width: 100% !important;
        padding: 14px 0 !important;
    }

    .quick-help-buttons { 
        flex-direction: column !important; 
    }

    .quick-btn { 
        width: 100% !important; 
    }

    .service-container, 
    .feature-container,
    .contact-container,
    .gallery-container,
    .area-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .floating-buttons { 
        bottom: 25px !important; 
    }

    footer { 
        padding-bottom: 30px !important; 
    }
}
@media (max-width:768px){

    .quick-help-buttons{
        display:flex;
        gap:10px;
    }

    .quick-help-buttons .quick-btn{
        flex:1;
        text-align:center;
        padding:14px 8px;
        font-size:15px;
    }

}