/* style.css - Premium Modern Versiya */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --p: #1e3a8a;
    --a: #ff5722;
    --bg: #f4f7fa;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--bg); 
    color: #333; 
    line-height: 1.6; 
}

/* Hero Banner */
.hero-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 80px 20px; border-radius: 0 0 40px 40px; text-align: center; color: white;
    box-shadow: 0 15px 30px rgba(30,58,138,0.2); margin-bottom: 40px;
}

/* Slayder və Kartlar */
.slider-wrapper { max-width: 1300px; margin: 60px auto; padding: 0 20px; position: relative; }
.slider-container { display: flex; gap: 25px; overflow-x: auto; scroll-behavior: smooth; padding: 20px 10px; scrollbar-width: none; }
.slider-container::-webkit-scrollbar { display: none; }

.card {
    min-width: 310px; background: var(--white); border-radius: 30px; overflow: hidden;
    box-shadow: var(--shadow); transition: 0.4s; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.02);
}
.card:hover { transform: translateY(-10px); }

.img-box { height: 200px; position: relative; overflow: hidden; background: #eee; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }

.price-tag {
    position: absolute; top: 15px; right: 15px; background: rgba(255, 87, 34, 0.9);
    backdrop-filter: blur(5px); color: white; padding: 7px 15px; border-radius: 12px; font-weight: 800;
}

/* Info Section */
.info-section { max-width: 1200px; margin: 60px auto; padding: 0 20px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.info-card { background: var(--white); padding: 40px; border-radius: 30px; box-shadow: var(--shadow); border-top: 8px solid var(--p); }
.info-card h3 { color: var(--p); font-size: 22px; margin-bottom: 15px; font-weight: 800; }
.info-card ul { padding-left: 20px; margin-top: 15px; }
.info-card ul li { margin-bottom: 10px; color: #64748b; font-size: 14px; }

/* STATİSTİKA - Sıxlığı həll edən hissə */
.stats-container {
    background: #ffffff;
    padding: 100px 20px;
    margin-top: 80px;
    border-radius: 60px 60px 0 0;
    text-align: center;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.03);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 50px auto 0;
}

.stat-item {
    flex: 1;
    min-width: 280px;
    background: #f8faff;
    padding: 60px 30px;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.stat-item h2 { 
    color: var(--a); 
    font-size: 55px; 
    margin: 0; 
    font-weight: 900;
    line-height: 1;
}

.stat-item p { 
    color: var(--p); 
    font-size: 14px; 
    font-weight: 800; 
    margin-top: 20px; /* Aradakı boşluğu artırdıq */
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .stat-item { min-width: 100%; margin-bottom: 20px; }
    .hero-box { border-radius: 0; }
    .card { min-width: 270px; }
}
/* Əlaqə Bölməsi */
.contact-section { max-width: 1200px; margin: 80px auto; padding: 0 20px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card i { font-size: 35px; color: var(--a); margin-bottom: 15px; display: block; }
.contact-card h3 { color: var(--p); margin-bottom: 10px; font-weight: 800; }
.contact-card p { color: var(--text); font-size: 15px; text-decoration: none; }
.contact-link { color: var(--text); text-decoration: none; transition: 0.2s; }
.contact-link:hover { color: var(--a); }

/* WhatsApp Düyməsi */
.wa-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    z-index: 1000; text-decoration: none;
}
/* Əlaqə Səhifəsi Üçün Xüsusi Stillər */
.contact-wrapper { max-width: 1100px; margin: 60px auto; padding: 0 20px; }
.contact-header { text-align: center; margin-bottom: 50px; }
.contact-header h1 { color: var(--p); font-weight: 800; font-size: 32px; }

.contact-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.contact-item { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 30px; 
    text-align: center; 
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.contact-item:hover { transform: translateY(-10px); }
.contact-item .icon { font-size: 45px; margin-bottom: 20px; display: block; }
.contact-item h3 { color: var(--p); font-size: 22px; margin-bottom: 15px; }
.contact-item p, .contact-item a { color: var(--text); text-decoration: none; font-size: 16px; font-weight: 600; }

/* WhatsApp Floating Button */
.wa-btn {
    position: fixed; bottom: 30px; right: 30px; 
    background: #25d366; color: white; 
    width: 60px; height: 60px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    box-shadow: 0 10px 25px rgba(37,211,102,0.3); z-index: 9999; text-decoration: none;
}
/* Header Ölçü və Boşluq Tənzimləmələri */
header {
    background: rgba(30, 58, 138, 0.95); /* Sənin orijinal tünd göy rəngin */
    backdrop-filter: blur(10px);
    padding: 22px 0; /* Hündürlüyü artırdıq ki, cansız görünməsin */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.header-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 28px; /* Loqonu bir az böyütdük */
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

nav { display: flex; align-items: center; gap: 35px; } /* Linklərin arasını açdıq */

nav a { 
    color: rgba(255,255,255,0.85); 
    text-decoration: none; 
    font-size: 16px; /* Şrifti bir az böyütdük */
    font-weight: 700; 
    transition: 0.3s ease;
}

nav a:hover { 
    color: #fff; 
    transform: translateY(-2px); /* Hover edəndə yüngül qalxma effekti */
}

/* Düymələrin daha dolğun görünməsi */
.btn-nav {
    padding: 12px 24px; /* Düymələri böyütdük */
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-p { 
    background: #fff; 
    color: #1e3a8a; 
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.btn-p:hover { 
    transform: scale(1.05); /* Düymə böyümə effekti */
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Mobil tənzimləmə */
@media (max-width: 850px) {
    header { padding: 15px 0; }
    nav { gap: 15px; }
    .logo a { font-size: 22px; }
}

