/* BNM CRM Frontend Global Stylesheet */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header (Glassmorphic Top Nav) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    gap: 10px;
}

.logo i {
    font-size: 2.5rem;
    color: #4da6ff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary-gradient);
    transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.contact-btn {
    background: var(--primary-gradient);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.35);
    transform: translateY(-2px);
}

/* Mobile Toggle Menu */
.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    text-align: center;
    position: relative;
}

.close-mobile-menu {
    position: absolute;
    top: -80px;
    right: 50%;
    transform: translateX(50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Main Content Wrapper */
main {
    flex: 1;
    padding: 120px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Page titles */
.page-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Haqqımızda & Hero section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    position: relative;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.circle-1 { top: 5%; left: -10%; width: 350px; height: 350px; background: rgba(77, 166, 255, 0.2); }
.circle-2 { bottom: 5%; right: -5%; width: 400px; height: 400px; background: rgba(0, 51, 102, 0.1); }

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item h3 { font-size: 2rem; font-weight: 800; color: var(--primary-color); }
.stat-item p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }

.hero-vector {
    flex: 1;
    text-align: right;
}

.hero-vector img {
    width: 100%;
    max-width: 550px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.05));
}

/* public courses grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.course-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
    border-color: rgba(77, 166, 255, 0.4);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--primary-color);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.course-card:hover .course-icon {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.08) rotate(3deg);
}

.course-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--primary-color); font-weight: 700; }
.course-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.9rem; }
.course-price { font-weight: 700; color: var(--success-color); font-size: 1.1rem; margin-top: 15px; display: block; }

/* Trainers (staff) Grid */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.trainer-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
}

.trainer-img-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f1f5f9;
}

.trainer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition: 0.5s ease;
}

.trainer-card:hover .trainer-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.trainer-card h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 4px; font-weight: 700; }
.trainer-card p { color: var(--text-muted); font-weight: 500; margin-bottom: 15px; font-size: 14px;}

.social-links { display: flex; justify-content: center; gap: 10px; }
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
}
.social-links a:hover {
    background: var(--primary-gradient);
    color: #fff;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    user-select: none;
}

.faq-question i {
    font-size: 18px;
    transition: 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 300px;
}

/* Forms & Panels styling */
.form-container {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    max-width: 700px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    outline: none;
    background: #fafafa;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
}

/* Student / Teacher Portal Cabin Styles */
.login-wrapper {
    max-width: 420px;
    width: 100%;
    margin: 40px auto;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.06);
    text-align: center;
}

.role-selector {
    display: flex;
    background: var(--secondary-color);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 25px;
}

.role-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text-muted);
    border: none;
    background: transparent;
}

.role-btn.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-submit {
    width: 100%;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

/* Upcoming class widget for student cabin */
.upcoming-class-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.class-info { display: flex; gap: 20px; align-items: center;}
.class-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Mobil Alt Menyu */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.mobile-nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    gap: 4px;
}

.mobile-nav a i {
    font-size: 20px;
}

.mobile-nav a.active {
    color: var(--primary-color);
}

/* Footer style */
footer {
    background-color: transparent;
    color: var(--text-muted);
    padding: 25px;
    text-align: center;
    margin-top: auto;
    font-size: 13px;
    border-top: 1px solid var(--border-color);
}

/* media gallery */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.media-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    transition: 0.3s;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.media-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.media-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.media-card:hover .media-card-img img {
    transform: scale(1.05);
}

.media-card-content {
    padding: 20px;
}

.media-card-content h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.media-card-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Livechat Styles */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    height: 60vh;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.chat-header {
    background: var(--primary-gradient);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8fafc;
}

.chat-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.5;
}

.chat-bubble.incoming {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color);
}

.chat-bubble.outgoing {
    background: var(--primary-color);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    background: #fff;
}

.chat-input-area input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.chat-input-area button {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsiveness */
@media (max-width: 992px) {
    header { padding: 15px 25px; }
    .about-section { flex-direction: column; gap: 40px; }
    .hero-text { padding-right: 0; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-vector { text-align: center; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    main { padding: 90px 20px 80px 20px; }
    .mobile-nav { display: block; }
    .form-grid { grid-template-columns: 1fr; }
}

/* Mockup Section Aesthetics (about, courses, trainers, partners, contact) */
#about, #courses, #trainers, #partners, #contact {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

#about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 100px 50px;
    padding-top: 150px;
    position: relative;
}

#about .bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}
#about .circle-1 { top: 10%; left: -10%; width: 400px; height: 400px; background: rgba(77, 166, 255, 0.3); }
#about .circle-2 { bottom: 10%; right: -5%; width: 500px; height: 500px; background: rgba(0, 51, 102, 0.15); }

#about .hero-text {
    flex: 1;
    padding-right: 50px;
    animation: slideInLeft 1s ease;
}

#about .hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

#about .hero-text h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#about .hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

#about .hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

#about .stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--primary-color); }
#about .stat-item p { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px;}

#about .hero-vector {
    flex: 1;
    text-align: right;
    animation: slideInRight 1s ease;
}

#about .hero-vector img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.05));
}

/* Yenilənmiş Kurslarımız */
#courses {
    background: rgba(255,255,255,0.4);
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 100px;
    padding: 80px 50px;
}

#courses .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

#courses .course-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#courses .course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
}

#courses .course-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
    border-color: rgba(77, 166, 255, 0.4);
}

#courses .course-card:hover::before { opacity: 1; }

#courses .course-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    color: var(--primary-color);
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    transition: 0.4s;
}

#courses .course-card:hover .course-icon {
    background: var(--primary-gradient);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

#courses .course-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary-color); font-weight: 700; }
#courses .course-card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* Təlimçilərimiz */
#trainers {
    padding: 100px 50px;
    margin-bottom: 80px;
}

#trainers .trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

#trainers .trainer-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

#trainers .trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

#trainers .trainer-img-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background: #f0f0f0;
}

#trainers .trainer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

#trainers .trainer-card:hover .trainer-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

#trainers .trainer-card h3 { font-size: 1.4rem; color: var(--primary-color); margin-bottom: 5px; font-weight: 700; }
#trainers .trainer-card p { color: var(--text-muted); font-weight: 500; margin-bottom: 20px; font-size: 15px;}

#trainers .social-links { display: flex; justify-content: center; gap: 12px; }
#trainers .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 20px;
    transition: 0.3s;
}
#trainers .social-links a:hover { background: var(--primary-gradient); color: #fff; transform: translateY(-3px);}

/* Korporativ Əməkdaşlıqlar */
#partners {
    background: #001a33;
    border-radius: 40px;
    padding: 80px 50px;
    margin-bottom: 100px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#partners::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(77, 166, 255, 0.15) 0%, transparent 50%);
}

#partners .section-title { color: #fff; margin-bottom: 20px;}
#partners .section-title::after { background: #4da6ff; }

.partners-desc {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.partner-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(77, 166, 255, 0.3);
}

.partner-icon {
    font-size: 45px;
    color: #4da6ff;
    margin-bottom: 15px;
}

.partner-item h4 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.partner-item p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* Ünvan və Əlaqə */
#contact {
    background: var(--primary-gradient);
    border-radius: 40px;
    color: #fff;
    margin-bottom: 50px;
    padding: 80px 50px;
}

#contact .section-title { color: #fff; }
#contact .section-title::after { background: #fff; }

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    padding: 50px;
}

.contact-info { flex: 1; }
.contact-form { flex: 1; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 30px;
    color: #4da6ff;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
}

.info-item h4 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 600; }
.info-item p { color: rgba(255,255,255,0.8); line-height: 1.6; }

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    box-shadow: 0 0 0 4px rgba(77, 166, 255, 0.3);
    background: #fff;
}

#contact .submit-btn {
    background: #fff;
    color: var(--primary-color);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
#contact .submit-btn:hover { background: #4da6ff; color: #fff; }

/* Animasiyalar */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

/* Responsivlik */
@media (max-width: 992px) {
    #about { flex-direction: column; text-align: center; padding-top: 120px; }
    #about .hero-text { padding-right: 0; margin-bottom: 50px; }
    #about .hero-stats { justify-content: center; }
    #about .hero-text h1 { font-size: 2.8rem; }
    .contact-wrapper { flex-direction: column; padding: 30px; }
    
    header .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 40px 0;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    header .nav-menu.active { left: 0; }
    header .mobile-toggle { display: block; }
    header { padding: 15px 30px; }
    section, #courses, #partners, #contact { padding: 60px 20px; border-radius: 20px;}
}
