/* GLOBAL AYARLAR */
:root {
    --primary: #007bff;
    --primary-light: #00d4ff;
    --dark: #1a1a1a;
    --gray: #666;
    --light-bg: #f8fbff;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER TASARIMI */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sol Taraf: Marka */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo-img { height: 50px; width: auto; object-fit: contain; }

.brand-text-group { display: flex; flex-direction: column; }

/* Pacifico El Yazısı */
.handwriting-title {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    font-weight: 400;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    line-height: 1.2;
    margin: 0;
}

@keyframes shine { to { background-position: 200% center; } }

.legal-title {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sağ Taraf: İletişim */
.header-right { display: flex; align-items: center; gap: 30px; }
.contact-quick { display: flex; gap: 20px; font-size: 13px; font-weight: 600; }
.contact-item { display: flex; align-items: center; gap: 8px; }
.contact-icon { color: var(--primary); font-size: 18px; }

.btn-header {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}
.btn-header:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,123,255,0.4); }

/* HERO BÖLÜMÜ */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p { font-size: 18px; color: var(--gray); margin-bottom: 30px; }

.hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; }

.btn-primary {
    padding: 14px 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover { background: #0056b3; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,123,255,0.2); }

.btn-secondary {
    padding: 14px 30px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--light-bg); transform: translateY(-2px); }

/* İstatistikler */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-number { font-size: 32px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 600; }

/* Hızlı Form */
.quick-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #eef2f6;
    animation: fadeInRight 1s ease;
}
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.quick-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.quick-form h3 i { color: #f1c40f; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select {
    width: 100%; padding: 12px; border: 2px solid #eef2f6; border-radius: 10px;
    font-size: 14px; transition: 0.3s; background: var(--light-bg);
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--primary); outline: none; background: white;
}

/* HİZMETLER & HAREKETLİ INFO BOX'LAR */
.services { padding: 100px 40px; background: white; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 36px; font-weight: 900; margin-bottom: 10px; color: var(--dark); }
.section-subtitle { font-size: 18px; color: var(--gray); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hover Efekti: Yukarı Kalkma */
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.15);
    border-color: var(--primary-light);
}

/* İkon Kutusu */
.service-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f4ff 0%, #f0f7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

/* Hover Efekti: İkon Dönme */
.service-card:hover .service-icon-box {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ADRES & HARİTA */
.address-section { padding: 80px 40px; background: #f9f9f9; border-top: 1px solid #eee; }
.address-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.address-content h2 { font-size: 36px; font-weight: 900; margin-bottom: 10px; }
.address-content h3 { font-size: 20px; color: var(--primary); margin-bottom: 30px; font-weight: 700; }

.address-item {
    display: flex; gap: 15px; margin-bottom: 20px; padding: 20px; background: white;
    border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s;
}
.address-item:hover { transform: translateX(5px); box-shadow: 0 5px 20px rgba(0,123,255,0.1); }

.address-icon {
    font-size: 20px; background: var(--light-bg); width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--primary);
}
.address-label { font-size: 12px; font-weight: 700; color: var(--gray); text-transform: uppercase; }
.address-text { font-weight: 600; color: var(--dark); }

.map-container {
    height: 400px; border-radius: 20px; overflow: hidden; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* YENİ POPUP STİLİ (SADE & MODERN) */
.overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(5px); z-index: 9998;
}

.success-popup {
    display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: white; padding: 40px; border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2); z-index: 9999;
    text-align: center; min-width: 320px; border: 1px solid #eee;
}

.success-icon { font-size: 40px; color: #25D366; margin-bottom: 15px; }

.loader-spinner {
    border: 4px solid #f3f3f3; border-top: 4px solid var(--primary); border-radius: 50%;
    width: 30px; height: 30px; animation: spin 1s linear infinite; margin: 0 auto 15px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* FOOTER */
footer { text-align: center; padding: 40px; background: #fff; border-top: 1px solid #eee; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container, .address-container { grid-template-columns: 1fr; }
    .header-container { flex-direction: column; gap: 15px; padding: 15px; }
    .header-right { display: none; }
    .brand-wrapper { justify-content: center; }
    .hero-content h2 { font-size: 36px; text-align: center; }
    .hero-content p { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-number { font-size: 24px; }
    .stat-label { font-size: 11px; }
}