/*
Primary Color : #ed008c
Secondary Color : #051745
Gradient: cyan (#79e3ec) → pink (#f196cc)
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/autography-2');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
    --pink:     #ed008c;
    --navy:     #051745;
    --light-white: #c9d1d9;
    --grad:     linear-gradient(135deg, #79e3ec 0%, #f196cc 100%);
    --grad-h:   linear-gradient(135deg, #51d5e0 0%, #f06ab8 100%);
    --shadow-sm: 0 4px 12px rgba(5,23,69,.08);
    --shadow-md: 0 8px 32px rgba(5,23,69,.14);
    --radius:    1.2rem;
}

/* ── Keyframes ───────────────────────────────────────────────────────────── */
@keyframes floatUp {
    0%   { transform: translateY(0px) rotate(0deg);   opacity: .7; }
    50%  { transform: translateY(-28px) rotate(8deg); opacity: 1;  }
    100% { transform: translateY(0px) rotate(0deg);   opacity: .7; }
}
@keyframes floatSide {
    0%   { transform: translateX(0px) rotate(-5deg);  opacity: .6; }
    50%  { transform: translateX(20px) rotate(5deg);  opacity: .9; }
    100% { transform: translateX(0px) rotate(-5deg);  opacity: .6; }
}
@keyframes pulseDot {
    0%, 100% { opacity: .18; }
    50%       { opacity: .38; }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ctaFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes navFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(16px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Header / Hero ───────────────────────────────────────────────────────── */
#header_part {
    min-height: 100vh;
    background: linear-gradient(160deg, #020d26 0%, #051745 55%, #0d0520 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Dot grid — replaced by hero-dots.js canvas */
#header_part::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: none;
    pointer-events: none;
    z-index: 0;
}

/* Colour blob overlay — kept subtle so dots stay visible */
#header_part::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 35%, rgba(121,227,236,.08) 0%, transparent 65%),
        radial-gradient(ellipse 55% 60% at 85% 65%, rgba(241,150,204,.08) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 50% 80%, rgba(237,0,140,.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.heading_title {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 7vh 1.5rem 0;
    margin-top: 0;
    animation: heroFadeIn .9s ease-out both;
    filter:
        drop-shadow(0 0 32px rgba(121,227,236,.35))
        drop-shadow(0 0 12px rgba(241,150,204,.25))
        drop-shadow(0 2px 14px rgba(0,0,0,.85));
}

/* CTA button — anchored near the bottom of the hero */
.heading_cta {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    white-space: nowrap;
    animation: ctaFadeIn .9s ease-out both;
}
.heading_title::before {
    content: '';
    position: absolute;
    inset: -2rem -3rem;
    background: radial-gradient(ellipse 75% 65% at 50% 50%, rgba(2,13,38,.55) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.heading {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 0;
}

.heading-main {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 20px;
    line-height: 1;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heading-main strong {
    /* colour handled by gradient above */
}

.heading-sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 12px;
    color: rgba(255,255,255,.6);
    margin-top: .5rem;
    text-transform: uppercase;
}

/* CTA Button */
.btn:link,
.btn:visited {
    text-decoration: none;
    display: inline-block;
    padding: 16px 44px;
    border-radius: 50px;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: .9rem;
    text-transform: uppercase;
    transition: all .25s;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.3);
}
.btn:active { transform: translateY(-1px); }

.btn-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
    margin-top: 0;
    width: fit-content;
}
.btn-white:hover {
    background: linear-gradient(135deg, #2a8a93 0%, #b03a82 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(237,0,140,.45);
}

/* Navbar */
.heading_navbar {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    width: max-content;
    max-width: 90%;
    z-index: 2;
    animation: navFadeIn .9s ease-out .4s both;
}
.heading_navbar nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: .6rem 1.5rem;
}
.heading_navbar nav a {
    text-decoration: none;
    padding: .35rem 1.1rem;
    letter-spacing: .08rem;
    border-radius: 50px;
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 500;
    transition: all .2s;
}
.heading_navbar nav a:hover {
    background: var(--pink);
    color: #fff;
}

/* ── Collapsible slide-in menu ───────────────────────────────────────────── */
.menu-toggle {
    position: fixed;
    top: .7rem;
    right: .9rem;
    z-index: 1002;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(10,18,45,.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background .25s, box-shadow .25s, transform .25s;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.menu-toggle:hover {
    background: rgba(20,32,70,.75);
    box-shadow: 0 8px 26px rgba(237,0,140,.35);
}
.menu-toggle:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}
.menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .3s ease, opacity .25s ease;
}
/* Hamburger → X when open */
.menu-toggle.open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    height: 100vh;
    height: 100dvh;
    width: min(320px, 82vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    padding: 5.5rem 1.5rem 2rem;
    background: linear-gradient(160deg, rgba(5,12,35,.97) 0%, rgba(13,5,32,.97) 100%);
    border-left: 1px solid rgba(255,255,255,.12);
    box-shadow: -18px 0 40px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    overflow-y: auto;
}
.site-menu.open {
    transform: translateX(0);
}
.site-menu-title {
    color: rgba(255,255,255,.45);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22rem;
    text-transform: uppercase;
    padding: 0 .4rem .6rem;
    margin-bottom: .3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-menu-link {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .02rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    transition: background .2s, color .2s, transform .2s;
}
.site-menu-link i {
    width: 20px;
    text-align: center;
    color: var(--cyan, #79e3ec);
    font-size: 1rem;
    transition: color .2s;
}
.site-menu-link:hover,
.site-menu-link:focus-visible {
    background: rgba(255,255,255,.08);
    color: #fff;
    transform: translateX(3px);
    outline: none;
}
.site-menu-link:hover i { color: var(--pink); }
.site-menu-cta {
    margin-top: 1rem;
    text-align: center;
    text-decoration: none;
    padding: .9rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .05rem;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #2a8a93 0%, #b03a82 100%);
    box-shadow: 0 10px 24px rgba(237,0,140,.35);
    transition: transform .2s, box-shadow .2s;
}
.site-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(237,0,140,.5);
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(2,6,20,.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s ease;
}
.menu-backdrop.open {
    opacity: 1;
}
/* Prevent body scroll when the menu is open */
body.menu-open {
    overflow: hidden;
}

/* ── Training Modules ────────────────────────────────────────────────────── */
#modules_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 1.5rem;
    background: #fafbff;
}

#modules_section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: .15rem;
    margin-bottom: 3.5rem;
    position: relative;
    text-align: center;
}
#modules_section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: var(--grad);
    margin: .75rem auto 0;
}

.cards_box {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.cards {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    transition: transform .25s, box-shadow .25s;
}
.cards:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(5,23,69,.18);
}

/* Image panel */
.card_title {
    position: relative;
    overflow: hidden;
    background: var(--grad);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 1rem;
    min-height: 280px;
}
.card_title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
    z-index: 1;
    text-align: center;
}
.card_title img {
    width: 100%;
    max-width: 320px;
    height: 200px;
    object-fit: cover;
    border-radius: .75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 1;
}

/* Benefits panel */
.cards_benefits {
    padding: 2.5rem;
    display: flex;
    align-items: center;
}
.cards_benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.cards_benefits ul li {
    font-size: .95rem;
    color: #374167;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}
.cards_benefits ul li::before {
    content: '✦';
    color: var(--pink);
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: .22em;
}

/* Alternate card layout (image on right) */
.cards:nth-child(even) .cards_benefits { order: -1; }

/* ── Timetable ───────────────────────────────────────────────────────────── */
.time_table_section {
    background: var(--navy);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.time_table_title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .15rem;
    text-align: center;
    position: relative;
}
.time_table_title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: var(--grad);
    margin: .75rem auto 0;
}

.table_box {
    width: 100%;
    max-width: 860px;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff;
    font-size: .95rem;
}

.table_box thead tr {
    background: var(--grad);
}
.table_box thead th {
    color: var(--navy);
    font-weight: 700;
    padding: 1rem 1.4rem;
    text-align: left;
    font-size: 1rem;
    letter-spacing: .05rem;
    border: none;
}

.table_box tbody tr {
    border-bottom: 1px solid #eef0f8;
    transition: background .15s;
}
.table_box tbody tr:last-child { border-bottom: none; }
.table_box tbody tr:hover { background: #f5f7ff; }
.table_box tbody tr:nth-child(even) { background: #fafbff; }
.table_box tbody tr:nth-child(even):hover { background: #f0f3ff; }

td {
    padding: 1rem 1.4rem;
    color: var(--navy);
    border: none;
    vertical-align: middle;
}
td:first-child {
    font-weight: 700;
    color: var(--pink);
    width: 48px;
}
td:nth-child(2) { font-weight: 600; }

.tt-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: .15rem .55rem;
    border-radius: 99px;
    background: #fff8e1;
    color: #b45309;
    border: 1px solid #fbbf24;
    margin-top: .3rem;
    vertical-align: middle;
}
.tt-batch {
    display: block;
    font-size: .78rem;
    font-weight: 500;
    color: #4a5270;
    margin-top: .15rem;
}
.tt-special-label {
    display: block;
    font-weight: 400;
    color: #14532d;
}
.table_box tbody tr.tt-special td.tt-special-strong {
    font-weight: 700;
}

/* Complimentary / special sessions — nested green block under the sport above.
   The # column stays white; the green highlight is inset over the other cells. */
.table_box tbody tr.tt-special,
.table_box tbody tr.tt-special:nth-child(even) {
    background: transparent;
    box-shadow: none;
}
.table_box tbody tr.tt-special td {
    background: #f0fdf4;
    padding-top: .55rem;
    padding-bottom: .55rem;
}
.table_box tbody tr.tt-special td:first-child {
    background: #fff;
}
.table_box tbody tr.tt-special td:nth-child(2) {
    box-shadow: inset 4px 0 0 #22c55e;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.table_box tbody tr.tt-special td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.table_box tbody tr.tt-special:hover td:not(:first-child) {
    background: #e4fbec;
}
.tt-badge-free {
    background: #dcfce7;
    color: #15803d;
    border-color: #4ade80;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer_part {
    background: linear-gradient(160deg, #051745 0%, #0a2256 100%);
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact_box {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding-bottom: 1.5rem;
}

.address_box {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
}

.phone_mail_box {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.phone_mail_subbox {
    display: flex;
    align-items: center;
}
.phone_mail_box a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.phone_mail_box a:hover { color: var(--pink); }

.social_box {
    display: flex;
    gap: .75rem;
    align-items: center;
}
.social_box a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    color: #fff;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.social_box a:hover {
    background: var(--pink);
    transform: translateY(-2px);
}
.social_box a i { color: #fff; font-size: 1.1rem; }

.fa-solid {
    color: var(--pink);
    font-size: 1.1rem;
}

/* Small icons for footer phone / whatsapp contact lines */
.mobile_box a i {
    font-size: 0.85rem;
    margin-right: 4px;
}

/* Footer navigation menu */
.footer_menu {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .4rem 1.4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer_menu a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .02rem;
    padding: .3rem .2rem;
    position: relative;
    transition: color .2s;
    cursor: pointer;
}
.footer_menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: width .25s ease;
}
.footer_menu a:hover { color: #fff; }
.footer_menu a:hover::after { width: 100%; }
.footer_menu .footer_menu_cta {
    color: #fff;
    background: linear-gradient(135deg, #2a8a93 0%, #b03a82 100%);
    padding: .45rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .03rem;
    text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
}
.footer_menu .footer_menu_cta::after { display: none; }
.footer_menu .footer_menu_cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(237,0,140,.4);
}

.credit_info_box {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .05rem;
    text-align: center;
}
.credit_info_box span a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-family: 'Autography', sans-serif;
    font-size: 1.1rem;
    transition: color .2s;
}
.credit_info_box span a:hover { color: var(--pink); }

#movingImage {
    position: fixed;
    z-index: 99;
    transition: transform 1s ease;
}
.imgaeM {
    width: 210px; height: 210px;
    border-radius: 50%; overflow: hidden;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

/* Large tablet / small laptop */
@media screen and (max-width: 1024px) {
    .heading-main { font-size: 5rem; letter-spacing: 16px; }
}

/* Tablet — landscape */
@media screen and (max-width: 900px) {
    .cards { grid-template-columns: 1fr; }
    .cards:nth-child(even) .cards_benefits { order: 0; }
    .card_title { min-height: 200px; }
}

/* Small tablet / large phone */
@media screen and (max-width: 768px) {
    .heading_title  { padding-top: 5vh; }
    .heading        { margin-top: 0; margin-bottom: 0; }
    .heading-main   { font-size: 3.5rem; letter-spacing: 12px; }
    .heading-sub    { font-size: .85rem; letter-spacing: 8px; }

    #modules_section      { padding: 3.5rem 1.2rem; }
    .time_table_section   { padding: 3rem 1.2rem; }
    #modules_section h2, .time_table_title { font-size: 1.8rem; }
    .cards_benefits       { padding: 1.8rem; }
    .table_box            { font-size: .85rem; }
    td                    { padding: .75rem 1rem; }
    .contact_box          { font-size: .85rem; }
}

/* Phone landscape / mid-size phones */
@media screen and (max-width: 600px) {
    .heading        { margin-top: 0; }
    .heading-main   { font-size: 2.8rem; letter-spacing: 8px; }
    .heading-sub    { font-size: .78rem; letter-spacing: 5px; }
    .btn-white      { padding: 13px 32px; }
}

/* Phone portrait */
@media screen and (max-width: 480px) {
    /* ── Hero ── */
    .heading_title  { padding-top: 5vh; padding-left: 1rem; padding-right: 1rem; }
    .heading        { margin-top: 0; margin-bottom: 0; }
    .heading-main   { font-size: 2.4rem; letter-spacing: 6px; }
    .heading-sub    { font-size: .72rem; letter-spacing: 4px; margin-top: .3rem; }
    .btn-white      { padding: 10px 22px; font-size: .78rem; letter-spacing: 1px; white-space: nowrap; width: fit-content; }

    /* Hide bouncing image on mobile — it overlays content */
    #movingImage { display: none !important; }

    /* CTA button near the bottom of the hero on mobile */
    .heading_cta    { bottom: 2rem; }

    /* ── Sections ── */
    #modules_section    { padding: 2.5rem 1rem; }
    .time_table_section { padding: 2.5rem 1rem; }
    .cards_benefits     { padding: 1.5rem; }
    .cards_benefits ul li { font-size: .88rem; }

    /* ── Table — stacked card layout ── */
    .table_box { font-size: .82rem; }
    .table_box thead { display: none; }
    .table_box tbody tr {
        display: block;
        padding: .9rem 1rem .9rem 2.8rem;
        border-bottom: 1px solid #eef0f8;
        position: relative;
    }
    .table_box tbody td {
        display: block;
        padding: .08rem 0;
        border: none;
    }
    /* Row number — pinned left */
    .table_box tbody td:first-child {
        position: absolute;
        top: .9rem;
        left: .9rem;
        width: 1.6rem;
        padding: 0;
        font-size: .78rem;
    }
    /* Activity name */
    .table_box tbody td:nth-child(2) {
        font-weight: 600;
        font-size: .88rem;
    }
    /* Time */
    .table_box tbody td:nth-child(3)::before { content: '🕐 '; }
    /* Days */
    .table_box tbody td:nth-child(4)::before { content: '📅 '; }
    .table_box tbody td:nth-child(3),
    .table_box tbody td:nth-child(4) {
        color: #6b7280;
        font-size: .78rem;
    }

    /* ── Footer ── */
    .contact_box { flex-direction: column; gap: 1rem; }
}

/* Very small phones (e.g. Galaxy Fold) */
@media screen and (max-width: 360px) {
    .heading-main { font-size: 1.9rem; letter-spacing: 3px; }
    .heading-sub  { font-size: .65rem; letter-spacing: 3px; }
    .btn-white    { padding: 11px 24px; font-size: .78rem; }
    .heading_navbar nav a { font-size: .62rem; padding: .2rem .5rem; }
}


/* ── Floating Contact Buttons ─────────────────────────────────────────── */
.float-contact {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.45rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.28);
    transition: transform .2s, box-shadow .2s;
}
.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(0,0,0,.36);
}

/* WhatsApp green */
.float-wa  { background: #25d366; }
.float-wa:hover { background: #1ebe5d; }

/* Call – brand pink */
.float-call { background: var(--light-white); }
.float-call:hover { background: #c8007a; }

/* Main toggle button (speed-dial trigger) */
.float-toggle {
    background: linear-gradient(135deg, #2a8a93 0%, #b03a82 100%);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.float-toggle i { transition: transform .3s ease; }
.float-contact.open .float-toggle i { transform: rotate(135deg); }

/* Collapsible action buttons — hidden until expanded */
.float-action {
    opacity: 0;
    transform: scale(.4) translateY(16px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}
.float-contact.open .float-action {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}
/* Stagger the reveal so buttons pop up in sequence */
.float-contact.open .float-action:nth-child(1) { transition-delay: .06s; }
.float-contact.open .float-action:nth-child(2) { transition-delay: .02s; }

/* Pulse ring on WhatsApp */
.float-wa::after {
    content: '';
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(37,211,102,.35);
    animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.6); opacity: 0;  }
    100% { transform: scale(1);   opacity: 0;  }
}

@media (max-width: 480px) {
    .float-btn { width: 46px; height: 46px; font-size: 1.25rem; }
    .float-wa::after { width: 46px; height: 46px; }
    .float-contact { bottom: 16px; right: 14px; }
}

/* ── Timetable: Action column + Enroll button ──────────────────────────── */
.table_box th:last-child,
.table_box td.tt-action {
    white-space: nowrap;
    text-align: right;
    padding-right: 1rem;
}
.tt-enroll-btn {
    display: inline-block;
    padding: .35rem 1rem;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 999px;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
    white-space: nowrap;
}
.tt-enroll-btn:hover {
    opacity: .88;
    transform: scale(1.04);
}
@media (max-width: 600px) {
    .tt-enroll-btn { font-size: .72rem; padding: .28rem .7rem; }
}
