/* ==========================================
   GLOBAL STYLES - TEMEL RESET & CONTAINER
   ========================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    padding-top: 80px; /* Reserve space for fixed header */
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HERO BADGE - Ortak Hero Badge Stilleri
   ========================================== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: #ffc107;
    font-size: 1rem;
}

/* ==========================================
   PAGE HEADER - Ortak Sayfa Header Stilleri
   ========================================== */
.page-header {
    background: none;
    padding: 0;
    position: relative;
    overflow: visible;
}

.page-header::before {
    content: none;
}

/* ==========================================
   COMPACT HERO - Ortak Hero Stilleri (background hariç)
   ========================================== */
.compact-hero {
    color: white;
    text-align: center;
    padding: 4.5rem 0 3.5rem 0;
    border-radius: 0;
    box-shadow: none;
    width: 100vw;
    min-height: 420px;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.compact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.compact-hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: white;
    opacity: 0.95;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ==========================================
   QUICK STATS - Ortak İstatistik Badge'leri
   ========================================== */
.quick-stats,
.cars-quick-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.stat-item,
.quick-stat {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    min-width: 140px;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.18);
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(15px);
    color: white;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.stat-item i,
.quick-stat i {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.stat-item .stat-label,
.quick-stat .stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-left: 0.2rem;
}

/* ==========================================
   SECTION - Ortak Section Stilleri
   ========================================== */
.section {
    padding: 4rem 0;
}

.section-gray {
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ==========================================
   BUTTONS - Ortak Buton Stilleri
   ========================================== */
.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    height: 58px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-lg.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-lg.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-lg.btn-call {
    background: linear-gradient(135deg, #c8102e 0%, #c8102e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-lg.btn-call:hover {
    background: linear-gradient(135deg, #c8102e 0%, #c8102e 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    color: white;
    text-decoration: none;
}

/* ==========================================
   CTA SECTION - Ortak Call-to-Action Stilleri
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem 0;
}

.cta-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.cta-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 300px;
    max-width: 400px;
}

/* ==========================================
   RESPONSIVE - Ortak Mobil Stilleri
   ========================================== */
@media (max-width: 992px) {
    .compact-hero {
        min-height: 380px;
        padding: 3rem 0 2.5rem 0;
    }

    .compact-hero h1 {
        font-size: 2rem;
    }

    .compact-hero p {
        font-size: 1rem;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-actions {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .quick-stats,
    .cars-quick-stats {
        gap: 2rem;
        padding: 0 1rem;
    }

    .stat-item .stat-label,
    .quick-stat .stat-label {
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .quick-stats,
    .cars-quick-stats {
        gap: 1rem;
    }

    .stat-item,
    .quick-stat {
        min-width: 100px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .stat-item i,
    .quick-stat i {
        font-size: 1rem;
    }

    .stat-item .stat-label,
    .quick-stat .stat-label {
        font-size: 0.85rem;
    }

    .compact-hero {
        min-height: 280px;
        padding: 2.2rem 0 1.5rem 0;
    }

    .compact-hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}
