/* GENEL AYARLAR VE RENK PALETİ */
:root {
    --primary-color: #007bff;
    --primary-glow: rgba(0, 123, 255, 0.8);
    --whatsapp-color: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.8);
    --dark-bg: #121212;
    --light-card-bg: #1d1d1d;
    --light-color: #f9f9f9;
    --text-color: #555;
    --text-light: #e0e0e0;
    --white-color: #fff;
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

a { text-decoration: none; }
ul { list-style: none; }

/* KAHRAMAN ALAN (Hero Section) */
.hero-section { min-height: 100vh; display: flex; justify-content: center; align-items: center; text-align: center; color: var(--white-color); padding: 20px; }
.hero-content h1 { font-family: var(--font-heading); font-weight: 800; color: var(--white-color); font-size: clamp(2.8rem, 6vw, 4.5rem); text-shadow: 2px 2px 4px rgba(0,0,0,0.7); }
.hero-content p { font-size: clamp(1rem, 2.5vw, 1.2rem); margin-bottom: 40px; text-shadow: 1px 1px 2px rgba(0,0,0,0.7); color: var(--text-light); }
.hero-contact { margin-top: 30px; }
.hero-buttons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.neon-button { display: inline-flex; align-items: center; padding: 15px 30px; font-size: 1rem; font-weight: 600; color: var(--white-color); text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--white-color); border-radius: 50px; transition: all 0.3s ease; position: relative; }
.neon-button i { margin-right: 10px; font-size: 1.2rem; }
.call-button { animation: pulse-neon-call 2.5s infinite ease-in-out; }
.whatsapp-button { animation: pulse-neon-whatsapp 2.5s infinite ease-in-out; }
@keyframes pulse-neon-call { 0%, 100% { box-shadow: 0 0 8px var(--primary-glow), 0 0 15px var(--primary-glow), inset 0 0 8px var(--primary-glow); } 50% { box-shadow: 0 0 30px var(--primary-glow), 0 0 45px var(--primary-glow), inset 0 0 15px var(--primary-glow); } }
@keyframes pulse-neon-whatsapp { 0%, 100% { box-shadow: 0 0 5px var(--whatsapp-glow), 0 0 10px var(--whatsapp-glow), inset 0 0 5px var(--whatsapp-glow); } 50% { box-shadow: 0 0 20px var(--whatsapp-glow), 0 0 30px var(--whatsapp-glow), inset 0 0 10px var(--whatsapp-glow); } }
.neon-button:hover { animation-play-state: paused; background: var(--white-color); color: var(--dark-bg); }

/* Ortak kart stili */
#services, #about { padding: 0; background-color: transparent; }
.services-wrapper, .about-container {
    max-width: 1000px;
    margin: 20px auto; /* GÜNCELLENDİ: Boşluk azaltıldı */
    background: rgba(29, 29, 29, 0.95);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.services-wrapper { text-align: center; }

/* HİZMETLER BÖLÜMÜ BAŞLIĞI */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--white-color);
    margin-bottom: 50px;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--white-color);
    border-radius: 10px;
    animation: pulse-neon-call 3s infinite ease-in-out;
}

/* HİZMET İKONLARI */
.service-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse-icon-neon 2.5s infinite ease-in-out;
}

@keyframes pulse-icon-neon {
    0%, 100% { box-shadow: 0 0 12px var(--primary-glow), 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 35px var(--primary-glow), 0 0 50px var(--primary-glow); }
}

.services-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 20px; }
.service-box { background: transparent; padding: 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; box-shadow: none; flex-basis: 250px; transition: transform 0.3s ease, border-color 0.3s; text-align: center; }
.service-box:hover { transform: translateY(-10px); border-color: var(--primary-color); }
.service-box h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.6rem; margin-bottom: 15px; color: var(--white-color); }
.service-box p { color: var(--text-light); }

/* HAKKIMDA BÖLÜMÜ */
.about-container { display: flex; align-items: center; gap: 60px; }
.about-image-wrapper { flex-basis: 300px; height: 300px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 25px var(--primary-glow); border: 3px solid var(--primary-color); flex-shrink: 0; }
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-text-content { flex: 1; text-align: left;}
.about-title { font-family: var(--font-heading); font-weight: 700; color: var(--white-color); font-size: 2.5rem; display: inline-block; padding: 15px 30px; border: 2px solid var(--white-color); border-radius: 10px; animation: pulse-neon-call 3s infinite ease-in-out; margin-bottom: 20px; }
.about-bio { margin-bottom: 30px; font-size: 1.1rem; color: var(--text-light); }
.vehicle-info h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: var(--white-color); margin-bottom: 15px; border-left: 3px solid var(--primary-color); padding-left: 10px; }
.vehicle-info ul li { margin-bottom: 10px; display: flex; align-items: center; color: var(--text-light); }
.vehicle-info i { color: var(--primary-color); margin-right: 15px; font-size: 1.2rem; width: 20px; text-align: center; }

/* SAĞ NAVİGASYON */
.side-nav { position: fixed; top: 50%; right: 20px; transform: translateY(-50%); z-index: 1000; background-color: rgba(255, 255, 255, 0.9); border-radius: 50px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.side-nav ul { padding: 10px 5px; }
.side-nav li { margin: 15px 0; }
.side-nav a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; color: var(--dark-bg); font-size: 1.2rem; transition: all 0.3s ease; position: relative; border-radius: 50%; animation: pulse-nav-icon 2.5s infinite; }
.side-nav a:hover { color: var(--primary-color); transform: scale(1.1); animation-play-state: paused; }
.side-nav a.active-nav-link { color: var(--primary-color); }
@keyframes pulse-nav-icon { 0%, 100% { box-shadow: 0 0 15px var(--primary-glow); } 50% { box-shadow: 0 0 3px var(--primary-glow); } }
.side-nav a::before { content: attr(data-tooltip); position: absolute; right: 55px; top: 50%; transform: translateY(-50%); background-color: var(--dark-bg); color: var(--white-color); padding: 5px 10px; border-radius: 5px; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; font-size: 0.9rem; }
.side-nav a:hover::before { opacity: 1; visibility: visible; }

/* HAREKETLİ İKONLAR */
.floating-action-buttons { position: fixed; bottom: 30px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 15px; }
.action-btn { position: relative; width: 55px; height: 55px; border-radius: 50%; color: var(--white-color); display: flex; justify-content: center; align-items: center; font-size: 1.8rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); transition: transform 0.3s ease; animation: pulse-icon 2.5s infinite; }
.floating-whatsapp-btn { background-color: var(--whatsapp-color); }
.floating-call-btn { background-color: var(--primary-color); }
.action-btn:hover { transform: scale(1.1); animation: none; }
@keyframes pulse-icon { 0% { transform: scale(0.95); } 70% { transform: scale(1.05); } 100% { transform: scale(0.95); } }
.action-btn::before { content: attr(data-tooltip); position: absolute; left: -105px; top: 50%; transform: translateY(-50%); width: 90px; text-align: center; background-color: var(--dark-bg); color: var(--white-color); padding: 5px; border-radius: 5px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; font-size: 0.8rem; }
.action-btn:hover::before { opacity: 1; visibility: visible; }

/* SİYAH DAMALI FOOTER */
#footer { padding: 20px; text-align: center; color: var(--white-color); text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); font-weight: 600; background-color: #333; background-image: linear-gradient(45deg, #111 25%, transparent 25%), linear-gradient(-45deg, #111 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #111 75%), linear-gradient(-45deg, transparent 75%, #111 75%); background-size: 30px 30px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .about-container, .services-wrapper { flex-direction: column; padding: 40px 20px; text-align: center; } .about-image-wrapper { margin-bottom: 30px; } .side-nav { display: none; } .action-btn::before { display: none; } #services, .about-section-dark { margin: 20px; } }
@media (max-width: 480px) { .hero-buttons { flex-direction: column; align-items: center; } .neon-button { width: 80%; justify-content: center; } }