﻿/* ============================================================
   Bofor Özel Güvenlik Eğitim Kurumu — Ana Stil Dosyası
   ============================================================ */

:root {
    --navy:        #0B1E3D;
    --navy-mid:    #122952;
    --navy-light:  #1A3A6B;
    --accent:      #C9A84C;
    --accent-dark: #A88835;
    --accent-soft: rgba(201, 168, 76, 0.14);
    --white:       #FFFFFF;
    --light:       #F4F6FA;
    --light-bg:    #F4F6FA;
    --gray:        #5C6578;
    --text-muted:  #6B7280;
    --border:      #DDE3EE;
    --shadow:      0 4px 24px rgba(11, 30, 61, 0.07);
    --shadow-lg:   0 16px 48px rgba(11, 30, 61, 0.12);
    --radius:      12px;
    --radius-lg:   18px;
    --trans:       all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    color: #1a2332;
    line-height: 1.75;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Topbar ---- */
.topbar {
    background: var(--navy);
    padding: 10px 0;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-left a,
.topbar-right a {
    color: rgba(255, 255, 255, 0.72);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.topbar-left a:hover,
.topbar-right a:hover { color: #fff; }
.topbar-left i,
.topbar-right i { color: var(--accent); font-size: 11px; }

/* ---- Navbar ---- */
.site-navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(11, 30, 61, 0.06);
}
.site-navbar .container {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 24px;
    min-height: 78px;
}
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo img {
    height: 64px;
    width: 64px;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.88; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    padding: 9px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--accent-soft);
}
.nav-link .fa-chevron-down { font-size: 10px; transition: var(--trans); }
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }
.dropdown-panel {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 16px 10px 10px;
    z-index: 100;
    border: 1px solid var(--border);
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.nav-item:hover .dropdown-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.dropdown-panel a {
    display: block;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    border-radius: 8px;
}
.dropdown-panel a:hover {
    background: var(--accent-soft);
    color: var(--navy);
}
.btn-sinav {
    background: var(--navy);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13.5px;
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(11, 30, 61, 0.22);
}
.btn-sinav:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 30, 61, 0.28);
}
.nav-toggle {
    display: none;
    background: var(--light);
    border: none;
    font-size: 20px;
    color: var(--navy);
    cursor: pointer;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

/* ---- Page Header ---- */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 88px 0 76px;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}
.page-header h1 {
    position: relative;
    color: #fff;
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.breadcrumb {
    position: relative;
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    align-items: center;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.25); }
.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1652739758426-56a564265f9e?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center 30%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(11, 30, 61, 0.96) 0%,
        rgba(11, 30, 61, 0.88) 50%,
        rgba(26, 58, 107, 0.75) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 108px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--accent);
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-content h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}
.hero-content h1 .accent { color: var(--accent); }
.hero-content .hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat-row {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-num {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- Buttons ---- */
.btn-primary {
    background: #fff;
    color: var(--navy);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}
.btn-primary.on-light {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(11, 30, 61, 0.2);
}
.btn-primary.on-light:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}
.btn-navy {
    background: var(--navy);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(11, 30, 61, 0.2);
}
.btn-navy:hover {
    background: var(--navy-light);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Section Helpers ---- */
.section { padding: 100px 0; }
.section-sm { padding: 68px 0; }
.bg-light { background: var(--light); }
.bg-navy { background: var(--navy); }
.section-label {
    display: inline-block;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title .accent { color: var(--navy-light); }
.section-title.light { color: #fff; }
.section-desc { color: var(--gray); font-size: 15.5px; max-width: 560px; line-height: 1.8; }
.section-desc.center { margin: 0 auto; }
.text-center { text-align: center; }
.divider,
.divider-teal {
    width: 44px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 18px 0;
}
.divider.center,
.divider-teal.center { margin: 18px auto; }

/* ---- Feature Cards ---- */
.features-strip {
    padding: 0;
    background: var(--light);
    margin-top: -48px;
    position: relative;
    z-index: 3;
    padding-bottom: 56px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
    border: 1px solid var(--border);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--accent));
    border-radius: 3px 3px 0 0;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card .icon-box {
    width: 52px;
    height: 52px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.feature-card .icon-box i { font-size: 21px; color: var(--navy); }
.feature-card .feat-num {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(11, 30, 61, 0.05);
    line-height: 1;
}
.feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.feature-card p { font-size: 13.5px; color: var(--gray); margin: 0; line-height: 1.7; }

/* ---- About Section ---- */
.about-img-wrap { position: relative; }
.about-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-float-stat {
    position: absolute;
    bottom: 28px;
    right: -18px;
    background: var(--navy);
    color: #fff;
    padding: 20px 26px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(201, 168, 76, 0.35);
}
.about-float-stat .num { font-size: 38px; font-weight: 800; line-height: 1; color: var(--accent); }
.about-float-stat .lbl { font-size: 11px; font-weight: 600; opacity: 0.85; margin-top: 4px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: #374151;
}
.check-list li i { color: var(--navy); font-size: 15px; margin-top: 4px; flex-shrink: 0; }

/* ---- Course Cards ---- */
.course-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--trans);
    border: 1px solid var(--border);
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}
.course-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--trans);
}
.course-card:hover .icon-box { background: var(--navy-light); }
.course-card .icon-box i { font-size: 24px; color: #fff; }
.course-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.course-card p { font-size: 13.5px; color: var(--gray); flex-grow: 1; line-height: 1.7; }
.course-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 20px;
}
.course-link:hover { color: var(--navy-light); gap: 11px; }

/* ---- Stats ---- */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 76px 0;
}
.stat-box { text-align: center; color: #fff; }
.stat-box .num {
    font-size: clamp(38px, 5vw, 52px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-box .lbl { font-size: 13px; font-weight: 600; opacity: 0.72; }

/* ---- CTA Box ---- */
.cta-section { background: var(--light); padding: 64px 0; }
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-box::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    pointer-events: none;
}
.cta-box h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: -0.02em;
}
.cta-box p { color: rgba(255, 255, 255, 0.72); position: relative; margin: 0; }
.cta-box .btn-accent,
.cta-box .btn-teal {
    background: #fff;
    color: var(--navy);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.cta-box .btn-accent:hover,
.cta-box .btn-teal:hover {
    background: var(--accent);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ---- Course Detail Page ---- */
.course-detail-section { padding: 88px 0; }
.course-detail-section:nth-child(even) { background: var(--light); }
.course-detail-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.course-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.course-meta-tag {
    background: var(--accent-soft);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}
.course-checklist { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.course-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}
.course-checklist li i { color: var(--navy); font-size: 14px; margin-top: 4px; }

/* ---- Form Styles ---- */
.form-section { padding: 88px 0; }
.form-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 48px;
    border: 1px solid var(--border);
}
.form-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.02em; }
.form-subtitle { color: var(--gray); font-size: 14px; margin-bottom: 30px; }
.form-group { margin-bottom: 22px; }
.form-label { font-weight: 600; font-size: 13.5px; color: var(--navy); margin-bottom: 7px; display: block; }
.form-label span { color: #DC2626; margin-left: 2px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #1a2332;
    outline: none;
    transition: var(--trans);
    background: #fff;
}
.form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11, 30, 61, 0.1);
}
.form-control::placeholder { color: #9CA3AF; }
textarea.form-control { resize: vertical; min-height: 110px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    transition: var(--trans);
}
.radio-label:hover { border-color: var(--navy); background: rgba(11, 30, 61, 0.03); }
.radio-label input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #4B5563;
    cursor: pointer;
    line-height: 1.5;
}
.checkbox-label input { accent-color: var(--navy); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.btn-submit {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(11, 30, 61, 0.2);
}
.btn-submit:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ---- Docs Box ---- */
.docs-box {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}
.docs-box h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}
.doc-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border-left: 3px solid var(--navy);
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 4px rgba(11, 30, 61, 0.04);
}
.doc-item i { color: var(--navy); margin-top: 2px; flex-shrink: 0; }

/* ---- Sinav Sonrasi ---- */
.process-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--trans);
    border: 1px solid var(--border);
    border-top: 3px solid var(--navy);
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-card .icon-wrap {
    width: 54px;
    height: 54px;
    background: var(--accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.process-card .icon-wrap i { font-size: 21px; color: var(--navy); }
.process-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process-card p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }
.process-card .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13.5px;
    margin-top: 16px;
}
.process-card .btn-link:hover { color: var(--navy-light); gap: 10px; }
.belgeler-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border);
}
.belgeler-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}
.belgeler-card h5 i { color: var(--navy); }
.belge-list { display: flex; flex-direction: column; gap: 10px; }
.belge-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    padding: 10px 14px;
    background: var(--light);
    border-radius: 8px;
}
.belge-item i { color: var(--navy); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.download-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--trans);
}
.download-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.download-card .icon { font-size: 28px; color: var(--accent); flex-shrink: 0; }
.download-card .info h5 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.download-card .info p { color: rgba(255, 255, 255, 0.65); font-size: 12px; margin: 0; }
.download-card .dl-btn {
    margin-left: auto;
    background: #fff;
    color: var(--navy);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.download-card .dl-btn:hover { background: var(--accent); color: var(--navy); }

/* ---- Contact Page ---- */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid var(--border);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 46px;
    height: 46px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { color: var(--navy); font-size: 17px; }
.contact-info-text h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-text p,
.contact-info-text a { font-size: 14px; color: var(--gray); display: block; }
.contact-info-text a:hover { color: var(--navy); }
.map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.map-box iframe { display: block; border: none; }

/* ---- Footer ---- */
.main-footer,
.site-footer {
    background: var(--navy);
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.main-footer > .container,
.site-footer > .container {
    padding-top: 56px;
    padding-bottom: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) minmax(150px, 1fr) minmax(140px, 0.9fr) minmax(200px, 1.2fr);
    gap: 40px 36px;
    align-items: start;
    padding-bottom: 44px;
}
.footer-brand { max-width: 300px; }
.footer-logo,
.footer-brand img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    margin-bottom: 18px;
    display: block;
}
.footer-brand p {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}
.social-links,
.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.social-links a,
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--trans);
}
.social-links a:hover,
.footer-social a:hover {
    background: var(--accent);
    color: var(--navy);
    transform: translateY(-2px);
}
.footer-col h5 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.footer-col ul { margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li:last-child { margin-bottom: 0; }
.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(3px);
}
.footer-col ul li a i {
    font-size: 9px;
    color: var(--accent);
    flex-shrink: 0;
}
.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 13.5px;
}
.footer-contact-list li:last-child { margin-bottom: 0; }
.footer-contact-list i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-size: 13px;
}
.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    transition: color 0.2s ease;
}
.footer-contact-list a:hover { color: #fff; }
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
    padding: 16px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.6;
}
.footer-bottom p + p { margin-top: 4px; font-size: 11.5px; }

/* ---- Grid Helpers ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.row > * { padding: 0 12px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }
.g-4 > * { margin-bottom: 24px; }
.g-5 > * { margin-bottom: 48px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }
.gap-4 { gap: 24px; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
    .col-lg-3 { width: 25%; }
    .about-float-stat { right: 10px; bottom: 10px; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 8px 12px;
        gap: 2px;
        border-top: 1px solid var(--border);
    }
    .nav-menu .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
    .nav-menu .btn-sinav {
        padding: 8px 14px;
        font-size: 13px;
    }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .dropdown-panel {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--light);
        margin-top: 2px;
        padding: 4px 6px;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: none;
        transform: none;
    }
    .dropdown-panel a {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
    .nav-item.open .dropdown-panel {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: 300px;
        display: block;
    }
    .site-navbar .container { flex-wrap: wrap; }
    .btn-sinav { margin: 8px 0 0; }
    .hero-stat-row { gap: 28px; }
    .form-box { padding: 28px 22px; }
    .cta-box { padding: 36px 28px; }
    .features-strip { margin-top: -32px; }
}
@media (max-width: 768px) {
    .col-md-6, .col-md-4 { width: 50%; }
    .topbar { display: none; }
    .hero-content { padding: 72px 0; }
    .hero-stat-row { flex-wrap: wrap; gap: 24px; }
    .section { padding: 72px 0; }
    .about-img { height: 300px; }
    .about-float-stat { display: none; }
    .col-3, .col-4 { width: 50%; }
    .col-8 { width: 100%; }
    .cta-box .row > *:last-child { text-align: left !important; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
        padding-bottom: 36px;
    }
    .footer-brand { max-width: none; grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
}
@media (max-width: 576px) {
    .col-md-6, .col-3, .col-4, .col-6 { width: 100%; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { justify-content: center; }
    .course-card, .feature-card, .process-card { margin-bottom: 16px; }
}
