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

body {
    font-family: 'Inter', sans-serif;
    background-color: #F4F8FB;
    color: #1A1F2B;
    overflow-x: hidden;
}

/* ===== Brand Colors (Strictly from palette) ===== */
:root {
    --primary: #163A63;
    --primary-dark: #0E2742;
    --primary-light: #2C5D8A;
    --secondary: #3E8C8C;
    --secondary-dark: #2B6D6D;
    --secondary-light: #67B7B7;
    --accent: #C9A227;
    --accent-light: #E3C765;
    --accent-dark: #9A7A12;
    --bg-main: #F4F8FB;
    --text-main: #1A1F2B;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #163A63, #3E8C8C);
    --gradient-gold: linear-gradient(135deg, #C9A227, #E3C765);
    --gradient-hero: linear-gradient(125deg, #0E2742 0%, #163A63 45%, #3E8C8C 75%, #C9A227 100%);
    --shadow-sm: 0 4px 12px rgba(22, 58, 99, 0.06);
    --shadow-md: 0 8px 24px rgba(22, 58, 99, 0.1);
    --shadow-lg: 0 20px 40px rgba(22, 58, 99, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
    color: var(--white) !important;
}

/* Clean Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    padding: 5px 0;
}

.wdt-80 {
    width: 80px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    transition: 0.2s;
    padding: 0.5rem 1rem !important;
}

.nav-link.active {
    color: var(--secondary) !important;
    border-bottom: 3px solid var(--secondary) !important;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.btn-franchise-nav {
    background: var(--accent);
    color: var(--primary-dark) !important;
    border-radius: 40px;
    padding: 0.5rem 1.3rem !important;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-franchise-nav:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-student-nav {
    border: 1.5px solid var(--primary);
    background: transparent;
    border-radius: 40px;
    padding: 0.5rem 1.3rem !important;
    font-weight: 500;
    color: var(--primary) !important;
}

.btn-student-nav:hover {
    background: var(--primary);
    color: white !important;
}

/* Hero Section - Spacious & Impactful */
.hero-section {
    background: var(--gradient-hero);
    padding: 5rem 0 5rem;
    color: white;
    position: relative;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.btn-gold {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-light-custom {
    border: 1.5px solid white;
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    color: white;
    transition: 0.2s;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--primary);
}

/* Section Headers - Clean */
.section-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
}

.section-header:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent);
    display: block;
    margin-top: 0.6rem;
    border-radius: 3px;
}

/* Cards - Minimal & Elegant */
.card-simple {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
    padding: 1.8rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-md {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Franchise Banner */
.franchise-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 1.5rem;
    color: white;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

/* Testimonial */
.testimonial-simple {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent);
}

/* Placement Badge */
.placement-chip {
    background: white;
    border-radius: 40px;
    padding: 0.4rem 1.2rem;
    font-weight: 500;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: #cddfe7;
}

.footer a {
    color: #cddfe7;
    transition: var(--transition);
    text-decoration: none;
    line-height: 2;
}

.footer a:hover {
    color: var(--accent-light);
}

/* Utility */
.bg-soft-primary {
    background-color: rgba(62, 140, 140, 0.08);
}

.text-accent {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header {
        font-size: 1.6rem;
    }

    .card-simple {
        padding: 1.2rem;
    }
}