/* ===== style.css - AlfaSoft ئالدى يۈز ئۇسلۇبى ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #f4f7f9;
    color: #333;
    line-height: 1.7;
    transition: all 0.3s ease;
    scroll-behavior: smooth;
    font-family: alkatip;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* تېپ بار */
.top-bar { background: #1a2a3a; padding: 10px 0; color: #fff; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.lang-switch a { color: #bbb; text-decoration: none; margin: 0 5px; transition: color .3s; }
.lang-switch a.active, .lang-switch a:hover { color: #3498db; }
.admin-link { color: #e74c3c; text-decoration: none; background: rgba(255,255,255,.1); padding: 4px 10px; border-radius: 4px; }

/* تېگى يۈزى (Hero) */
.hero {
    background: linear-gradient(135deg, rgba(52,152,219,.85), rgba(26,42,58,.85)),
                url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1950&q=80') no-repeat center/cover;
    height: 80vh; min-height: 500px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
}
.hero-content { padding: 20px; animation: fadeUp 1s ease; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3.5rem); margin-bottom: 15px; text-shadow: 2px 2px 6px rgba(0,0,0,.4); }
.slogan { font-size: clamp(1rem, 2vw, 1.5rem); margin-bottom: 25px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* كۇنۇپكا */
.btn {
    display: inline-block; padding: 14px 32px;
    background: #3498db; color: #fff; text-decoration: none;
    border-radius: 50px; font-size: 1.05rem; font-weight: bold;
    transition: all .35s ease; border: 2px solid transparent;
}
.btn:hover { background: transparent; border-color: #fff; transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.25); }

/* بۆلەكلەر */
.section { padding: 70px 0; }
.bg-light { background: #eef3f7; }
.section-title { font-size: 2rem; color: #1a2a3a; margin-bottom: 35px; text-align: center; position: relative; }
.section-title::after { content:''; width: 60px; height: 3px; background: #3498db; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); }
.section-text { text-align: center; max-width: 800px; margin: 0 auto; font-size: 1.1rem; }

/* كارتا (Cards) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-top: 30px; }
.card {
    background: #fff; border-radius: 14px; padding: 30px 20px; text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.06); transition: all .35s ease; cursor: pointer;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 18px 36px rgba(52,152,219,.2); }
.card-icon { font-size: 3rem; margin-bottom: 12px; }
.card-img { height: 150px; background: linear-gradient(135deg,#3498db,#2c3e50); border-radius: 10px; margin-bottom: 12px; }
.avatar { width: 100px; height: 100px; border-radius: 50%; background: #3498db; margin: 0 auto 12px; }

/* ئالاقە */
.contact-info { max-width: 600px; margin: 0 auto; text-align: center; font-size: 1.15rem; }
.contact-info p { margin: 10px 0; transition: transform .3s; }
.contact-info p:hover { transform: scale(1.04); color: #3498db; }

footer { background: #1a2a3a; color: #fff; text-align: center; padding: 25px 0; }

/* RTL (ئۇيغۇرچە) تەپسىلاتلىرى */
body.ug .section-title::after { left: auto; right: 50%; transform: translateX(50%); }

/* تېلېفونغا ماسلىشىش */
@media (max-width: 768px) {
    .hero { height: 60vh; min-height: 400px; }
    .section { padding: 45px 0; }
    .cards { grid-template-columns: 1fr; }
    .top-bar .container { flex-direction: column; gap: 8px; }
}
