:root {
    --primary-orange: #FF6B00;
    --primary-orange-dark: #E55D00;
    --secondary-dark: #1A1A2E;
    --secondary-blue: #16213E;
    --accent-yellow: #FFD93D;
    --accent-red: #FF3131;
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --gradient-fire: linear-gradient(135deg, #FF6B00 0%, #FFD93D 50%, #FF6B00 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #16213E 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

/* --- TEMEL AYARLAR VE KAYMA ÖNLEME --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    font-family: 'Montserrat', sans-serif;
    background: var(--secondary-dark);
    color: var(--text-light);
    /* Yatay kaymayı kesin olarak engeller */
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }

/* ARKA PLAN EFEKTLERİ */
.animated-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: var(--gradient-dark); }
.animated-bg::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(255, 217, 61, 0.1) 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, rgba(22, 33, 62, 0.8) 0%, transparent 70%); animation: bgPulse 8s ease-in-out infinite alternate; }
@keyframes bgPulse { 0% { opacity: 0.8; } 100% { opacity: 1; } }

.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--primary-orange); border-radius: 50%; opacity: 0.3; animation: float 15s infinite ease-in-out; }
@keyframes float { 0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 0.5; } 90% { opacity: 0.5; } 100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; } }

/* TOP BAR */
.top-bar { background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%); padding: 10px 0; position: relative; z-index: 1000; }
.top-bar a { color: white; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.top-bar a:hover { color: var(--accent-yellow); }
.top-bar i { margin-right: 8px; }
.whatsapp-header-btn { background: #25D366; padding: 6px 15px; border-radius: 20px; font-size: 0.8rem !important; display: inline-flex; align-items: center; gap: 5px; }
.whatsapp-header-btn:hover { background: #128C7E; color: white !important; }

/* NAVBAR */
.navbar { background: rgba(26, 26, 46, 0.95) !important; backdrop-filter: blur(20px); padding: 15px 0; transition: all 0.4s ease; border-bottom: 1px solid rgba(255, 107, 0, 0.2); }
.navbar.scrolled { padding: 10px 0; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }
.navbar-brand { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: white !important; letter-spacing: 3px; }
.navbar-brand span { color: var(--primary-orange); }
.nav-link { color: var(--text-light) !important; font-weight: 600; font-size: 0.95rem; padding: 10px 20px !important; position: relative; transition: all 0.3s ease; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: var(--gradient-fire); transition: all 0.3s ease; transform: translateX(-50%); border-radius: 3px; }
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.nav-link:hover { color: var(--primary-orange) !important; }
.navbar-toggler { border: 2px solid var(--primary-orange); padding: 8px 12px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6B00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* HERO SECTION */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 120px 0 80px; overflow: hidden; }
.hero-badges { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
.corporate-label { font-size: 0.85rem; color: var(--primary-orange); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; display: inline-block; background: rgba(255, 107, 0, 0.1); padding: 6px 15px; border-radius: 4px; border-left: 3px solid var(--primary-orange); }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.3); padding: 10px 25px; border-radius: 50px; backdrop-filter: blur(10px); animation: pulse 2s ease-in-out infinite; }
.live-badge { background: rgba(37, 211, 102, 0.2); border-color: #25D366; animation: none; }
.live-badge i { color: #25D366; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); } 50% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); } }
.hero-badge i { color: var(--accent-yellow); font-size: 1.2rem; }
.hero-badge span { color: var(--text-light); font-weight: 600; font-size: 0.9rem; }
.hero-title { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; text-transform: uppercase; }
.hero-title .highlight { color: var(--primary-orange); position: relative; display: inline-block; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px; background: var(--gradient-fire); opacity: 0.5; z-index: -1; transform: skewX(-10deg); }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.9; }
.hero-subtitle strong { color: var(--primary-orange); }
.hero-features { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
.hero-feature-item { display: flex; align-items: center; gap: 8px; background: rgba(255,107,0,0.1); padding: 8px 18px; border-radius: 25px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(255,107,0,0.2); }
.hero-feature-item i { color: #25D366; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-whatsapp { background: #25D366; color: white; font-weight: 700; padding: 18px 35px; border-radius: 50px; border: none; font-size: 1rem; transition: all 0.4s ease; }
.btn-whatsapp:hover { background: #128C7E; color: white; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4); }
.btn-lg { padding: 18px 35px; font-size: 1rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 25px; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.trust-text { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-weight: 600; }
.trust-text i { color: #25D366; font-size: 1.2rem; }
.trust-stars { display: flex; align-items: center; gap: 5px; }
.trust-stars i { color: var(--accent-yellow); font-size: 0.9rem; }
.trust-stars span { color: var(--text-muted); font-size: 0.85rem; margin-left: 8px; }

/* HERO STATS */
.hero-stats-card { background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.25); border-radius: 30px; padding: 30px; backdrop-filter: blur(15px); }
.stats-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.stats-card-header i { color: var(--primary-orange); font-size: 1.5rem; }
.stats-card-header span { font-weight: 700; font-size: 1.1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-box { background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.15); border-radius: 20px; padding: 25px 20px; text-align: center; transition: all 0.4s ease; }
.stat-box:hover { transform: translateY(-5px); border-color: var(--primary-orange); background: rgba(255,107,0,0.15); }
.stat-icon { width: 50px; height: 50px; background: var(--gradient-fire); border-radius: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.stat-icon i { font-size: 1.4rem; color: white; }
.stat-box .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--primary-orange); line-height: 1; }
.stat-box .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.stat-growth { font-size: 0.75rem; color: #25D366; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 5px; }
.stats-card-footer { margin-top: 20px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1); }
.live-indicator { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.pulse-dot { width: 10px; height: 10px; background: #25D366; border-radius: 50%; animation: pulseDot 1.5s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); } }

/* BRANDS & BUTTONS */
.hero-brands { margin-top: 60px; padding: 30px; background: var(--gradient-glass); border: 1px solid rgba(255,107,0,0.15); border-radius: 20px; text-align: center; }
.brands-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.brands-list span { background: rgba(255,255,255,0.05); padding: 8px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; color: var(--text-light); border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; }
.brands-list span:hover { border-color: var(--primary-orange); color: var(--primary-orange); }
.brands-list span:last-child { background: var(--gradient-fire); border: none; color: white; }

.btn-fire { background: var(--gradient-fire); background-size: 200% auto; color: white; font-weight: 700; padding: 18px 40px; border-radius: 50px; border: none; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4); position: relative; overflow: hidden; }
.btn-fire::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s ease; }
.btn-fire:hover::before { left: 100%; }
.btn-fire:hover { background-position: right center; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5); color: white; }

/* --- FLOATING BUTTONS (MASAÜSTÜ VARSAYILAN) --- */
.phone-float { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; align-items: center; gap: 15px; background: var(--gradient-fire); padding: 15px 25px; border-radius: 50px; text-decoration: none; color: white; font-weight: 700; box-shadow: 0 10px 40px rgba(255, 107, 0, 0.5); transition: all 0.4s ease; animation: phoneRing 2s ease-in-out infinite; }
@keyframes phoneRing { 0%, 100% { transform: scale(1); } 10%, 30% { transform: scale(1.05) rotate(-3deg); } 20%, 40% { transform: scale(1.05) rotate(3deg); } 50% { transform: scale(1); } }
.phone-float:hover { transform: scale(1.1); color: white; box-shadow: 0 15px 50px rgba(255, 107, 0, 0.6); }
.phone-float i { font-size: 1.5rem; animation: shake 0.5s ease-in-out infinite; }
@keyframes shake { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }

.whatsapp-float { position: fixed; bottom: 100px; right: 30px; z-index: 9999; display: flex; align-items: center; gap: 12px; background: #25D366; padding: 15px 25px; border-radius: 50px; text-decoration: none; color: white; font-weight: 700; box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5); transition: all 0.4s ease; }
.whatsapp-float:hover { transform: scale(1.1); color: white; box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6); background: #128C7E; }
.whatsapp-float i { font-size: 1.5rem; }

/* SERVICES */
.services-section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle { display: inline-block; background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.3); padding: 8px 25px; border-radius: 30px; font-size: 0.9rem; color: var(--primary-orange); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.section-title { font-size: 3.5rem; margin-bottom: 20px; text-transform: uppercase; }
.section-title span { color: var(--primary-orange); }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.service-card { background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.15); border-radius: 30px; padding: 50px 40px; height: 100%; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; backdrop-filter: blur(10px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient-fire); opacity: 0; transition: opacity 0.5s ease; z-index: 0; }
.service-card:hover::before { opacity: 0.1; }
.service-card:hover { transform: translateY(-15px); border-color: var(--primary-orange); box-shadow: 0 30px 60px rgba(255, 107, 0, 0.2); }
.service-icon { width: 90px; height: 90px; background: var(--gradient-fire); border-radius: 25px; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; position: relative; z-index: 1; transition: all 0.4s ease; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-icon i { font-size: 2.5rem; color: white; }
.service-title { font-size: 1.8rem; margin-bottom: 15px; position: relative; z-index: 1; }
.service-desc { color: var(--text-muted); line-height: 1.8; position: relative; z-index: 1; margin-bottom: 25px; }
.service-link { color: var(--primary-orange); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; position: relative; z-index: 1; transition: all 0.3s ease; }
.service-link i { transition: transform 0.3s ease; }
.service-link:hover { color: var(--accent-yellow); }
.service-link:hover i { transform: translateX(5px); }
.advantages-strip { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding: 30px 40px; background: var(--gradient-fire); border-radius: 25px; flex-wrap: wrap; }
.advantage-item { display: flex; align-items: center; gap: 15px; flex: 1; min-width: 200px; }
.advantage-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.advantage-icon i { font-size: 1.8rem; color: white; }
.advantage-text { display: flex; flex-direction: column; }
.advantage-text strong { font-size: 1.2rem; color: white; }
.advantage-text span { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ABOUT SECTION */
.about-section { padding: 100px 0; position: relative; }
.about-content { padding-right: 50px; }
.about-title { font-size: 3rem; margin-bottom: 25px; line-height: 1.2; }
.about-title span { color: var(--primary-orange); }
.about-text { color: var(--text-muted); font-size: 1.1rem; line-height: 1.9; margin-bottom: 30px; }
.about-features { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.about-feature { display: flex; align-items: center; gap: 12px; background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.2); padding: 15px 25px; border-radius: 15px; transition: all 0.3s ease; }
.about-feature:hover { border-color: var(--primary-orange); transform: translateY(-3px); }
.about-feature i { color: var(--primary-orange); font-size: 1.3rem; }
.about-feature span { font-weight: 600; }
.about-image { position: relative; }
.about-img-wrapper { position: relative; padding: 30px; }
.about-img-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 3px solid var(--primary-orange); border-radius: 30px; transform: translate(20px, 20px); z-index: 0; }
.about-img-main { position: relative; z-index: 1; background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.3); border-radius: 30px; padding: 60px; text-align: center; }
.about-img-main i { font-size: 150px; color: var(--primary-orange); filter: drop-shadow(0 10px 30px rgba(255, 107, 0, 0.3)); }
.about-badge { position: absolute; bottom: 0; right: 0; background: var(--gradient-fire); padding: 25px 35px; border-radius: 20px; text-align: center; z-index: 2; box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4); }
.about-badge-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: white; line-height: 1; }
.about-badge-text { font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 600; }

/* WHY US */
.why-section { padding: 100px 0; background: linear-gradient(180deg, rgba(255, 107, 0, 0.05) 0%, transparent 100%); }
.why-card { text-align: center; padding: 40px 30px; transition: all 0.4s ease; background: var(--gradient-glass); border: 1px solid rgba(255,107,0,0.1); border-radius: 25px; height: 100%; }
.why-card:hover { transform: translateY(-10px); border-color: var(--primary-orange); }
.why-icon { width: 100px; height: 100px; background: var(--gradient-glass); border: 2px solid var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; transition: all 0.4s ease; }
.why-card:hover .why-icon { background: var(--gradient-fire); transform: scale(1.1); }
.why-icon i { font-size: 2.5rem; color: var(--primary-orange); transition: all 0.4s ease; }
.why-card:hover .why-icon i { color: white; }
.why-title { font-size: 1.5rem; margin-bottom: 15px; }
.why-desc { color: var(--text-muted); line-height: 1.7; }
.comparison-section { margin-top: 60px; padding: 40px; background: var(--gradient-glass); border: 1px solid rgba(255,107,0,0.2); border-radius: 30px; }
.comparison-title { text-align: center; font-size: 1.8rem; margin-bottom: 30px; display: flex; align-items: center; justify-content: center; gap: 15px; }
.comparison-title i { color: var(--primary-orange); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.comparison-item { padding: 30px; border-radius: 20px; }
.comparison-item.ours { background: rgba(37, 211, 102, 0.1); border: 2px solid #25D366; }
.comparison-item.others { background: rgba(255, 49, 49, 0.1); border: 2px solid rgba(255, 49, 49, 0.3); }
.comparison-header { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; text-align: center; margin-bottom: 20px; letter-spacing: 2px; }
.comparison-item ul { list-style: none; padding: 0; margin: 0; }
.comparison-item li { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.comparison-item li:last-child { border-bottom: none; }
.comparison-item.ours li i { color: #25D366; }
.comparison-item.others li i { color: #FF3131; }

/* CTA */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.cta-wrapper { background: var(--gradient-fire); border-radius: 40px; padding: 80px 60px; position: relative; overflow: hidden; }
.cta-wrapper::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%); animation: ctaPulse 4s ease-in-out infinite; }
@keyframes ctaPulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0.5; } }
.cta-title { font-size: 3.5rem; color: white; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-text { color: rgba(255,255,255,0.9); font-size: 1.2rem; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-phone { display: inline-flex; align-items: center; gap: 15px; background: white; color: var(--primary-orange); padding: 20px 40px; border-radius: 50px; font-size: 1.5rem; font-weight: 700; text-decoration: none; transition: all 0.4s ease; position: relative; z-index: 1; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.cta-phone:hover { transform: scale(1.05); color: var(--primary-orange-dark); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.cta-phone i { font-size: 2rem; }

/* PROCESS */
.process-section { padding: 100px 0; }
.process-step { text-align: center; position: relative; padding: 0 15px; }
.process-step::after { content: ''; position: absolute; top: 50px; right: -50%; width: 100%; height: 3px; background: linear-gradient(90deg, var(--primary-orange), transparent); z-index: 0; }
.process-step:last-child::after { display: none; }
.process-number { width: 100px; height: 100px; background: var(--gradient-fire); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; position: relative; z-index: 1; box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4); }
.process-number span { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: white; }
.process-title { font-size: 1.5rem; margin-bottom: 15px; }
.process-desc { color: var(--text-muted); line-height: 1.7; }

/* EMERGENCY BANNER */
.emergency-banner { margin-top: 60px; padding: 30px 40px; background: linear-gradient(135deg, #FF3131 0%, #FF6B00 100%); border-radius: 25px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; animation: emergencyPulse 2s ease-in-out infinite; }
@keyframes emergencyPulse { 0%, 100% { box-shadow: 0 10px 40px rgba(255, 49, 49, 0.4); } 50% { box-shadow: 0 10px 60px rgba(255, 49, 49, 0.6); } }
.emergency-icon { width: 70px; height: 70px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.emergency-icon i { font-size: 2rem; color: white; animation: emergencyShake 0.5s ease-in-out infinite; }
@keyframes emergencyShake { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-10deg); } 75% { transform: rotate(10deg); } }
.emergency-content { flex: 1; }
.emergency-content h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: white; margin-bottom: 5px; letter-spacing: 1px; }
.emergency-content p { color: rgba(255,255,255,0.9); margin: 0; }
.emergency-btn { background: white; color: #FF3131; padding: 15px 35px; border-radius: 50px; font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; font-size: 1.1rem; transition: all 0.3s ease; flex-shrink: 0; }
.emergency-btn:hover { transform: scale(1.05); color: #FF3131; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* TESTIMONIALS */
.testimonials-section { padding: 100px 0; background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.05) 50%, transparent 100%); }
.review-summary { display: flex; justify-content: center; gap: 60px; margin-bottom: 50px; flex-wrap: wrap; }
.review-summary-item { text-align: center; }
.big-rating, .big-number { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: var(--primary-orange); line-height: 1; }
.rating-stars { margin: 10px 0; }
.rating-stars i { color: var(--accent-yellow); font-size: 1.2rem; }
.rating-text { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.testimonial-card { background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.2); border-radius: 30px; padding: 40px; height: 100%; transition: all 0.4s ease; }
.testimonial-card:hover { border-color: var(--primary-orange); transform: translateY(-10px); }
.testimonial-stars { margin-bottom: 20px; }
.testimonial-stars i { color: var(--accent-yellow); font-size: 1.2rem; }
.testimonial-text { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 25px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar { width: 50px; height: 50px; background: var(--gradient-fire); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.testimonial-avatar i { font-size: 1.5rem; color: white; }
.testimonial-name { font-weight: 700; margin-bottom: 3px; }
.testimonial-location { color: var(--text-muted); font-size: 0.85rem; display: flex; align-items: center; gap: 5px; }
.verified-badge { margin-left: auto; color: #25D366; font-size: 1.5rem; }

/* CONTACT */
.contact-section { padding: 100px 0; }
.contact-info-card { background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.2); border-radius: 30px; padding: 50px 40px; height: 100%; }
.contact-info-title { font-size: 2rem; margin-bottom: 30px; }
.contact-info-title span { color: var(--primary-orange); }
.contact-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; padding: 20px; background: rgba(255, 107, 0, 0.05); border-radius: 15px; transition: all 0.3s ease; }
.contact-item:hover { background: rgba(255, 107, 0, 0.1); transform: translateX(10px); }
.contact-item-icon { width: 60px; height: 60px; background: var(--gradient-fire); border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon i { font-size: 1.5rem; color: white; }
.contact-item-content h4 { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-item-content p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.contact-item-content a { color: var(--primary-orange); text-decoration: none; font-weight: 600; font-size: 1.2rem; transition: color 0.3s ease; }
.contact-item-content a:hover { color: var(--accent-yellow); }
.contact-form-card { background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.2); border-radius: 30px; padding: 50px 40px; }
.contact-form-title { font-size: 2rem; margin-bottom: 30px; }
.contact-form-title span { color: var(--primary-orange); }
.form-floating { margin-bottom: 20px; }
.form-floating .form-control, .form-floating .form-select { background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(255, 107, 0, 0.2); border-radius: 15px; color: white; padding: 20px; height: auto; font-size: 1rem; }
.form-floating .form-control:focus, .form-floating .form-select:focus { background: rgba(255, 255, 255, 0.08); border-color: var(--primary-orange); box-shadow: 0 0 20px rgba(255, 107, 0, 0.2); }
.form-floating label { color: var(--text-muted); padding: 20px; }
.form-floating .form-control:focus ~ label, .form-floating .form-control:not(:placeholder-shown) ~ label { color: var(--primary-orange); }
.form-floating textarea.form-control { min-height: 150px; }
.form-select option { background: var(--secondary-dark); color: white; }
.btn-submit { width: 100%; background: var(--gradient-fire); color: white; font-weight: 700; padding: 18px 40px; border-radius: 15px; border: none; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.4s ease; }
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4); }

/* FOOTER */
.footer { background: linear-gradient(180deg, var(--secondary-blue) 0%, #0D1321 100%); padding: 80px 0 30px; border-top: 1px solid rgba(255, 107, 0, 0.2); }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: white; letter-spacing: 3px; margin-bottom: 20px; }
.footer-brand span { color: var(--primary-orange); }
.footer-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 50px; height: 50px; background: var(--gradient-glass); border: 1px solid rgba(255, 107, 0, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--gradient-fire); border-color: var(--primary-orange); transform: translateY(-5px); }
.footer-title { font-size: 1.3rem; margin-bottom: 25px; color: white; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 6px; height: 6px; background: var(--primary-orange); border-radius: 50%; opacity: 0; transition: opacity 0.3s ease; }
.footer-links a:hover { color: var(--primary-orange); padding-left: 10px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.footer-contact-item i { color: var(--primary-orange); font-size: 1.2rem; margin-top: 3px; }
.footer-contact-item p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.footer-contact-item a:hover { color: var(--primary-orange); }
.footer-bottom { border-top: 1px solid rgba(255, 107, 0, 0.1); padding-top: 30px; margin-top: 50px; }
.footer-bottom p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }
.footer-bottom a { color: var(--primary-orange); text-decoration: none; }

/* SCROLL TOP BUTTON */
.scroll-top { position: fixed; bottom: 100px; right: 30px; width: 50px; height: 50px; background: var(--gradient-glass); border: 1px solid var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-orange); font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.4s ease; z-index: 999; }
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gradient-fire); color: white; transform: translateY(-5px); }

/* --- MEDYA SORGULARI VE MOBİL DÜZENLEMELER --- */

@media (max-width: 991.98px) { 
    .hero-title { font-size: 2.8rem; } 
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } 
    .stat-box .stat-number { font-size: 2.2rem; } 
    .section-title { font-size: 2.5rem; } 
    .cta-title { font-size: 2.5rem; } 
    .process-step::after { display: none; } 
    .hero-brands { margin-top: 40px; } 
}

@media (max-width: 767.98px) {
    /* Genel Mobil Ayarları */
    .hero-title { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hero-features { gap: 10px; }
    .hero-feature-item { font-size: 0.8rem; padding: 6px 12px; }
    .hero-stats-card { margin-top: 40px; }
    .stat-box { padding: 20px 15px; }
    .stat-box .stat-number { font-size: 2rem; }
    .about-content { padding-right: 0; margin-bottom: 50px; }
    .cta-wrapper { padding: 50px 30px; }
    .hero-trust { flex-direction: column; gap: 15px; align-items: flex-start; }
    .brands-list span { padding: 6px 14px; font-size: 0.8rem; }
    .service-card { padding: 30px 25px; }
    .section-title { font-size: 2rem; }
    .service-title { font-size: 1.4rem; }
    .why-card { padding: 25px 15px; }
    .why-icon { width: 70px; height: 70px; }
    .why-icon i { font-size: 1.8rem; }
    .testimonial-card { padding: 25px; }
    .contact-info-card, .contact-form-card { padding: 30px 25px; }

    /* Karşılaştırma Tablosu Mobili */
    .comparison-section { padding: 25px 20px; margin-top: 40px; }
    .comparison-title { font-size: 1.2rem; }
    .comparison-grid { grid-template-columns: 1fr; gap: 20px; }
    .comparison-item { padding: 20px; }
    .comparison-header { font-size: 1.2rem; }
    .comparison-item li { font-size: 0.85rem; padding: 8px 0; }
    .advantage-item { min-width: calc(50% - 10px); flex: none; }
    .advantage-icon { width: 45px; height: 45px; }
    .advantage-icon i { font-size: 1.3rem; }

    /* --- ÖNEMLİ: MOBİL BUTON DÜZENLEMELERİ --- */
    
    /* Telefon Butonu (SAĞ ALT) */
    .phone-float {
        bottom: 20px;
        right: 20px;
        left: auto; /* Çakışmayı önlemek için */
        padding: 0;
        width: 55px;
        height: 55px;
        justify-content: center;
        border-radius: 50%;
    }
    .phone-float span { display: none; } /* Yazıyı gizle */
    .phone-float i { font-size: 1.5rem; animation: none; margin: 0; }

    /* WhatsApp Butonu (SOL ALT - Çakışmayı önlemek için) */
    .whatsapp-float {
        bottom: 20px;
        left: 20px; /* Sola aldık */
        right: auto;
        padding: 0;
        width: 55px;
        height: 55px;
        justify-content: center;
        border-radius: 50%;
    }
    .whatsapp-float span { display: none; }
    .whatsapp-float i { font-size: 1.6rem; margin: 0; }

    /* Yukarı Çık Butonu (Konumunu ayarladık) */
    .scroll-top {
        bottom: 90px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* --- 1. MASAÜSTÜ MENÜ KÜÇÜLTME --- */
@media (min-width: 992px) {
    /* Menü genel yüksekliği */
    .navbar {
        padding: 8px 0 !important; /* Daha ince bir şerit */
    }
    
    /* Scroll yapınca daha da küçülsün */
    .navbar.scrolled {
        padding: 5px 0 !important;
    }

    /* Logo Yazı Boyutu */
    .navbar-brand {
        font-size: 1.6rem !important; /* 2rem'den düşürüldü */
    }

    /* Menü Linkleri */
    .nav-link {
        font-size: 0.9rem !important; /* Yazı boyutu küçüldü */
        padding: 8px 12px !important; /* Aralarındaki boşluk azaldı */
    }

    /* Menüdeki "Hemen Ara" Butonu */
    .navbar .btn-fire {
        padding: 10px 25px !important; /* Buton içi boşluk azaldı */
        font-size: 0.9rem !important;
    }
}

/* --- 2. MOBİL HERO BUTONLARI KÜÇÜLTME --- */
@media (max-width: 767.98px) {
    /* Anasayfa üstteki Ara ve WP butonları */
    .hero-buttons .btn {
        padding: 12px 15px !important; /* Dolgu azaltıldı (Eskisi 18px idi) */
        font-size: 0.95rem !important; /* Yazı boyutu küçüldü */
        width: 100%; /* Tam genişlik (yan yana sığmıyorsa alt alta daha şık durur) */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Butonların arasındaki boşluğu da biraz kısalım */
    .hero-buttons {
        gap: 10px !important; 
    }
}