/* =============================================
   MSD GROUP - Main Stylesheet
   Theme: Navy Blue + Orange (Professional)
============================================= */

:root {
    --navy: #0A1628;
    --navy-mid: #102040;
    --navy-light: #1a3560;
    --orange: #F4701B;
    --orange-light: #FF8C42;
    --orange-dark: #d45c10;
    --white: #ffffff;
    --light-bg: #f4f7fc;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(10,22,40,0.12);
    --shadow-lg: 0 10px 40px rgba(10,22,40,0.18);
    --radius: 10px;
    --radius-lg: 16px;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-family: var(--font-heading); font-size: 16px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; border: none; transition: var(--transition); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(244,112,27,0.4); }

.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }

.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ---- TOPBAR ---- */
.topbar { background: var(--navy); color: rgba(255,255,255,0.85); padding: 8px 0; font-size: 13px; font-family: var(--font-body); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--orange); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a { width: 28px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.topbar-right a:hover { background: var(--orange); color: white; }

/* ---- HEADER ---- */
.main-header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.main-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo a { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-msd { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: 2px; }
.logo-group { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--orange); letter-spacing: 4px; margin-top: -4px; }
.logo-text small { font-size: 10px; color: var(--text-light); letter-spacing: 1px; margin-top: 2px; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a { padding: 8px 14px; border-radius: 6px; font-family: var(--font-heading); font-size: 15px; font-weight: 600; letter-spacing: 0.3px; color: var(--text-dark); position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.main-nav a.active::after { content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px; background: var(--orange); border-radius: 2px; }

.btn-enroll { background: var(--orange); color: white; padding: 10px 22px; border-radius: 6px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; letter-spacing: 0.5px; white-space: nowrap; }
.btn-enroll:hover { background: var(--orange-dark); box-shadow: 0 4px 15px rgba(244,112,27,0.4); transform: translateY(-1px); color: white; }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ---- HERO SECTION ---- */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e4a8a 100%); min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }

.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }

.hero-shape { position: absolute; right: -100px; top: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(244,112,27,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero-shape2 { position: absolute; left: -50px; bottom: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,112,27,0.08) 0%, transparent 70%); border-radius: 50%; }

.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 20px; position: relative; z-index: 1; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,112,27,0.15); border: 1px solid rgba(244,112,27,0.3); color: var(--orange-light); padding: 6px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }

.hero h1 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }

.hero p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.8; margin-bottom: 36px; max-width: 500px; }

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.hero-image { position: relative; }
.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 40px; }
.hero-card h3 { font-family: var(--font-heading); font-size: 22px; color: white; margin-bottom: 24px; }

.course-list-preview { display: flex; flex-direction: column; gap: 12px; }
.course-item-prev { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); padding: 12px 16px; border-radius: 8px; border-left: 3px solid var(--orange); }
.course-icon { width: 40px; height: 40px; background: rgba(244,112,27,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 18px; flex-shrink: 0; }
.course-info span { font-size: 14px; font-weight: 600; color: white; display: block; }
.course-info small { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---- SECTION COMMON ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; background: rgba(244,112,27,0.1); color: var(--orange); padding: 5px 16px; border-radius: 30px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.section-header p { color: var(--text-mid); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ---- WHY CHOOSE US ---- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: white; border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); border-bottom: 4px solid transparent; transition: var(--transition); text-align: center; }
.feature-card:hover { border-bottom-color: var(--orange); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(244,112,27,0.1), rgba(244,112,27,0.2)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--orange); }
.feature-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ---- COURSES ---- */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.course-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 28px; text-align: center; }
.course-card-header .icon { font-size: 42px; color: var(--orange-light); margin-bottom: 10px; }
.course-card-header h3 { font-family: var(--font-heading); font-size: 20px; color: white; font-weight: 700; }
.course-card-body { padding: 24px; }
.course-card-body p { color: var(--text-mid); font-size: 14px; margin-bottom: 16px; line-height: 1.7; }
.course-meta { display: flex; gap: 16px; margin-bottom: 20px; }
.course-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); }
.course-meta i { color: var(--orange); }
.course-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.course-topics span { background: var(--light-bg); color: var(--navy); font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.course-card a { display: block; text-align: center; background: var(--orange); color: white; padding: 10px; border-radius: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; }
.course-card a:hover { background: var(--orange-dark); }

/* ---- FRANCHISE CTA ---- */
.franchise-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.franchise-section::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 50%; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' fill-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E"); }
.franchise-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.franchise-content h2 { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
.franchise-content h2 span { color: var(--orange); }
.franchise-content p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 30px; line-height: 1.8; }
.franchise-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.perk-item { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.85); font-size: 15px; }
.perk-item i { color: var(--orange); font-size: 18px; flex-shrink: 0; }

.franchise-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.highlight-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; text-align: center; }
.highlight-box .num { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--orange); line-height: 1; }
.highlight-box p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 6px; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--orange); }
.stars { color: #f59e0b; margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { color: var(--text-mid); font-size: 14px; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-heading); font-size: 18px; font-weight: 700; flex-shrink: 0; }
.author-info strong { display: block; font-size: 15px; color: var(--navy); font-weight: 700; }
.author-info span { font-size: 12px; color: var(--text-light); }

/* ---- FORMS ---- */
.form-page { background: var(--light-bg); padding: 80px 0; }
.form-container { max-width: 750px; margin: 0 auto; background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-header { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 40px; text-align: center; }
.form-header h1 { font-family: var(--font-heading); font-size: 34px; color: white; font-weight: 700; margin-bottom: 8px; }
.form-header p { color: rgba(255,255,255,0.7); font-size: 15px; }
.form-body { padding: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group label span { color: var(--orange); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
    font-family: var(--font-body); font-size: 14px; color: var(--text-dark);
    transition: var(--transition); background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,112,27,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { text-align: center; padding-top: 10px; }
.form-submit .btn { padding: 14px 48px; font-size: 17px; }

.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.alert-success { background: #dcfce7; color: #16a34a; border-left: 4px solid #16a34a; }
.alert-error { background: #fee2e2; color: #dc2626; border-left: 4px solid #dc2626; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 70px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-heading); font-size: 46px; color: white; font-weight: 700; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 540px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- ABOUT PAGE ---- */
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .section-tag { display: inline-block; }
.about-text h2 { font-family: var(--font-heading); font-size: 38px; color: var(--navy); font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.about-text p { color: var(--text-mid); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.about-visual { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { text-align: center; background: rgba(255,255,255,0.07); border-radius: var(--radius); padding: 28px 20px; }
.about-stat .num { font-family: var(--font-heading); font-size: 44px; font-weight: 700; color: var(--orange); line-height: 1; }
.about-stat p { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 6px; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 60px; }
.vm-card { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.vm-card .icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; margin-bottom: 20px; }
.vm-card h3 { font-family: var(--font-heading); font-size: 24px; color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.vm-card p { color: var(--text-mid); font-size: 15px; line-height: 1.8; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; background: white; border-radius: var(--radius-lg); padding: 32px 20px; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 90px; height: 90px; background: linear-gradient(135deg, var(--navy), var(--orange)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-heading); font-size: 30px; color: white; font-weight: 700; }
.team-card h4 { font-family: var(--font-heading); font-size: 18px; color: var(--navy); font-weight: 700; }
.team-card span { font-size: 13px; color: var(--orange); font-weight: 600; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; background: var(--navy); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.gallery-placeholder { text-align: center; color: rgba(255,255,255,0.5); padding: 20px; }
.gallery-placeholder i { font-size: 48px; color: var(--orange); display: block; margin-bottom: 10px; }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
.contact-info-card .icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 20px; flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-heading); font-size: 17px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: var(--text-mid); }
.contact-form-card { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-family: var(--font-heading); font-size: 26px; color: var(--navy); font-weight: 700; margin-bottom: 28px; }

/* ---- TERMS ---- */
.terms-content { max-width: 860px; margin: 0 auto; background: white; border-radius: var(--radius-lg); padding: 50px; box-shadow: var(--shadow); }
.terms-content h2 { font-family: var(--font-heading); font-size: 26px; color: var(--navy); margin: 36px 0 14px; font-weight: 700; }
.terms-content h2:first-child { margin-top: 0; }
.terms-content p, .terms-content li { color: var(--text-mid); font-size: 15px; line-height: 1.9; margin-bottom: 12px; }
.terms-content ul { padding-left: 20px; }
.terms-content ul li { list-style: disc; }
.terms-content .last-updated { background: var(--light-bg); padding: 12px 16px; border-radius: 6px; font-size: 13px; color: var(--text-light); margin-bottom: 30px; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; background: #25D366; color: white; padding: 12px 20px; border-radius: 50px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; box-shadow: 0 8px 24px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(37,211,102,0.5); color: white; }
.whatsapp-float i { font-size: 22px; }

/* ---- FOOTER ---- */
.main-footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 16px; }
.footer-logo .logo-msd { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: white; letter-spacing: 2px; }
.footer-logo .logo-group { font-family: var(--font-heading); font-size: 12px; color: var(--orange); letter-spacing: 4px; }
.footer-logo small { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-top: 2px; }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-social a:hover { background: var(--orange); color: white; }
.footer-col h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: white; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--orange); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul a i { font-size: 11px; color: var(--orange); }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; margin-bottom: 12px; }
.contact-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.contact-list a:hover { color: var(--orange); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); margin: 0 8px; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom .fa-heart { color: var(--orange); }

/* ---- ADMIN PANEL ---- */
.admin-wrapper { min-height: 100vh; background: #f1f5f9; display: flex; }
.admin-sidebar { width: 260px; background: var(--navy); min-height: 100vh; padding: 0; position: fixed; left: 0; top: 0; bottom: 0; z-index: 100; }
.admin-logo { padding: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-logo .logo-msd { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: white; }
.admin-logo .logo-group { font-family: var(--font-heading); font-size: 11px; color: var(--orange); letter-spacing: 3px; display: block; }
.admin-logo small { font-size: 11px; color: rgba(255,255,255,0.35); display: block; margin-top: 2px; }
.admin-nav { padding: 20px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 24px; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(244,112,27,0.15); color: white; border-right: 3px solid var(--orange); }
.admin-nav a i { width: 18px; color: var(--orange); }
.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar { background: white; padding: 16px 30px; box-shadow: 0 1px 10px rgba(0,0,0,0.08); display: flex; justify-content: space-between; align-items: center; }
.admin-topbar h2 { font-family: var(--font-heading); font-size: 22px; color: var(--navy); font-weight: 700; }
.admin-topbar a.logout { background: #fee2e2; color: #dc2626; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.admin-content { padding: 30px; }
.stats-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--orange); }
.stat-card .num { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--navy); }
.stat-card p { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.stat-card i { font-size: 24px; color: var(--orange); float: right; margin-top: -42px; }
.admin-table-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 30px; }
.table-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.table-header h3 { font-family: var(--font-heading); font-size: 19px; color: var(--navy); font-weight: 700; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--light-bg); padding: 12px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-mid); font-weight: 700; text-align: left; }
.data-table td { padding: 14px 16px; font-size: 14px; color: var(--text-dark); border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: #fafbfc; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-new { background: #dbeafe; color: #2563eb; }
.badge-contacted { background: #fef3c7; color: #d97706; }
.badge-admitted { background: #dcfce7; color: #16a34a; }
.badge-closed { background: #f1f5f9; color: #64748b; }
.admin-login { min-height: 100vh; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; }
.login-card { background: white; border-radius: var(--radius-lg); padding: 50px 44px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); text-align: center; }
.login-card .logo-msd { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--navy); letter-spacing: 2px; }
.login-card .logo-group { font-family: var(--font-heading); font-size: 13px; color: var(--orange); letter-spacing: 4px; display: block; }
.login-card h2 { font-family: var(--font-heading); font-size: 22px; color: var(--text-mid); font-weight: 600; margin: 20px 0 30px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .features-grid, .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .topbar-left span:last-child { display: none; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: var(--shadow); padding: 20px; }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { display: block; padding: 12px 16px; border-radius: 6px; }
    .header-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero .container { grid-template-columns: 1fr; text-align: center; padding: 60px 20px; gap: 40px; }
    .hero p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .features-grid, .courses-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .franchise-section .container { grid-template-columns: 1fr; }
    .about-intro .container { grid-template-columns: 1fr; }
    .vision-mission { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-main { margin-left: 0; }
    .stats-cards { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 34px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(3, 1fr); }
    .franchise-highlights { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-cards { grid-template-columns: 1fr; }
}
