/* ============================================================
   SHREYAS CHESS ACADEMY — style.css
   Clean, separated CSS — no inline styles
   Bootstrap 3.4 compatible
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --gold:        #d4af37;
    --gold-light:  #f5d96b;
    --gold-dark:   #b89020;
    --dark:        #0a0a0a;
    --dark2:       #111114;
    --dark3:       #1a1a1f;
    --white:       #ffffff;
    --text-muted:  #cccccc;
    --text-light:  #888888;
    --green:       #2ecc71;
    --blue:        #3498db;
    --red:         #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #333333;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ===== TYPOGRAPHY UTILITIES ===== */
.text-gold {
    background: linear-gradient(135deg, var(--gold), #f8e88a, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
   
    align-items: center;
    justify-content: center;
    font-size: 17px;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}
.scroll-top i {
      margin-top: 15px;
    margin-left: 15px;
}
.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-4px);
    color: #000000;
}
.scroll-top {
    cursor: pointer;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: waPulse 2.5s infinite;
}

.wa-float:hover {
    transform: scale(1.12);
    color: #ffffff;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.12); }
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--dark);
    padding: 9px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-left span {
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i {
    color: var(--gold);
}

.topbar-right {
    display: flex;
    gap: 10px;
}

.topbar-right a {
    color: var(--text-muted);
    font-size: 13px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.topbar-right a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

/* ===== NAVBAR ===== */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    margin-top: 8px;
}

.nav-logo img {
    
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    background: #2c2a2a;
    /* position: absolute; */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
         margin: 7px 28px !important;
    padding: 10px !important;
    height: 110px;
    top: -10%;
    z-index: 999;
    margin-top: 15px !important;
}

@media (max-width: 768px) {
    .nav-logo img {
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        left: 29px;
              margin-bottom: 20px !important;
        height: 79px;
        top: 0px;
        z-index: 999;
    }

}
.nav-logo-fallback {
    display: none;
    align-items: center;
    gap: 10px;
}

.nav-logo-icon {
    font-size: 30px;
    color: var(--gold);
}

.nav-logo-brand {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-logo-tag {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #dddddd;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.07);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark) !important;
    border-radius: 25px;
    padding: 9px 20px !important;
    font-weight: 800;
    margin-left: 8px;
}

.nav-links .nav-cta:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(212, 175, 55, 0.4);
}

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

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

/* ===== SECTION COMMON ===== */
section {
    padding: 88px 0;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 14px;
}

.section-title span {
    color: var(--gold);
}

.section-title-white {
    color: #ffffff;
}

.heading-center {
    text-align: center;
    margin-bottom: 52px;
}

.heading-center p {
    color: #777777;
    font-size: 15.5px;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pieceBob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #050505 0%, #0d0d0a 50%, #141208 100%);
    min-height: 100vh;
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 30%, rgba(212, 175, 55, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image:
        linear-gradient(45deg, rgba(212, 175, 55, 1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 175, 55, 1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 1) 75%);
    background-size: 64px 64px;
    background-position: 0 0, 0 32px, 32px -32px, -32px 0;
}

.hero-left {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    animation: fadeInDown 0.8s ease both;
}

.hero-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s 0.15s ease both;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 800;
    color: #eeeeee;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s 0.25s ease both;
}

.hero-levels-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 20px;
    border-radius: 4px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s 0.33s ease both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s 0.5s ease both;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
    color: #000000;
}

.btn-outline-hero {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-hero:hover {
    background: var(--gold);
    color: #000000;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat-num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-lbl {
    font-size: 11px;
    color: #999999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-lbl i {
    color: var(--gold);
    margin-right: 4px;
}

/* ===== COUNTRIES TICKER ===== */
.ticker-section {
    background: var(--dark2);
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding: 12px 0;
    overflow: hidden;
}
nav-logo
.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: tickerScroll 45s linear infinite;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    font-size: 13.5px;
    color: #cccccc;
    border-right: 1px solid rgba(212, 175, 55, 0.12);
}

.ticker-flag {
    font-size: 17px;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== WHAT WE OFFER ===== */
.offer-section {
    background: #f9f7f0;
}

.offer-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 22px;
    border: 1px solid #eeeeee;
    border-top: 4px solid var(--gold);
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    margin-bottom: 22px;
}

.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-icon {
    transform: rotateY(360deg);
}

.offer-icon i {
    font-size: 28px;
    color: #ffffff;
}

.offer-card h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.offer-card p {
    font-size: 13.5px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ===== COACHING SECTION ===== */
.coaching-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
}

.coaching-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.35s ease;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    height: 100%;
    margin-bottom: 24px;
}

.coaching-card:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.coaching-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coaching-icon-blue {
    background: linear-gradient(135deg, #1a6fc4, #3498db);
}

.coaching-icon-green {
    background: linear-gradient(135deg, #1a8a45, #2ecc71);
}

.coaching-card-icon i {
    font-size: 32px;
    color: #ffffff;
}

.coaching-card-body h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.coaching-title-blue {
    color: #5dade2;
}

.coaching-title-green {
    color: #58d68d;
}

.coaching-card-body p {
    font-size: 14.5px;
    color: #aaaaaa;
    line-height: 1.7;
    margin: 0;
}

.feature-list {
    margin-top: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #bbbbbb;
    margin-bottom: 6px;
}

.feature-blue i {
    color: #5dade2;
}

.feature-green i {
    color: #58d68d;
}

/* ===== COACH CREDENTIALS ===== */
.creds-section {
    background: #ffffff;
}

.creds-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.creds-image-box {
    background: linear-gradient(145deg, #0d0d0a, #1a1a10);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.creds-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0;
    border-radius: 20px;
}

.creds-placeholder {
    font-size: 88px;
    color: rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

.creds-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.5) 60%, transparent);
    padding: 24px;
    z-index: 3;
    border-radius: 0 0 20px 20px;
}

.creds-overlay-name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.creds-overlay-sub {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 14px;
}

.creds-stats {
    display: flex;
    gap: 14px;
}

.creds-stat {
    flex: 1;
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 10px 6px;
}

.creds-stat-num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
}

.creds-stat-num i {
    color: var(--gold);
}

.creds-stat-lbl {
    font-size: 10px;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.creds-content {
    padding-left: 20px;
    margin-bottom: 30px;
}

.creds-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 20px;
}

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

.creds-red {
    color: #c0392b;
}

.since-badge {
    display: inline-block;
    background: #c0392b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 8px;
    font-family: 'Nunito', sans-serif;
}

.year-badge {
    display: inline-block;
    background: var(--gold);
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 8px;
    font-family: 'Nunito', sans-serif;
}

.creds-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.creds-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #444444;
}

.creds-list li i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.trained-box {
    background: linear-gradient(135deg, #0a0a0a, #1a1a10);
    border: 1.5px solid rgba(212, 175, 55, 0.28);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.trained-box > i {
    font-size: 34px;
    color: var(--gold);
}

.trained-num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: var(--gold);
}

.trained-txt {
    font-size: 14px;
    color: #cccccc;
    font-weight: 600;
}

.btn-creds {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-creds:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(212, 175, 55, 0.4);
    color: #000000;
}

/* ===== WHY JOIN US ===== */
.why-section {
    background: #f9f7f0;
}

.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 24px;
    border: 1px solid #eeeeee;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    height: calc(100% - 24px);
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-icon i {
    font-size: 26px;
    color: #000000;
}

.why-card h4 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.slots-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    animation: slotPulse 1.8s infinite;
    z-index: 2;
}

@keyframes slotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.5); }
    50%       { box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

.enroll-btn {
    display: block;
    margin-top: 10px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    transition: all 0.3s ease;
}

.enroll-btn:hover {
    background: #c0392b;
    color: #ffffff;
}

/* ===== COURSES SECTION ===== */
.courses-section {
    background: #ffffff;
}

.course-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    font-size: 14px;
    font-weight: 700;
    color: #666666;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: #000000;
}

.course-col {
    margin-bottom: 24px;
}

.course-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.course-header {
    padding: 28px 22px;
    color: #ffffff;
    text-align: center;
}

.course-header-beginner {
    background: linear-gradient(135deg, #1a3a1a, #2a5a2a);
}

.course-header-intermediate {
    background: linear-gradient(135deg, #0f3460, #1a4f8a);
}

.course-header-advanced {
    background: linear-gradient(135deg, #7b3f00, #b5860d);
}

.course-piece-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.course-level-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 5px;
}

.course-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.course-body {
    padding: 22px;
    flex: 1;
    background: #ffffff;
}

.course-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #444444;
}

.course-feature:last-child {
    border-bottom: none;
}

.course-feature i {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

.course-footer {
    padding: 18px 22px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
}

.course-age {
    font-size: 13px;
    color: #888888;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-age i {
    color: var(--gold);
}

.course-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
}

.course-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(212, 175, 55, 0.4);
    color: #000000;
}

/* ===== BENEFITS ===== */
.benefits-section {
    background: #ffffff;
    padding: 80px 0;
}

.benefit-item {
    text-align: center;
    padding: 26px 14px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    margin-bottom: 22px;
}

.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 26px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.benefit-item i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.benefit-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #222222;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: #f9f7f0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 26px;
    height: calc(100% - 26px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 72px;
    color: var(--gold);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.t-stars {
    color: var(--gold);
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.t-text {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #000000;
}

.t-name {
    font-size: 14px;
    font-weight: 800;
    color: #222222;
}

.t-info {
    font-size: 12px;
    color: #999999;
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    background: #f9f7f0;
}

.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.08);
}

.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    color: #222222;
    gap: 14px;
}

.faq-question > span i {
    color: var(--gold);
    margin-right: 10px;
}

.faq-question > i.fa-chevron-down {
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question > i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 14.5px;
    color: #555555;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ===== DEMO FORM ===== */
.demo-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 60%);
    pointer-events: none;
}

.demo-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.demo-left {
    margin-bottom: 30px;
}

.demo-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.demo-heading span {
    color: var(--gold);
}

.demo-left > p {
    font-size: 15px;
    color: #bbbbbb;
    line-height: 1.8;
    margin-bottom: 22px;
}

.demo-perks {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.demo-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 14.5px;
    font-weight: 600;
}

.demo-perks li i {
    color: var(--gold);
    font-size: 15px;
    width: 18px;
}

.demo-contact-box {
    margin-top: 24px;
    padding: 18px;
    background: rgba(212, 175, 55, 0.06);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
}

.demo-contact-label {
    font-size: 13px;
    color: #aaaaaa;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.demo-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 18px;
    font-weight: 800;
}

.demo-phone-link i {
    color: #25d366;
    font-size: 22px;
}

.demo-website {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888888;
    font-size: 13px;
}

.demo-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 30px;
}

.demo-form-title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.demo-form-title i {
    color: var(--gold);
}

/* ===== YOUR OLD CSS ===== */
.form-group-custom {
    margin-bottom: 14px;
}

.form-group-custom label {
    font-size: 11px;
    font-weight: 700;
    color: #aaaaaa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.form-group-custom label i {
    margin-right: 4px;
}

/* ===== NEW PHONE FIELD DESIGN ===== */

.phone-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

/* DROPDOWN */
.country-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  cursor: pointer;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
}

/* ICON */
.country-dropdown i {
  font-size: 12px;
}

/* COUNTRY LIST */
.country-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #1a1a1a;
  border-radius: 6px;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  z-index: 999;
}

/* SHOW */
.country-list.show {
  display: block;
}

/* ITEMS */
.country-list div {
  padding: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.country-list div:hover {
  background: #f39c12;
  color: #000;
}

/* INPUT */
.phone-wrap input {
  flex: 1;
  padding: 10px;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 0 6px 6px 0;
}

.phone-wrap input::placeholder {
  color: #aaa;
}


.input-custom {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
    display: block;
}

.input-custom:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.input-custom option {
    background: #1a1a1a;
    color: #ffffff;
}

.phone-wrap {
    display: flex;
    gap: 8px;
}

.phone-prefix {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    padding: 12px 10px;
    color: #aaaaaa;
    font-size: 14px;
    white-space: nowrap;
    width: 62px;
    text-align: center;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.4);
}

.btn-submit-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #666666;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #0a0800, #1a1400, #0a0800);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '♟';
    position: absolute;
    font-size: 400px;
    color: rgba(212, 175, 55, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-inner .section-label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.cta-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.cta-heading span {
    color: var(--gold);
}

.cta-tagline {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.cta-sub {
    font-size: 16px;
    color: #bbbbbb;
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    padding: 15px 38px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: #000000;
}

.btn-cta-wa {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-wa:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-cta-phone {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 34px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-phone:hover {
    background: var(--gold);
    color: #000000;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.14);
    padding: 64px 0 0;
}

.footer-row {
    margin-bottom: 46px;
}

.footer-brand-logo {
    margin-bottom: 14px;
}

.footer-brand-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.footer-logo-fallback {
    display: none;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    font-size: 30px;
    color: var(--gold);
}

.footer-logo-brand {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 14px;
    color: #c8bebe;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #000000;
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col {
    margin-bottom: 30px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--gold);
}
.footer-col h5 {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.footer-col h5 i {
    margin-right: 6px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 9px;
    color: #c8bebe;
}

.footer-col ul li a {
    font-size: 13.5px;
    color: #c8bebe;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-col ul li a i {
    font-size: 11px;
    color: var(--gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #666666;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom span {
    font-size: 12.5px;
    color: #444444;
}

.footer-bottom a {
    color: #555555;
    transition: color 0.3s ease;
}

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

/* ===== FOOTER STRIP — Invictus Credit ===== */
.footer-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 0;
    text-align: center;
    font-size: 12px;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-strip a {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    transition: opacity 0.3s ease;
}

.footer-strip a:hover {
    opacity: 0.8;
}

.footer-strip a img {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .creds-content {
        padding-left: 0;
    }
}

/* ===== TABLET (≤ 992px) ===== */
@media (max-width: 992px) {
    .creds-content {
        padding-left: 0;
        padding-top: 20px;
    }

    /* Demo section — stack left content above form */
    .demo-left {
        margin-bottom: 36px;
    }
}

/* ===== MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .topbar-left {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        padding: 14px;
        gap: 2px;
        z-index: 999;
    }

    .nav-links.open {
        align-items: flex-start;
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* --- Coaching cards --- */
    .coaching-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .coaching-card-icon {
        margin-bottom: 10px;
    }

    /* --- Creds section — image full width on mobile --- */
    .creds-row {
        display: block;
    }

    .creds-image-box {
        min-height: 320px;
        margin-bottom: 28px;
        border-radius: 16px;
    }

    .creds-content {
        padding-left: 0;
        padding-top: 0;
    }

    .creds-heading {
        font-size: 24px;
    }

    .since-badge,
    .year-badge {
        display: inline-block;
        margin-top: 4px;
    }

    .trained-box {
        padding: 14px 16px;
    }

    .trained-num {
        font-size: 26px;
    }

    /* --- Benefits section --- */
    .benefits-section {
        padding: 60px 0;
    }

    .benefit-item {
        padding: 20px 10px;
        margin-bottom: 16px;
    }

    .benefit-item i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .benefit-title {
        font-size: 12.5px;
    }

    /* --- Demo section --- */
    .demo-section {
        padding: 60px 0;
    }

    .demo-row {
        display: block;
    }

    .demo-left {
        margin-bottom: 36px;
    }

    .demo-heading {
        font-size: 26px;
    }

    .demo-form-wrap {
        padding: 24px 18px;
    }

    .demo-contact-box {
        padding: 14px;
    }

    .demo-phone-link {
        font-size: 16px;
    }

    /* --- Footer --- */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-heading {
        font-size: 36px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-heading {
        font-size: 26px;
    }

    /* Benefits — 2 per row on small mobile */
    .benefit-item {
        padding: 16px 8px;
    }

    /* Demo form rows stack to single column on small screens */
    .demo-form-wrap .col-sm-6 {
        width: 100%;
    }

    /* Creds stats smaller on very small screens */
    .creds-stats {
        gap: 8px;
    }

    .creds-stat-num {
        font-size: 16px;
    }

    .creds-overlay {
        padding: 16px;
    }

    .creds-overlay-name {
        font-size: 14px;
    }

    /* Hero stats wrap nicely */
    .hero-stats {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 22px;
    }

    /* CTA buttons stack */
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-wa,
    .btn-cta-phone {
        width: 100%;
        justify-content: center;
    }

    /* Hero buttons stack */
    .hero-btns {
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }
}