/* ============================================================
   GENSHINE CIVIL SERVICES ACADEMY
   Design system — scholarly, trust-led, with editorial polish
   ============================================================ */

:root {
    /* Brand palette — inspired by logo (cobalt blue + golden yellow + warm red accent) */
    --gs-navy:        #0a2540;
    --gs-navy-deep:   #051a32;
    --gs-blue:        #1e4f9c;
    --gs-blue-soft:   #2767c5;
    --gs-blue-tint:   #e8f0fb;
    --gs-gold:        #f4b41a;
    --gs-gold-deep:   #d99807;
    --gs-saffron:     #ff8a00;
    --gs-red:         #e63946;
    --gs-ink:         #0f172a;
    --gs-text:        #2a3548;
    --gs-muted:       #6b7280;
    --gs-line:        #e5e7eb;
    --gs-cream:       #fbf7ee;
    --gs-paper:       #fafaf7;
    --gs-white:       #ffffff;

    /* Type */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent:  'Bebas Neue', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(10, 37, 64, 0.06), 0 10px 25px -5px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 50px -12px rgba(10, 37, 64, 0.18);
    --shadow-glow: 0 10px 40px -10px rgba(244, 180, 26, 0.4);

    /* Radii */
    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--gs-text);
    background: var(--gs-paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--gs-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

p { color: var(--gs-text); }

a { color: var(--gs-blue); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--gs-navy); }

::selection { background: var(--gs-gold); color: var(--gs-ink); }

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

/* ---------- Container width tune ---------- */
@media (min-width: 1200px) {
    .container { max-width: 1180px; }
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
    background: linear-gradient(90deg, var(--gs-navy) 0%, var(--gs-blue) 100%);
    color: var(--gs-white);
    font-size: 13px;
    padding: 9px 0;
    position: relative;
    overflow: hidden;
}
.announcement-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(244, 180, 26, 0.15), transparent);
    animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.announce-text strong { color: var(--gs-gold); }
.announce-link {
    color: var(--gs-white);
    font-weight: 500;
    font-size: 13px;
}
.announce-link:hover { color: var(--gs-gold); }

/* ---------- Navigation ---------- */
.main-nav {
    background: var(--gs-white);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--gs-line);
    transition: box-shadow 0.25s ease;
    z-index: 1020;
}
.main-nav.scrolled {
    box-shadow: var(--shadow-md);
}
.brand-logo {
    height: 50px;
    width: auto;
    transition: transform 0.25s ease;
}
.navbar-brand:hover .brand-logo { transform: scale(1.03); }

.main-nav .nav-link {
    font-weight: 500;
    color: var(--gs-ink);
    padding: 8px 14px !important;
    font-size: 14.5px;
    position: relative;
    letter-spacing: 0.01em;
}
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 14px; right: 14px; bottom: 4px;
    height: 2px;
    background: var(--gs-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }
.main-nav .nav-link.active { color: var(--gs-navy); font-weight: 600; }

.dropdown-menu {
    border: 0;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 8px;
}
.dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 14px;
}
.dropdown-item:hover { background: var(--gs-blue-tint); color: var(--gs-navy); }

.btn-cta {
    background: var(--gs-ink);
    color: var(--gs-white);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border: 0;
}
.btn-cta:hover {
    background: var(--gs-gold);
    color: var(--gs-ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Custom hamburger */
.navbar-toggler { border: 0; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gs-ink);
    margin: 6px 0;
    transition: 0.3s ease;
}

/* ---------- Buttons ---------- */
.btn-primary-gs {
    background: var(--gs-ink);
    color: var(--gs-white);
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 0;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-gs:hover {
    background: var(--gs-gold);
    color: var(--gs-ink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.btn-outline-gs {
    background: transparent;
    color: var(--gs-ink);
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--gs-ink);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-gs:hover {
    background: var(--gs-ink);
    color: var(--gs-white);
    transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #fefaef 0%, #ffffff 50%, #f0f5fd 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(30, 79, 156, 0.10), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--gs-white);
    border: 1px solid var(--gs-line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gs-navy);
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.hero-tagline .dot {
    width: 8px; height: 8px;
    background: var(--gs-red);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
}
.hero h1 .accent {
    color: var(--gs-navy);
    font-style: italic;
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 12px;
    background: var(--gs-gold);
    opacity: 0.45;
    z-index: -1;
    transform: skew(-12deg);
}
.hero-lead {
    font-size: 1.15rem;
    color: var(--gs-text);
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.7;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--gs-line);
}
.hero-meta-item .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gs-muted);
    font-weight: 600;
}
.hero-meta-item .value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gs-ink);
    font-weight: 700;
    margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
    position: relative;
}
.hero-card {
    background: var(--gs-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transform: rotate(-1.2deg);
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gs-gold), var(--gs-saffron), var(--gs-red));
}
.hero-card-label {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--gs-blue);
    margin-bottom: 8px;
}
.hero-card h3 {
    font-size: 1.7rem;
    margin-bottom: 22px;
    font-weight: 800;
}
.hero-card .features li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gs-line);
    font-size: 14.5px;
}
.hero-card .features li:last-child { border: 0; }
.hero-card .features i {
    color: var(--gs-gold-deep);
    font-size: 18px;
    flex-shrink: 0;
}
.hero-stamp {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 110px; height: 110px;
    background: var(--gs-ink);
    color: var(--gs-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: var(--font-accent);
    text-align: center;
    transform: rotate(15deg);
    box-shadow: var(--shadow-md);
    z-index: 3;
}
.hero-stamp .num {
    font-size: 2rem; line-height: 1;
}
.hero-stamp .lbl {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    margin-top: 4px;
    color: var(--gs-white);
}

/* ---------- Sections ---------- */
.section {
    padding: 90px 0;
    position: relative;
}
.section-dark {
    background: var(--gs-navy);
    color: var(--gs-white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--gs-white); }
.section-dark p { color: rgba(255, 255, 255, 0.78); }
.section-cream { background: var(--gs-cream); }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--gs-blue);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.section-dark .section-eyebrow { color: var(--gs-gold); }
.section-eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--gs-gold);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
}
.section-lead {
    font-size: 1.08rem;
    color: var(--gs-text);
    max-width: 680px;
    line-height: 1.7;
}
.section-dark .section-lead { color: rgba(255, 255, 255, 0.78); }

/* ---------- Why-choose cards ---------- */
.feature-card {
    background: var(--gs-white);
    border: 1px solid var(--gs-line);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(244, 180, 26, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gs-gold);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gs-navy), var(--gs-blue));
    color: var(--gs-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.feature-card p {
    font-size: 14.5px;
    color: var(--gs-text);
    position: relative;
    z-index: 1;
    margin: 0;
}
.feature-card .feat-num {
    position: absolute;
    top: 14px; right: 18px;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gs-line);
    font-weight: 700;
    line-height: 1;
}

/* ---------- Course cards ---------- */
.course-card {
    background: var(--gs-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gs-line);
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.course-card-head {
    padding: 32px 30px 24px;
    background: linear-gradient(135deg, var(--gs-navy) 0%, var(--gs-blue) 100%);
    color: var(--gs-white);
    position: relative;
    overflow: hidden;
}
.course-card-head::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.3), transparent 70%);
    border-radius: 50%;
}
.course-card-head .badge-pill {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gs-gold);
    color: var(--gs-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.course-card-head h3 {
    color: var(--gs-white);
    font-size: 1.6rem;
    margin: 0;
    position: relative;
    z-index: 1;
}
.course-card-head p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 8px 0 0;
    position: relative;
    z-index: 1;
}
.course-card-body { padding: 28px 30px; flex: 1; }
.course-features { list-style: none; padding: 0; margin: 0 0 24px; }
.course-features li {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    font-size: 14.5px;
    color: var(--gs-text);
    border-bottom: 1px dashed var(--gs-line);
}
.course-features li:last-child { border: 0; }
.course-features i {
    color: var(--gs-gold-deep);
    flex-shrink: 0;
    margin-top: 3px;
}
.course-card-foot {
    padding: 0 30px 30px;
}
.course-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gs-ink);
    font-weight: 700;
    font-size: 14.5px;
    border-bottom: 2px solid var(--gs-gold);
    padding-bottom: 4px;
    transition: gap 0.25s ease, color 0.25s ease;
}
.course-cta:hover {
    color: var(--gs-navy);
    gap: 14px;
}

/* ---------- Faculty cards ---------- */
.faculty-card {
    background: var(--gs-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gs-line);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.faculty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gs-gold);
}
.faculty-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gs-blue-tint);
    position: relative;
}
.faculty-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.faculty-card:hover .faculty-photo img { transform: scale(1.05); }
.faculty-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.45), transparent 50%);
}
.faculty-info { padding: 22px 22px 26px; }
.faculty-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gs-ink);
    margin: 0 0 6px;
}
.faculty-role {
    font-size: 13px;
    color: var(--gs-blue);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 12px;
}
.faculty-bio {
    font-size: 13.5px;
    color: var(--gs-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Stats ---------- */
.stats-strip {
    background: linear-gradient(135deg, var(--gs-navy) 0%, var(--gs-blue) 100%);
    padding: 64px 0;
    color: var(--gs-white);
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 0h40v1H0zM0 0v40h1V0z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}
.stat-item { position: relative; z-index: 1; text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gs-gold);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ---------- Approach / problem-solution ---------- */
.problem-card, .solution-card {
    background: var(--gs-white);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    border: 1px solid var(--gs-line);
}
.problem-card { background: #fff7f5; border-color: #ffd6cc; }
.solution-card { background: #f0fbf4; border-color: #c6efd1; }
.card-label {
    display: inline-block;
    font-family: var(--font-accent);
    letter-spacing: 0.15em;
    font-size: 0.95rem;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 18px;
}
.problem-card .card-label { background: #ffe1da; color: #b1330b; }
.solution-card .card-label { background: #cdebd7; color: #15693a; }
.point-list { list-style: none; padding: 0; margin: 0; }
.point-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.point-list li:last-child { border: 0; }
.problem-card .point-list li::before {
    content: '\F62A';
    font-family: 'bootstrap-icons';
    position: absolute; left: 0; top: 10px;
    color: var(--gs-red);
    font-size: 1.05rem;
}
.solution-card .point-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute; left: 0; top: 10px;
    color: #15693a;
    font-size: 1.05rem;
}

/* ---------- Founder's Touch programme ---------- */
.founders-touch {
    background: linear-gradient(135deg, #0a2540 0%, #1e4f9c 100%);
    border-radius: var(--radius-lg);
    padding: 56px 50px;
    color: var(--gs-white);
    position: relative;
    overflow: hidden;
}
.founders-touch::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.25), transparent 70%);
    border-radius: 50%;
}
.founders-touch::after {
    content: '\F6D7';
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: -20px; right: 40px;
    font-size: 240px;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}
.founders-touch .badge-fancy {
    display: inline-block;
    background: var(--gs-gold);
    color: var(--gs-ink);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.founders-touch h3 {
    color: var(--gs-white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.founders-touch .ft-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    position: relative;
    z-index: 1;
}
.founders-touch .ft-list li {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* ---------- CTA banner ---------- */
.cta-banner {
    background: var(--gs-ink);
    color: var(--gs-white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.2), transparent 70%);
}
.cta-banner h2 {
    color: var(--gs-white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin: 0;
}
.btn-cta-light {
    background: var(--gs-gold);
    color: var(--gs-ink);
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
}
.btn-cta-light:hover {
    background: var(--gs-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(244, 180, 26, 0.3);
    color: var(--gs-ink);
}

/* ---------- Testimonial / quote block ---------- */
.quote-block {
    background: var(--gs-cream);
    border-left: 4px solid var(--gs-gold);
    padding: 30px 36px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gs-ink);
    line-height: 1.5;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--gs-navy) 0%, var(--gs-blue) 100%);
    color: var(--gs-white);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.2), transparent 70%);
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 0h1v60H0zM0 0v1h60V0z' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
}
.page-header h1 {
    color: var(--gs-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    font-weight: 800;
}
.page-header .breadcrumb-strip {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb-strip a { color: var(--gs-gold); }

/* ---------- Pricing cards ---------- */
.pricing-card {
    background: var(--gs-white);
    border: 1px solid var(--gs-line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gs-gold);
}
.pricing-card.featured {
    background: linear-gradient(135deg, var(--gs-navy), var(--gs-blue));
    color: var(--gs-white);
    border-color: var(--gs-gold);
    transform: scale(1.03);
}
.pricing-card.featured h3 { color: var(--gs-white); }
.pricing-card.featured .price-original { color: rgba(255, 255, 255, 0.55); }
.pricing-card.featured .price-now { color: var(--gs-gold); }
.pricing-card.featured .price-list { color: rgba(255, 255, 255, 0.85); }
.pricing-tag {
    display: inline-block;
    background: var(--gs-gold);
    color: var(--gs-ink);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-weight: 800;
}
.pricing-sub {
    font-size: 13px;
    color: var(--gs-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.pricing-card.featured .pricing-sub { color: rgba(255, 255, 255, 0.7); }
.price-original {
    text-decoration: line-through;
    color: var(--gs-muted);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.price-now {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gs-ink);
    line-height: 1;
    margin-bottom: 24px;
}
.price-list {
    list-style: none;
    padding: 0; margin: 0 0 30px;
    text-align: left;
}
.price-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 14.5px;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.pricing-card.featured .price-list li { border-bottom-color: rgba(255, 255, 255, 0.12); }
.price-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0; top: 10px;
    color: var(--gs-gold-deep);
    font-size: 1rem;
}
.pricing-card.featured .price-list li::before { color: var(--gs-gold); }

/* ---------- Syllabus / accordion ---------- */
.accordion-paper .accordion-item {
    background: var(--gs-white);
    border: 1px solid var(--gs-line);
    border-radius: var(--radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
}
.accordion-paper .accordion-button {
    background: var(--gs-white);
    color: var(--gs-ink);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 20px 24px;
    box-shadow: none;
}
.accordion-paper .accordion-button:not(.collapsed) {
    background: var(--gs-cream);
    color: var(--gs-navy);
    box-shadow: inset 0 -1px 0 var(--gs-line);
}
.accordion-paper .accordion-button:focus { box-shadow: none; }
.accordion-paper .accordion-body {
    padding: 22px 24px 26px;
    color: var(--gs-text);
    font-size: 14.5px;
}
.accordion-paper .accordion-body ul {
    padding-left: 1.2rem;
    margin: 0;
}
.accordion-paper .accordion-body ul li { margin-bottom: 6px; }

/* ---------- Contact form ---------- */
.contact-form {
    background: var(--gs-white);
    padding: 38px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gs-line);
}
.contact-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gs-ink);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.contact-form .form-control, .contact-form .form-select {
    border: 1px solid var(--gs-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    transition: all 0.25s ease;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--gs-gold);
    box-shadow: 0 0 0 4px rgba(244, 180, 26, 0.18);
}
.contact-info-card {
    background: var(--gs-navy);
    color: var(--gs-white);
    padding: 38px 36px;
    border-radius: var(--radius-lg);
    height: 100%;
}
.contact-info-card h3 { color: var(--gs-white); font-size: 1.5rem; }
.contact-info-card .info-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-card .info-item:last-child { border: 0; }
.contact-info-card .info-icon {
    width: 42px; height: 42px;
    background: rgba(244, 180, 26, 0.15);
    color: var(--gs-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-card .info-text .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}
.contact-info-card .info-text .value {
    color: var(--gs-white);
    font-size: 15px;
    margin: 2px 0 0;
}
.contact-info-card .info-text a { color: var(--gs-white); }
.contact-info-card .info-text a:hover { color: var(--gs-gold); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--gs-navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 0;
    margin-top: 0;
}
.footer-top { padding: 70px 0 50px; }
.footer-brand img { height: 56px; margin-bottom: 18px; filter: brightness(1.1); }
.footer-about {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px; height: 38px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gs-white);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.25s ease;
}
.footer-socials a:hover {
    background: var(--gs-gold);
    color: var(--gs-ink);
    transform: translateY(-3px);
}
.footer-heading {
    color: var(--gs-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--gs-gold);
}
.footer-links, .footer-contact {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: all 0.2s ease;
}
.footer-links a:hover { color: var(--gs-gold); padding-left: 4px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}
.footer-contact i {
    color: var(--gs-gold);
    flex-shrink: 0;
    margin-top: 4px;
}
.footer-contact a { color: rgba(255, 255, 255, 0.7); }
.footer-contact a:hover { color: var(--gs-gold); }
.footer-map { margin-top: 16px; border-radius: 12px; overflow: hidden; }
.footer-bottom {
    background: #03101f;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}
.footer-legal {
    list-style: none;
    display: flex; gap: 18px;
    padding: 0; margin: 0;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
}
.footer-legal a:hover { color: var(--gs-gold); }

/* ---------- Floating Action Buttons ---------- */
.floating-actions {
    position: fixed;
    bottom: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1040;
}
.float-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gs-white);
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}
.float-btn:hover { transform: translateY(-3px) scale(1.06); color: var(--gs-white); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--gs-navy); }
.float-btn.call:hover { background: var(--gs-gold); color: var(--gs-ink); }

/* ---------- Animations ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 18px;
        padding: 14px 0;
        border-top: 1px solid var(--gs-line);
    }
    .main-nav .nav-link { padding: 10px 4px !important; }
    .hero { padding: 60px 0 70px; }
    .hero-stamp { width: 86px; height: 86px; top: -10px; right: -10px; }
    .hero-stamp .num { font-size: 1.5rem; }
    .section { padding: 70px 0; }
    .founders-touch { padding: 40px 28px; }
    .pricing-card.featured { transform: none; }
}

@media (max-width: 575px) {
    .section { padding: 56px 0; }
    .announce-text { font-size: 12px; }
    .hero-meta { gap: 18px; }
    .floating-actions { bottom: 14px; right: 14px; }
    .float-btn { width: 48px; height: 48px; font-size: 1.2rem; }
    .contact-form, .contact-info-card { padding: 26px 22px; }
}
