/* ============================================
   LAW & ORDER CORPORATION — LANDING PAGE
   Color: Navy #001f3f  | Gold #d4af37
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
    --navy: #001f3f;
    --navy-deep: #00152c;
    --navy-light: #002b57;
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-pale: #f5e6a3;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .12);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Georgian', 'Inter', system-ui, sans-serif;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: 'Noto Sans Georgian', 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
}

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

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

.full-width {
    display: block;
    width: 100%;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    border: none;
    transition: all .3s var(--ease);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, .35);
}

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

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

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .25);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--navy);
}

/* ================================
   HEADER
   ================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(0, 31, 63, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: padding .3s var(--ease), background .3s var(--ease);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(0, 21, 44, .97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

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

.company-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .3px;
    white-space: nowrap;
}

.founder-name {
    font-size: .65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-top: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: rgba(255, 255, 255, .8);
    font-size: .875rem;
    font-weight: 500;
    transition: color .25s;
}

nav a:hover {
    color: var(--gold);
}

.header-cta {
    font-size: .75rem;
    padding: 10px 22px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all .3s var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   HERO
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    opacity: .2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 31, 63, .95) 30%, rgba(0, 43, 87, .7) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px 24px 100px;
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    border: 1px solid rgba(212, 175, 55, .4);
    color: var(--gold);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .7);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .5);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
}

/* ================================
   FEATURES BAR
   ================================ */
.features-bar {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 56px 0;
    color: var(--white);
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: background .3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, .04);
}

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

/* ================================
   ABOUT BRIEF
   ================================ */
.about-brief {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.about-brief-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ================================
   COURSES
   ================================ */
.courses-section {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.course-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    border: 1px solid var(--gray-200);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.course-card--featured {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy-light);
}

.course-card--featured .card-hours {
    color: rgba(255, 255, 255, .6);
}

.course-card--featured .card-divider {
    background: rgba(255, 255, 255, .1);
}

.course-card--featured .card-modules li {
    color: rgba(255, 255, 255, .85);
}

.course-card--featured .card-modules svg {
    color: var(--gold);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--navy);
    color: var(--gold);
}

.card-ribbon--gold {
    background: var(--gold);
    color: var(--navy);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: rgba(0, 31, 63, .06);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon--light {
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
}

.card-duration {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.card-duration span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-right: 4px;
}

.card-duration--light {
    color: rgba(255, 255, 255, .5);
}

.card-duration--light span {
    color: var(--gold);
}

.course-card h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.card-hours {
    font-size: .9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.card-divider {
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 20px;
}

.card-modules {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.card-modules li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: .92rem;
    color: var(--gray-800);
}

.card-modules svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ================================
   ABOUT INSTRUCTOR
   ================================ */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.instructor-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-md);
}

.about-image-accent {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-tag {
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.about-title {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-bio {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--gray-100);
    transition: background .25s;
}

.credential:hover {
    background: var(--gray-200);
}

.credential-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential strong {
    display: block;
    font-size: .85rem;
    color: var(--navy);
}

.credential span {
    font-size: .75rem;
    color: var(--gray-600);
}

/* ================================
   GALLERY
   ================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================================
   REGISTRATION / CONTACT
   ================================ */
.register-section {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.register-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: start;
}

.section-tag--light {
    color: rgba(212, 175, 55, .8);
}

.register-info h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.register-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    transition: background .25s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, .08);
}

.contact-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, .15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card small {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Registration form */
.register-form-wrap {
    position: sticky;
    top: 100px;
}

.register-form {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
}

.register-form h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
    color: var(--gray-600);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .25s, box-shadow .25s;
    background: var(--white);
}

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

.register-form .btn {
    margin-top: 8px;
}

/* ================================
   FOOTER
   ================================ */
footer {
    padding: 32px 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .company-name {
    color: var(--white);
    font-size: .9rem;
}

.footer-brand p {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    transition: color .25s;
}

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

/* ================================
   ANIMATIONS
   ================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   CHATBOT
   ================================ */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 1000;
    transition: transform .3s var(--ease);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
}

/* ================================
   INNER PAGE HERO
   ================================ */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    opacity: .08;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .section-tag {
    color: var(--gold);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   ABOUT PAGE
   ================================ */
.about-full {
    padding: 80px 0;
}

.about-full-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-full-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 24px;
}

.values-section {
    padding: 80px 0;
    background: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

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

.value-card .value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(0, 31, 63, .06);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.value-card p {
    font-size: .92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================
   LECTURERS PAGE
   ================================ */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card-info .team-role {
    font-size: .8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.team-card-info p {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Lead lecturer — bigger card */
.team-lead {
    padding: 80px 0;
    background: var(--off-white);
}

/* ================================
   GALLERY PAGE
   ================================ */
.gallery-full {
    padding: 80px 0;
}

.gallery-full .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-full .gallery-item {
    cursor: pointer;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .25s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .1);
}

/* ================================
   CONTACT PAGE
   ================================ */
.contact-full {
    padding: 80px 0;
}

.contact-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-full h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info-full>p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-cards-light {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card-light {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    transition: border-color .25s, box-shadow .25s;
}

.contact-card-light:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.contact-card-light .contact-icon {
    background: rgba(0, 31, 63, .08);
    color: var(--navy);
}

.contact-card-light small {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    display: block;
    margin-bottom: 2px;
}

.contact-card-light p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-form-full {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form-full h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.map-section {
    padding: 0 0 80px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================
   COURSES PAGE — DETAIL
   ================================ */
.courses-detail {
    padding: 80px 0;
}

.course-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    transition: box-shadow .3s;
}

.course-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.course-detail-card.featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy-light);
}

.course-detail-card.featured h3 {
    color: var(--white);
}

.course-detail-card.featured p {
    color: rgba(255, 255, 255, .7);
}

.course-detail-card.featured .module-tag {
    background: rgba(212, 175, 55, .15);
    color: var(--gold);
}

.course-detail-info h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.course-detail-info>p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.course-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
}

.course-meta-item svg {
    color: var(--gold);
}

.course-detail-card.featured .course-meta-item {
    color: var(--gold);
}

.module-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 40px;
    background: var(--off-white);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 16px;
}

.course-modules-list {
    list-style: none;
}

.course-modules-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: .95rem;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
}

.course-modules-list li:last-child {
    border-bottom: none;
}

.course-modules-list svg {
    color: var(--gold);
    flex-shrink: 0;
}

.course-detail-card.featured .course-modules-list li {
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .08);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .course-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .register-grid {
        grid-template-columns: 1fr;
    }

    .register-form-wrap {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .credentials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 50px auto 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-detail-card {
        grid-template-columns: 1fr;
        padding: 36px;
    }

    .contact-full-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-deep);
        padding: 80px 32px 32px;
        transition: right .35s var(--ease);
        box-shadow: -4px 0 30px rgba(0, 0, 0, .3);
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 24px;
    }

    nav a {
        font-size: 1.1rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 120px 24px 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .courses-section,
    .about-section,
    .register-section,
    .gallery-section {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .register-info h2 {
        font-size: 2rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 50px auto 0;
    }

    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .contact-info-full h2 {
        font-size: 1.8rem;
    }

    .course-meta {
        flex-wrap: wrap;
    }

    .map-wrap {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .course-card {
        padding: 28px 24px 28px;
    }

    .register-form {
        padding: 28px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}