/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0b0f1a;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ===== MAIN CARD / CONTAINER ===== */
.container {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(145deg, #111827, #1a2332);
    border-radius: 40px;
    padding: 50px 60px 30px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 600px;
}

/* ===== LIVE BACKGROUND ===== */
.live-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: url('background.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    animation: floatBG 20s ease-in-out infinite alternate;
    transform: scale(1.05);
}

@keyframes floatBG {
    0% { transform: scale(1.05) translate(0, 0); }
    25% { transform: scale(1.08) translate(-10px, -10px); }
    50% { transform: scale(1.1) translate(10px, 5px); }
    75% { transform: scale(1.07) translate(-5px, 15px); }
    100% { transform: scale(1.05) translate(0, 0); }
}

.live-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(11, 15, 26, 0.5), rgba(11, 15, 26, 0.85));
    pointer-events: none;
}

/* ===== LOADING SCREEN ===== */
.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid rgba(26, 35, 56, 0.3);
    border-top: 6px solid #1a3a6b;
    border-right: 6px solid #2a5a9b;
    border-bottom: 6px solid #1a3a6b;
    animation: spin 1.2s cubic-bezier(0.6, 0, 0.4, 1) infinite;
    position: relative;
}

.loader-ring::after {
    content: "●";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #3a7acf;
    animation: pulseDot 1.2s ease-in-out infinite;
}

.loader-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.loader-dots span {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #2a5a9b;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(42, 90, 155, 0.6);
    animation: orbitDots 1.8s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { top: -8px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.loader-dots span:nth-child(2) { top: 50%; right: -8px; transform: translateY(-50%); animation-delay: 0.3s; }
.loader-dots span:nth-child(3) { bottom: -8px; left: 50%; transform: translateX(-50%); animation-delay: 0.6s; }
.loader-dots span:nth-child(4) { top: 50%; left: -8px; transform: translateY(-50%); animation-delay: 0.9s; }

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulseDot { 0%,100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); } }
@keyframes orbitDots { 0%,100% { opacity: 0.3; transform: scale(0.6); } 50% { opacity: 1; transform: scale(1.2); } }

.loading-text {
    margin-top: 35px;
    color: #5a8acf;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: textPulse 1.8s ease-in-out infinite;
}

.loading-text .dots {
    display: inline-block;
    animation: dotsMove 1.4s steps(4) infinite;
}

@keyframes textPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes dotsMove { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }

/* ===== CONTENT ===== */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span { color: #fbbf24; }

.logo small {
    font-size: 0.9rem;
    font-weight: 300;
    color: #94a3b8;
    display: block;
    margin-top: 2px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-weight: 500;
    color: #cbd5e1;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links a:hover { color: #fbbf24; }
.nav-links a.active {
    color: #fbbf24;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 4px;
}

/* ===== BUTTONS ===== */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #fbbf24;
    color: #0b0f1a;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
    background: #fcd34d;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: #fbbf24;
    color: #fbbf24;
    transform: translateY(-3px);
    background: rgba(251, 191, 36, 0.05);
}

.btn i {
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0 20px 0;
}

.welcome-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 10px;
}

.welcome-wrapper h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.hero .subhead {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 15px 0 25px 0;
    line-height: 1.6;
}

/* ===== 3D LOGO ===== */
.logo-wrapper {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(251, 191, 36, 0.15), 0 0 0 8px rgba(251, 191, 36, 0.05), inset 0 -8px 20px rgba(0, 0, 0, 0.5);
    perspective: 800px;
    transform: rotateY(2deg) rotateX(3deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: logoFloat 4s ease-in-out infinite;
    flex-shrink: 0;
}

.logo-wrapper:hover {
    transform: rotateY(-5deg) rotateX(8deg) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 6px rgba(251, 191, 36, 0.25), 0 0 0 12px rgba(251, 191, 36, 0.08), inset 0 -8px 20px rgba(0, 0, 0, 0.5);
}

.logo-wrapper::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 10%;
    width: 80%;
    height: 45%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.logo-wrapper::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 3px;
    background: conic-gradient(from 0deg, transparent 0%, rgba(251, 191, 36, 0.2) 25%, transparent 50%, rgba(251, 191, 36, 0.2) 75%, transparent 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
    animation: rotateRing 6s linear infinite;
}

.logo-wrapper .company-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 8px 30px rgba(0, 0, 0, 0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: rotateY(2deg) rotateX(3deg) translateY(0px); }
    50% { transform: rotateY(-2deg) rotateX(5deg) translateY(-8px); }
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MISSION SECTION ===== */
.mission-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    align-items: flex-start;
}

.mission-left {
    flex: 2;
    min-width: 280px;
}

.mission-right {
    flex: 1.2;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.mission-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 1px;
}

.mission-left .mission-heading {
    font-size: 1.6rem;
    font-weight: 300;
    color: #e2e8f0;
    margin-top: 6px;
}

.mission-left p {
    color: #cbd5e1;
    max-width: 600px;
    margin-top: 12px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.badge {
    display: inline-block;
    margin-top: 20px;
    background: rgba(251, 191, 36, 0.08);
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-item i {
    color: #fbbf24;
    font-size: 1.1rem;
    width: 24px;
    margin-top: 2px;
}

.info-item strong {
    color: #ffffff;
    font-weight: 600;
}

.info-item a {
    color: #fbbf24;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.highlight-tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    padding: 2px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(251, 191, 36, 0.1);
    margin-left: 6px;
}

.perk-list {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.perk-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.perk-list li i {
    color: #fbbf24;
    width: 20px;
    font-size: 0.9rem;
}

.enroll-cta {
    margin-top: 18px;
    background: rgba(251, 191, 36, 0.06);
    border-radius: 40px;
    padding: 10px 18px;
    text-align: center;
    border: 1px solid rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.95rem;
}

.enroll-cta i {
    margin-right: 8px;
}

/* ===== COURSES SECTION ===== */
.courses-section {
    margin-top: 10px;
}

.courses-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.courses-section .subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.course-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 20px 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 191, 36, 0.15);
}

.course-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    background: #1a2332;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.course-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-card h3 .price {
    color: #fbbf24;
    font-size: 1.1rem;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 14px;
    border-radius: 30px;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.course-card .desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 8px;
    flex: 1;
}

.course-card .course-meta-small {
    margin-top: 14px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
}

.course-card .course-meta-small i {
    color: #fbbf24;
    margin-right: 4px;
}

.enroll-btn-small {
    margin-top: 16px;
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.15);
    padding: 10px 0;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.enroll-btn-small:hover {
    background: #fbbf24;
    color: #0b0f1a;
    border-color: #fbbf24;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    margin-top: 10px;
}

.contact-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
}

.contact-section .subtitle {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px 50px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.contact-form h3 i {
    color: #fbbf24;
    margin-right: 10px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select option {
    background: #1a2332;
    color: #fff;
}

.submit-btn {
    background: #fbbf24;
    color: #0b0f1a;
    border: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #fcd34d;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.25);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 191, 36, 0.15);
}

.info-card .icon {
    font-size: 1.6rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.info-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.info-card p,
.info-card a {
    color: #cbd5e1;
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
}

.info-card a:hover {
    color: #fbbf24;
}

.info-card .multi-line {
    display: block;
}

.map-placeholder {
    margin-top: 20px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #1a2332;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    flex-direction: column;
    gap: 8px;
}

.map-placeholder i {
    font-size: 2.4rem;
    color: #fbbf24;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin-top: 10px;
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 60px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-text {
    flex: 2;
    min-width: 280px;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
}

.about-text .tagline {
    font-size: 1.3rem;
    font-weight: 300;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.about-text p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 16px;
    max-width: 650px;
}

.about-text .highlight {
    color: #fbbf24;
    font-weight: 600;
}

.about-stats {
    flex: 1;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.03);
    padding: 28px 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 26px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.15);
}

.about-card .icon {
    font-size: 2.2rem;
    color: #fbbf24;
    margin-bottom: 14px;
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.about-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.team-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-member .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1a2332;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #fbbf24;
    border: 2px solid rgba(251, 191, 36, 0.1);
}

.team-member h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
}

.team-member .role {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 2px;
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-copy span {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-links a.whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
.social-links a.facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.social-links a.phone:hover { background: #34B7F1; color: #fff; border-color: #34B7F1; }
.social-links a.email:hover { background: #D44638; color: #fff; border-color: #D44638; }
.social-links a.feedback:hover { background: #fbbf24; color: #0b0f1a; border-color: #fbbf24; }

.social-links .social-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-right: 4px;
    display: none;
}

@media (min-width: 600px) {
    .social-links .social-label {
        display: inline;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 25px 20px 25px;
        border-radius: 28px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .welcome-wrapper h1 {
        font-size: 2.6rem;
    }

    .logo-wrapper {
        width: 110px;
        height: 110px;
    }

    .hero .subhead {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .mission-left h2 {
        font-size: 1.6rem;
    }

    .mission-left .mission-heading {
        font-size: 1.2rem;
    }

    .courses-section h2 {
        font-size: 1.8rem;
    }

    .courses-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text .tagline {
        font-size: 1.1rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero {
        gap: 30px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .live-bg {
        opacity: 0.85;
    }

    .mission-grid {
        flex-direction: column;
        gap: 24px;
    }

    .mission-right {
        width: 100%;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .welcome-wrapper h1 {
        font-size: 2rem;
    }

    .logo-wrapper {
        width: 80px;
        height: 80px;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-img {
        height: 150px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item .number {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .map-placeholder {
        height: 150px;
    }
}