/* ============================================
   ACADEMIA DE COMUNICAÇÃO – MAIN STYLESHEET
   Colors: #ef7d01 (primary), #888685 (secondary)
   Fonts: Barlow Condensed (headings), Barlow (body)
   ============================================ */

:root {
    --primary: #ef7d01;
    --primary-dark: #c96700;
    --primary-light: #ff9d33;
    --secondary: #888685;
    --secondary-dark: #5a5958;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --light: #f8f7f6;
    --white: #ffffff;
    --border: #e8e6e3;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.25s ease;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--dark-2);
    color: #aaa;
    font-size: 12.5px;
    padding: 7px 0;
    font-family: var(--font-body);
}
.topbar-inner {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.topbar-inner span { white-space: nowrap; }

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.13); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-family: var(--font-head);
}
.nav-logo img { height: 46px; width: 46px; object-fit: contain; }
.logo-text {
    font-size: 14px;
    line-height: 1.3;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.logo-text strong { display: block; font-size: 18px; color: var(--primary); text-transform: uppercase; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    color: var(--dark);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-menu a:hover { color: var(--primary); background: rgba(239,125,1,0.07); }
.nav-menu a.active { color: var(--primary); }
.nav-menu .nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    margin-left: 8px;
}
.nav-menu .nav-cta:hover { background: var(--primary-dark); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,20,0.82) 0%, rgba(239,125,1,0.18) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 720px;
}
.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: normal;
    color: var(--primary);
    display: block;
}
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 30px;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,125,1,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}
.hero-dot.active { background: var(--primary); transform: scale(1.3); }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--primary);
    padding: 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-top: 4px;
}

/* ── SECTION STYLES ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    background: rgba(239,125,1,0.1);
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.02em;
}
.section-title span { color: var(--primary); }
.section-sub {
    color: var(--secondary);
    font-size: 17px;
    max-width: 600px;
    margin: 14px auto 0;
    font-weight: 300;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ── COURSE CARDS ── */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}
.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.course-card-cat {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 16px;
}
.course-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.1;
}
.course-card p { color: var(--secondary); font-size: 14px; flex: 1; margin-bottom: 16px; }
.course-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.course-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-dark);
}
.course-price {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
}
.course-price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    font-family: var(--font-body);
}
.course-schedule {
    font-size: 12px;
    color: var(--secondary);
    background: var(--light);
    padding: 8px 12px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.course-card .btn { width: 100%; justify-content: center; }

/* ── FILTER TABS ── */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    justify-content: center;
}
.filter-tab {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 9px 20px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--secondary-dark);
    cursor: pointer;
    transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ── NEWS ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--light);
    position: relative;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date {
    font-size: 12px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.news-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}
.news-card p { color: var(--secondary); font-size: 14px; flex: 1; margin-bottom: 16px; }
.news-card .read-more {
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-card .read-more:hover { gap: 10px; }

/* ── ABOUT / MISSION / VISION ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-family: var(--font-head);
    box-shadow: var(--shadow);
}
.about-image-badge strong { display: block; font-size: 36px; font-weight: 900; }
.about-image-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.about-text h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}
.about-text h2 span { color: var(--primary); }
.about-text p { color: var(--secondary-dark); font-size: 16px; margin-bottom: 16px; }

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}
.mv-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--primary);
}
.mv-card.mission { background: rgba(239,125,1,0.06); border: 1px solid rgba(239,125,1,0.2); }
.mv-card.vision { background: var(--light); border: 1px solid var(--border); }
.mv-icon { font-size: 36px; margin-bottom: 14px; }
.mv-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}
.mv-card p { color: var(--secondary-dark); font-size: 15px; line-height: 1.7; }

.objectives-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 16px;
}
.objective-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.objective-item:hover { border-color: var(--primary); transform: translateX(4px); }
.obj-icon {
    width: 42px; height: 42px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.obj-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.obj-text p { font-size: 13px; color: var(--secondary); margin: 0; }

/* ── REQUIREMENTS BOX ── */
.requirements-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.req-title {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.req-list { list-style: none; }
.req-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.req-list li:last-child { border-bottom: none; }
.req-list li::before { content: '✓'; font-weight: 900; background: rgba(255,255,255,0.2); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.req-payment { background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 24px; }
.req-payment strong { display: block; font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.contact-icon {
    width: 46px; height: 46px;
    background: rgba(239,125,1,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--primary);
}
.contact-info-item strong { display: block; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--secondary); font-size: 15px; }

/* ── FORMS ── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid var(--border);
}
.form-title {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--dark);
}
.form-subtitle { color: var(--secondary); font-size: 14px; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark);
    margin-bottom: 7px;
}
label span { color: var(--primary); }
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239,125,1,0.1);
}
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888685' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: 12px; color: var(--secondary); margin-top: 6px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ── ALERTS ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: rgba(239,125,1,0.08); color: var(--primary-dark); border: 1px solid rgba(239,125,1,0.3); }

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 80px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(239,125,1,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 14px;
}
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 550px; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── GALLERY / FACILITIES ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #c96700 100%);
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}
.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.7); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── NEWS ARTICLE ── */
.article-content { max-width: 800px; margin: 0 auto; }
.article-content img { border-radius: var(--radius); margin: 24px 0; }
.article-content h2, .article-content h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    color: var(--dark);
    margin: 28px 0 14px;
}
.article-content p { margin-bottom: 18px; color: var(--secondary-dark); line-height: 1.8; }
.article-content ul { padding-left: 20px; margin-bottom: 18px; }
.article-content ul li { margin-bottom: 8px; color: var(--secondary-dark); list-style: disc; }
.article-content strong { color: var(--dark); }

/* ── MAP ── */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 350px; border: none; display: block; }

/* ── FOOTER ── */
.footer-top { background: #111; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { height: 56px; margin-bottom: 18px; }
.footer-brand p { color: #888; font-size: 14px; line-height: 1.7; }
.footer-slogan { color: var(--primary) !important; font-style: italic; margin-top: 10px; }
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: #888; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact ul { color: #888; font-size: 14px; }
.footer-contact ul li { margin-bottom: 12px; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact a { color: #888; }
.footer-contact a:hover { color: var(--primary); }
.footer-bank {
    margin-top: 20px;
    background: rgba(239,125,1,0.1);
    border: 1px solid rgba(239,125,1,0.2);
    border-radius: var(--radius);
    padding: 14px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
}
.footer-bank strong { color: var(--primary); }
.footer-bottom {
    background: #0a0a0a;
    padding: 16px 0;
    border-top: 1px solid #222;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 13px;
}
.footer-bottom a { color: #555; }
.footer-bottom a:hover { color: var(--primary); }

/* ── PAGINATION ── */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
}
.page-link {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    font-weight: 600;
    font-family: var(--font-head);
    transition: all var(--transition);
    color: var(--secondary-dark);
}
.page-link:hover, .page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ── ENROLLMENT STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.step-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
}
.step-num {
    width: 52px; height: 52px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 16px;
}
.step-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--secondary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-badge { bottom: 10px; right: 10px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .requirements-box { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
    .topbar-inner { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        border-top: 3px solid var(--primary);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { width: 100%; padding: 12px 16px; }
    .nav-menu .nav-cta { text-align: center; margin: 8px 0 0; }
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 42px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .form-row { grid-template-columns: 1fr; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .steps-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .section { padding: 56px 0; }
    .courses-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── BADGE ── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.badge-primary { background: rgba(239,125,1,0.1); color: var(--primary); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info    { background: #dbeafe; color: #1e40af; }
