@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --bg-dark: #041711;
    --bg-surface: #07251c;
    --card-bg: #0b3327;
    --gold: #fbbf24;
    --gold-dark: #d97706;
    --gold-gradient: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    --gold-glow: 0 0 25px rgba(245, 158, 11, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a3c2b7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

.wrap {
    width: min(1280px, calc(100% - 36px));
    margin: auto;
}

a { text-decoration: none; color: inherit; }

/* Top Announcement Bar */
.top {
    background: linear-gradient(90deg, #d97706, #fbbf24, #d97706);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 7px 0;
}

.top .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top a {
    color: #000;
    font-weight: 800;
    text-decoration: underline;
}

/* Header & Brand */
header {
    background: rgba(4, 23, 17, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.head {
    min-height: 95px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: var(--gold-glow);
    object-fit: contain;
}

.brand strong {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.brand small {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.head-info {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.head-info i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.head-info b { font-size: 14px; color: #fff; }
.head-info small { color: var(--text-secondary); font-size: 11px; }

.head button {
    display: none;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
}

/* Sticky Navbar */
nav {
    background: rgba(7, 37, 28, 0.92);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

nav .wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    padding: 16px 18px;
    font-weight: 700;
    font-size: 14px;
    color: #d1e3dc;
    transition: all 0.25s ease;
    border-bottom: 3px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: rgba(251, 191, 36, 0.08);
}

.cta {
    background: var(--gold-gradient) !important;
    color: #000 !important;
    font-weight: 800 !important;
    border-radius: 10px;
    padding: 10px 20px !important;
    margin-left: auto;
    border-bottom: none !important;
    box-shadow: var(--gold-glow);
    transition: all 0.3s ease !important;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.6);
}

.app-download-nav {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px;
    margin: 6px 8px;
    padding: 8px 14px !important;
    border-bottom: none !important;
    color: #3ddc84 !important;
}

.app-download-nav:hover {
    background: rgba(61, 220, 132, 0.2) !important;
}

/* Dropdown */
.nav-drop { position: relative; }
.drop-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 320px;
    background: #092f23;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 200;
    overflow: hidden;
}

.drop-menu a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    color: #e2f0ea;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drop-menu a:hover {
    background: rgba(251, 191, 36, 0.15);
    color: var(--gold);
}

.nav-drop:hover .drop-menu { display: block; }

/* Stats Bar */
.stats { margin: -30px 0 40px 0; position: relative; z-index: 10; }
.stats .wrap {
    background: rgba(11, 51, 39, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 24px 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.stats div {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats div:last-child { border: none; }
.stats b { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 800; color: var(--gold); display: block; }
.stats span { font-size: 13px; color: var(--text-secondary); font-weight: 600; }

/* General Sections */
.section { padding: 80px 0; }
.soft { background: #061d15; }
.title { text-align: center; margin-bottom: 45px; }
.title span { color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.title h2 { font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 800; margin: 10px 0; color: #fff; }

/* Buttons */
.btn {
    border: none;
    background: var(--gold-gradient);
    color: #000;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--gold-glow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.6);
    color: #000;
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--gold);
    color: #000;
}

/* Feature Cards */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.features article {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    transition: all 0.35s ease;
}

.features article:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.features i { font-size: 36px; color: var(--gold); margin-bottom: 16px; display: block; }
.features h3 { font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.features p { color: var(--text-secondary); font-size: 14px; margin: 0; line-height: 1.6; }

/* Testimonials / Reviews */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reviews article {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.reviews article:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.4);
}

.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.reviews p { color: #e2f0ea; font-size: 15px; line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.reviews b { color: #fff; font-size: 16px; display: block; }
.reviews small { color: var(--gold); font-size: 12px; font-weight: 700; }

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #03140e, #07291f);
    padding: 85px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact h2 { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.contact form {
    background: rgba(11, 51, 39, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 35px;
    display: grid;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact input, .contact select, .contact textarea {
    width: 100%;
    padding: 16px;
    background: #041a13;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
}

.contact input:focus, .contact select:focus, .contact textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.25);
}

/* Footer */
footer {
    background: #020e0a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding-top: 60px;
}

.foot {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
}

.foot h6 { color: var(--gold); font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.foot a { color: var(--text-secondary); font-size: 14px; display: block; margin-bottom: 10px; transition: color 0.2s; }
.foot a:hover { color: var(--gold); }

.copy {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 45px;
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
}

/* WhatsApp Floating Button */
.wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid;
    place-items: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.wa:hover { transform: scale(1.1); }

/* Official Courses & Course Detail Page Styling */
.inner-hero {
    background: radial-gradient(circle at 50% 40%, #094032 0%, #041711 70%, #020c09 100%);
    padding: 70px 0 50px 0;
    text-align: center;
    border-bottom: 1.5px solid rgba(251, 191, 36, 0.2);
}

.inner-hero span {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--gold-glow);
    margin-bottom: 14px;
}

.inner-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px 0;
}

.inner-hero p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
}

/* Official Courses Grid */
.courses.official-courses {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
    gap: 30px !important;
    padding: 20px 0 !important;
}

.official-courses article {
    background: var(--card-bg) !important;
    border: 1.5px solid rgba(251, 191, 36, 0.25) !important;
    border-radius: 26px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.35s ease !important;
}

.official-courses article:hover {
    transform: translateY(-8px) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), var(--gold-glow) !important;
}

.official-courses .pic {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: #041f17;
}

.official-courses .pic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.official-courses article:hover .pic img {
    transform: scale(1.08) !important;
}

.official-courses .pic span {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--gold-glow);
    text-transform: uppercase;
}

.official-courses .body {
    padding: 26px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.official-courses .body h3 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 10px 0 !important;
}

.official-courses .body p {
    color: var(--text-secondary) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
}

.plan-mini-list {
    display: grid !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
}

.plan-mini-list > div {
    background: rgba(4, 23, 17, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 10px 14px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.plan-mini-list span {
    font-size: 12px !important;
    color: var(--gold) !important;
    font-weight: 800 !important;
}

.plan-mini-list b {
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 900 !important;
}

.plan-mini-list small {
    display: block !important;
    font-size: 11px !important;
    color: var(--text-secondary) !important;
}

.course-card-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: auto !important;
}

.course-card-actions .btn {
    flex: 1 !important;
    text-align: center !important;
    justify-content: center !important;
}

/* Course Detail Page */
.course-detail-hero {
    background: radial-gradient(circle at 60% 40%, #094032 0%, #041711 70%, #020c09 100%);
    padding: 60px 0;
    border-bottom: 1.5px solid rgba(251, 191, 36, 0.2);
}

.course-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.course-detail-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 900;
    color: #fff;
    margin: 12px 0;
}

.course-detail-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.course-detail-hero img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid var(--gold);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), var(--gold-glow);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.pricing-grid article {
    background: var(--card-bg);
    border: 1.5px solid rgba(251, 191, 36, 0.25);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.pricing-grid article:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 30px 70px rgba(0,0,0,0.7), var(--gold-glow);
}

.pricing-grid h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    color: #fff;
    margin: 8px 0;
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--gold);
    margin: 14px 0 20px 0;
}

.pricing-grid ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    gap: 12px;
}

.pricing-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-grid li i {
    color: var(--gold);
}

@media(max-width: 900px) {
    .course-detail-grid { grid-template-columns: 1fr; }
    .official-courses { grid-template-columns: 1fr !important; }
}
