/* ===== Goronti Skill Academy - White + Blue + Orange Theme ===== */
:root {
    --blue: #0d4fd6;
    --blue-dark: #08349a;
    --orange: #ff7a1a;
    --orange-dark: #e5640a;
    --ink: #14213d;
    --soft: #f4f7ff;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    background: #fff;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Sora', sans-serif;
}

.text-orange { color: var(--orange) !important; }
.bg-soft { background: var(--soft); }

.btn-primary {
    background: var(--blue);
    border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-orange {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

.text-primary { color: var(--blue) !important; }
.bg-primary { background: var(--blue) !important; }

.brand-icon {
    display: inline-flex;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    margin-right: 6px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #2a6bff 100%);
    color: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    background: rgba(255,122,26,.25);
    border-radius: 50%;
}
.hero .badge-pill {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .9rem;
}
.hero h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 3.4rem); }
.hero .highlight { color: var(--orange); }

/* Cards */
.course-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(13, 79, 214, .08);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(13, 79, 214, .16);
}
.course-card img.thumb { height: 180px; object-fit: cover; width: 100%; }
.price-old { text-decoration: line-through; color: #9aa3b5; font-size: .9rem; }
.price-new { color: var(--orange); font-weight: 800; font-size: 1.2rem; }
.discount-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .78rem;
    font-weight: 700;
}

/* Section titles */
.section-title { font-weight: 800; }
.section-title span { color: var(--orange); }
.section-sub { color: #66708a; max-width: 560px; }

/* Feature boxes */
.feature-box {
    background: #fff;
    border-radius: 18px;
    padding: 28px 22px;
    box-shadow: 0 4px 18px rgba(20, 33, 61, .06);
    height: 100%;
    transition: transform .2s ease;
}
.feature-box:hover { transform: translateY(-4px); }
.feature-box .icon {
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--soft);
    color: var(--blue);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 6px 22px rgba(20, 33, 61, .07);
    height: 100%;
}
.testimonial-card img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; }

/* Notices */
.notice-item {
    background: #fff;
    border-left: 4px solid var(--orange);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 3px 14px rgba(20,33,61,.06);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 999;
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .4);
    transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* Footer */
.footer { background: var(--ink); }
.footer-links a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

/* Dashboard */
.dash-sidebar {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(20,33,61,.06);
    overflow: hidden;
}
.dash-sidebar a {
    display: block;
    padding: 13px 20px;
    color: var(--ink);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s;
}
.dash-sidebar a:hover, .dash-sidebar a.active {
    background: var(--soft);
    border-left-color: var(--orange);
    color: var(--blue);
    font-weight: 700;
}

.stat-card {
    border-radius: 18px;
    padding: 22px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(20,33,61,.12);
}

/* Admin */
.admin-sidebar {
    background: var(--ink);
    min-height: 100vh;
}
.admin-sidebar a {
    display: block;
    color: rgba(255,255,255,.7);
    padding: 11px 22px;
    text-decoration: none;
    font-size: .95rem;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    color: #fff;
    background: rgba(255,122,26,.18);
    border-left: 3px solid var(--orange);
}

/* Learn page */
.lesson-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--ink);
    text-decoration: none;
    margin-bottom: 6px;
}
.lesson-list a:hover { background: var(--soft); }
.lesson-list a.active { background: var(--blue); color: #fff; }
.lesson-list a.locked { opacity: .55; cursor: not-allowed; }

.video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}
.video-wrap iframe, .video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }

.rounded-4 { border-radius: 16px !important; }
.form-control, .form-select { border-radius: 12px; padding: 10px 14px; }
.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(13,79,214,.12);
}
