/* ==========================================================================
   FUTURE DIPLOMATS SCHOOL OF DIPLOMACY - MAIN DESIGN SYSTEM (CSS)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset & Variables
   -------------------------------------------------------------------------- */
:root {
    --bg-dark: #0b0d10;
    --bg-navy: #0b162c;
    --bg-card: #12151b;
    --bg-card-hover: #181c24;
    --bg-surface: #161922;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #9a781b;
    --gold-gradient: linear-gradient(135deg, #f5e4a8 0%, #d4af37 50%, #aa841e 100%);
    --gold-border: rgba(212, 175, 55, 0.35);
    --gold-border-glow: rgba(212, 175, 55, 0.6);
    --text-white: #ffffff;
    --text-body: #c8cad0;
    --text-muted: #8e929f;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-signature: 'Great Vibes', cursive;
    --font-accent: 'Cormorant Garamond', serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 5px 20px rgba(212, 175, 55, 0.25);
    --container-max: 1320px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   2. Utility Classes & Typography
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--gold-primary);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0b0d10;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background: rgba(18, 21, 27, 0.7);
    color: var(--text-white);
    border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #0b0d10;
    transform: translateY(-2px);
}

.btn-login {
    background: rgba(11, 22, 44, 0.9);
    color: var(--text-white);
    border: 1px solid rgba(212, 175, 55, 0.5);
    font-weight: 600;
    padding: 10px 18px;
}

.btn-login:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
}

.btn-block {
    width: 100%;
}

/* Section Header Dividers */
.gold-divider-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gold-divider-heading .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-divider-heading h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation Bar
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 16, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Brand Logo */
.brand-logo-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-seal-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
    line-height: 1.1;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.brand-slogan {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 2.5px;
    margin-top: 2px;
}

/* Navigation Links */
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-body);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--gold-primary);
}

.nav-item.active .nav-link::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
}

.nav-arrow {
    font-size: 0.7rem;
    margin-left: 3px;
    transition: var(--transition);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-body);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-left-color: var(--gold-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    font-size: 1.25rem;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. Hero Slider / Carousel Section (Homepage)
   -------------------------------------------------------------------------- */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, #171b24 0%, #0b0d10 80%);
    border-bottom: 1px solid var(--gold-border);
}

.hero-slider-track {
    display: flex;
    width: 300%;
    transition: transform 0.6s ease-in-out;
}

.hero-slide {
    width: 33.3333%;
    flex-shrink: 0;
    padding: 50px 0 60px 0;
    position: relative;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    padding-right: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 20px;
}

.hero-title .gold-accent {
    color: var(--gold-primary);
    display: block;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.director-card {
    background: linear-gradient(180deg, rgba(22, 25, 34, 0.95) 0%, rgba(14, 16, 22, 0.98) 100%);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: var(--transition);
}

.director-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.director-photo-wrap {
    width: 140px;
    height: 160px;
    margin: 0 auto 16px auto;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.director-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.director-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.director-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.director-quote {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.director-signature {
    font-family: var(--font-signature);
    font-size: 2rem;
    color: var(--gold-light);
    line-height: 1;
}

.hero-chamber-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow-card);
    height: 380px;
}

.hero-chamber-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-chamber-frame:hover .hero-chamber-img {
    transform: scale(1.04);
}

.chamber-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 13, 16, 0.9) 100%);
    padding: 20px;
    text-align: center;
}

.chamber-badge p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-prev-btn, .slider-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(11, 13, 16, 0.7);
    border: 1px solid var(--gold-border);
    color: var(--gold-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev-btn { left: 20px; }
.slider-next-btn { right: 20px; }

.slider-prev-btn:hover, .slider-next-btn:hover {
    background: var(--gold-primary);
    color: #0b0d10;
}

.slider-dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--gold-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold-primary);
    width: 30px;
    border-radius: 6px;
}

/* --------------------------------------------------------------------------
   5. Featured Programs Cards Section (2 Columns)
   -------------------------------------------------------------------------- */
.programs-section {
    padding: 60px 0 40px 0;
    background: var(--bg-dark);
}

.programs-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.program-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-img {
    transform: scale(1.06);
}

.program-badge-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
    background: rgba(11, 13, 16, 0.85);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.15rem;
}

.program-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

/* --------------------------------------------------------------------------
   6. Dedicated WHY CHOOSE US Section (Full Width Section on Homepage)
   -------------------------------------------------------------------------- */
.why-choose-us-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #0b0d10 0%, #11151e 50%, #0b0d10 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.features-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-box-large {
    background: rgba(18, 21, 27, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    padding: 28px 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.feature-box-large:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px auto;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.35rem;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7. Key Statistics Counter Strip
   -------------------------------------------------------------------------- */
.stats-strip {
    background: linear-gradient(180deg, #090b0e 0%, #11141b 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 15px;
    border-right: 1px solid rgba(212, 175, 55, 0.25);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-body);
    font-weight: 500;
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   8. Call to Action Banner (Light/White Contrast Section)
   -------------------------------------------------------------------------- */
.cta-banner-section {
    padding: 50px 0;
    background: #f7f8fa;
    color: #0b0d10;
}

.cta-banner-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e2e8;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.cta-content {
    padding: 45px;
}

.cta-laurel-icon {
    font-size: 2.2rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: #0b0d10;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: #4a4e5a;
    margin-bottom: 25px;
}

.cta-image-wrap {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   9. ABOUT US PAGE SPECIAL STYLES (Light & Luxury Design Reference Match)
   -------------------------------------------------------------------------- */
.about-page-wrapper {
    background: #f8f9fc;
    color: #1a202c;
}

.about-hero-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b162c;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #b38827;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.about-hero-desc {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.about-hero-img-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
}

.about-who-section {
    padding: 60px 0;
    background: #f1f5f9;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-section-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0b162c;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text-p {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Mission, Vision, Values Cards */
.mvv-section {
    padding: 60px 0;
    background: #ffffff;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mvv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #b38827;
}

.mvv-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px auto;
    background: #0b162c;
    border: 2px solid #b38827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b38827;
    font-size: 1.4rem;
}

.mvv-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b162c;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mvv-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
}

.values-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    text-align: left;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #334155;
    font-weight: 600;
}

.values-checklist li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.values-checklist i {
    color: #b38827;
}

/* About Impact Navy Bar */
.about-impact-bar {
    background: #0b162c;
    color: #ffffff;
    padding: 40px 0;
    border-top: 2px solid #b38827;
    border-bottom: 2px solid #b38827;
}

.impact-heading-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #b38827;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.impact-grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.impact-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.impact-icon {
    font-size: 1.8rem;
    color: #b38827;
}

.impact-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.impact-lbl {
    font-size: 0.72rem;
    color: #cbd5e1;
}

/* About Commitment & Quote Split */
.commitment-quote-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.commitment-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.quote-card-navy {
    background: #0b162c;
    color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: 1px solid #b38827;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon-gold {
    font-size: 2rem;
    color: #b38827;
    margin-bottom: 15px;
}

.mandela-quote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #ffffff;
}

.quote-author {
    font-size: 0.9rem;
    color: #b38827;
    font-weight: 700;
    margin-bottom: 15px;
}

.quote-stars {
    color: #b38827;
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background: #090b0e;
    color: var(--text-body);
    position: relative;
}

.footer-top-gold-line {
    height: 2px;
    background: var(--gold-gradient);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.footer-seal-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-brand-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.footer-brand-slogan {
    font-size: 0.6rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    background: var(--gold-primary);
    color: #0b0d10;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-contact-list i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.footer-bottom {
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   11. Student Login Modal
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    width: 100%;
    max-width: 440px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-seal {
    width: 60px;
    margin-bottom: 10px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

.modal-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(11, 13, 16, 0.9);
    border: 1px solid var(--gold-border);
    border-radius: 4px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-row-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.forgot-link {
    color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   12. Subpages Styling (General)
   -------------------------------------------------------------------------- */
.page-hero {
    padding: 70px 0 50px 0;
    background: linear-gradient(180deg, #171b24 0%, #0b0d10 100%);
    border-bottom: 1px solid var(--gold-border);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
}

.glass-box {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
}

/* --------------------------------------------------------------------------
   13. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-chamber-frame {
        grid-column: span 2;
        height: 300px;
    }
    .features-grid-3col, .mvv-grid {
        grid-template-columns: 1fr 1fr;
    }
    .impact-grid-5col {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 75px);
        background: var(--bg-card);
        border-right: 1px solid var(--gold-border);
        transition: var(--transition);
        padding: 30px 20px;
    }
    .main-nav.active {
        left: 0;
    }
    .main-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .mobile-toggle {
        display: block;
    }
    .programs-grid-2col, .about-hero-grid, .about-who-grid, .commitment-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding-bottom: 15px;
    }
    .cta-banner-card {
        grid-template-columns: 1fr;
    }
    .cta-image-wrap {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-chamber-frame {
        grid-column: span 1;
        height: 250px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .features-grid-3col, .mvv-grid, .impact-grid-5col {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   PROGRAM DETAIL INNER PAGES STYLES (Matching Reference Images 100%)
   ========================================================================== */

.program-detail-wrapper {
    background: #f8f9fc;
    color: #1a202c;
}

/* Program Header Banner */
.program-hero-banner {
    background: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
}

.program-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.program-seal-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.program-seal-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.program-header-corp {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #0b162c;
    letter-spacing: 1px;
}

.program-header-corp-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: #b38827;
    letter-spacing: 2px;
}

.program-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #b38827;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-slogan-lead {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0b162c;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-lead-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Specs Bar (Dark Navy Strip) */
.program-specs-bar {
    background: #0b162c;
    color: #ffffff;
    padding: 20px 0;
    border-top: 2px solid #b38827;
    border-bottom: 2px solid #b38827;
}

.specs-grid-6col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    text-align: center;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.spec-item:last-child {
    border-right: none;
}

.spec-icon {
    font-size: 1.5rem;
    color: #b38827;
}

.spec-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Overview & Learn Split */
.program-section-white {
    padding: 50px 0;
    background: #ffffff;
}

.program-overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.section-title-navy {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b162c;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.section-title-navy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: #b38827;
}

.learn-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.5;
}

.learn-checklist i {
    color: #b38827;
    margin-top: 3px;
}

/* Course Modules 10 Grid */
.modules-section {
    padding: 50px 0;
    background: #f8f9fc;
}

.modules-grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.module-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.module-card:hover {
    border-color: #b38827;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.module-badge-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 10px auto;
    background: #0b162c;
    border: 1px solid #b38827;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b38827;
    font-size: 1.15rem;
}

.module-num {
    font-size: 0.68rem;
    font-weight: 800;
    color: #b38827;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.module-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b162c;
    margin: 4px 0 8px 0;
    line-height: 1.25;
}

.module-desc {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.35;
}

/* Sidebar Details & Duration Box */
.program-details-sidebar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-weight: 600;
}

.detail-label i {
    color: #b38827;
}

.detail-val {
    color: #0b162c;
    font-weight: 700;
    text-align: right;
}

.duration-navy-box {
    background: #0b162c;
    color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #b38827;
}

.duration-icon {
    font-size: 2rem;
    color: #b38827;
    margin-bottom: 8px;
}

.duration-heading {
    font-size: 0.75rem;
    font-weight: 800;
    color: #b38827;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.duration-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 4px 0;
}

.duration-sub {
    font-size: 0.8rem;
    color: #cbd5e1;
}

/* Who Should Enroll & Career Pathways & Certificate */
.enroll-career-cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.enroll-box, .career-box, .cert-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.career-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #334155;
    font-weight: 600;
}

.career-item i {
    color: #b38827;
}

.cert-frame {
    border: 3px double #b38827;
    background: #0b162c;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    margin-top: 15px;
}

.cert-title-corp {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: #b38827;
    letter-spacing: 1px;
}

.cert-title-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 8px 0;
}

.cert-seal-badge {
    width: 40px;
    margin: 10px auto;
}

/* Bottom CTA Program Bar */
.program-bottom-cta {
    background: #0b162c;
    color: #ffffff;
    padding: 40px 0;
    border-top: 2px solid #b38827;
}

.cta-flex-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ==========================================================================
   PROGRAMS ROW FLEX LAYOUT (Desktop & Mobile)
   ========================================================================== */
.programs-row-3col {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.programs-row-3col .program-card {
    flex: 1;
}

.programs-row-2col {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.programs-row-2col .program-card {
    width: calc(33.333% - 20px);
}

.modules-sidebar-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.mobile-sticky-apply-bar {
    display: none;
}

/* ==========================================================================
   ENHANCED MOBILE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

@media (max-width: 992px) {
    .header-container {
        padding: 10px 18px;
    }
    .brand-title {
        font-size: 1.1rem;
    }
    .brand-subtitle {
        font-size: 0.82rem;
    }
    .brand-slogan {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
    }
    .header-seal-img {
        width: 44px;
        height: 44px;
    }
    .main-nav {
        z-index: 1005;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.7);
        overflow-y: auto;
    }

    /* FIX: Mobile Nav Dropdown - Make it static inline instead of absolute overlay */
    .dropdown {
        position: static !important;
    }
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        border-left: 2px solid var(--gold-primary) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 5px 0 5px 10px !important;
        margin-top: 8px !important;
    }
    .dropdown-menu a {
        padding: 8px 15px !important;
        font-size: 0.8rem !important;
    }
    
    /* Programs Page: 1 Card per Row on Mobile */
    .programs-row-3col, .programs-row-2col {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .programs-row-3col .program-card, .programs-row-2col .program-card {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
    
    /* Inner Program Pages: 1 Column Stacking */
    .modules-sidebar-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .program-hero-grid, .program-overview-grid, .enroll-career-cert-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .modules-grid-5col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .middle-grid, .about-hero-grid, .about-who-grid, .commitment-grid {
        grid-template-columns: 1fr !important;
    }

    /* FIX: Program Banner Text Too Big on Tablet */
    .program-main-title {
        font-size: 2rem;
    }
    .program-header-corp {
        font-size: 1.1rem;
    }
    .program-seal-img {
        width: 50px;
        height: 50px;
    }

    /* FIX: CTA flex bar stacking on tablet */
    .cta-flex-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .cta-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .cta-btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 65px;
    }
    .header-actions .btn-gold {
        display: none !important;
    }
    .hero-slide {
        padding: 35px 0 45px 0;
    }
    .hero-title {
        font-size: 1.95rem;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 0.92rem;
        margin-bottom: 22px;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn {
        width: 100%;
    }
    .slider-prev-btn { left: 8px; width: 36px; height: 36px; }
    .slider-next-btn { right: 8px; width: 36px; height: 36px; }
    
    .features-grid-3col, .mvv-grid, .enroll-career-cert-grid {
        grid-template-columns: 1fr !important;
    }
    .modules-grid-5col {
        grid-template-columns: 1fr !important;
    }
    .specs-grid-6col, .impact-grid-5col {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    .spec-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding-bottom: 12px !important;
    }

    /* FIX: Program Banner Text Smaller on Phone */
    .program-hero-banner {
        padding: 30px 0 !important;
    }
    .program-main-title {
        font-size: 1.45rem !important;
        line-height: 1.2 !important;
    }
    .program-slogan-lead {
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }
    .program-lead-desc {
        font-size: 0.85rem !important;
    }
    .program-header-corp {
        font-size: 0.95rem !important;
    }
    .program-header-corp-sub {
        font-size: 0.65rem !important;
    }
    .program-seal-img {
        width: 40px !important;
        height: 40px !important;
    }
    .program-seal-title-group {
        gap: 10px !important;
    }
    .about-hero-img-frame img {
        height: 200px !important;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    .mandela-quote {
        font-size: 1.15rem;
    }
    .cta-content {
        padding: 25px 20px;
    }
    .cta-title {
        font-size: 1.6rem;
    }

    /* FIX: Page Hero Banner Text */
    .page-hero h1 {
        font-size: 1.6rem !important;
    }
    .page-hero p {
        font-size: 0.85rem !important;
    }

    /* FIX: Section Titles */
    .section-title-navy {
        font-size: 1.15rem !important;
    }

    /* FIX: Footer grid 1 column on phone */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .mobile-sticky-apply-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1010;
        background: rgba(11, 13, 16, 0.95);
        backdrop-filter: blur(10px);
        padding: 10px 16px;
        border-top: 1px solid var(--gold-primary);
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
    }
    .mobile-sticky-apply-bar .btn {
        width: 100% !important;
        margin: 0;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
}

@media (max-width: 576px) {
    .form-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .form-group input, .form-group select, .form-group textarea {
        font-size: 16px;
        padding: 11px 12px;
    }
    .specs-grid-6col, .impact-grid-5col {
        grid-template-columns: 1fr !important;
    }
    .brand-text {
        max-width: 170px;
    }
    .brand-title {
        font-size: 0.95rem;
    }
    .brand-subtitle {
        font-size: 0.7rem;
    }
    .brand-slogan {
        display: none;
    }

    /* FIX: Program Title Even Smaller on Very Small Phones */
    .program-main-title {
        font-size: 1.25rem !important;
    }
    .program-slogan-lead {
        font-size: 0.68rem !important;
    }

    /* FIX: Contact Page 2-col to 1-col */
    .middle-grid {
        grid-template-columns: 1fr !important;
    }
}

