/* ============================================================
    BASE
    ============================================================ */
* {
    box-sizing: border-box;
}

/* FIX: Set font-family once on body for inheritance — avoids repeating on every element */

/* ============================================================
    HERO
    ============================================================ */
.hero {
    position: relative;
    height: calc(100vh - 68px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    background: url('../images/Gemini_Generated_Image_j3q1svj3q1svj3q1-1-scaled.webp') center / cover no-repeat;
    z-index: 0;
}

.hero-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 5, 0, 0.82) 0%, rgba(100, 45, 10, 0.50) 55%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    gap: 48px;
}

.hero-body {
    max-width: 520px;
    flex: 1;
}

.hero-body h1 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 22px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-body h1 span {
    color: #E8572A;
}

.hero-body p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 420px;
}

.btn-enquire {
    background: #e84118;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

.btn-enquire:hover {
    background: #c1310f;
    color: #fff;
    transform: translateY(-2px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 64px;
    z-index: 3;
    color: #fff;
    font-size: 1.4rem;
    animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 38px 36px 34px;
    width: 430px;
    flex-shrink: 0;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.45);
}

.hero-form-card h4 {
    font-weight: 800;
    font-size: 1.28rem;
    color: #111;
    margin: 0 0 5px;
    line-height: 1.2;
}

.hero-form-card .hfc-sub {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0 0 24px;
}

.hero-form-card .hfc-group {
    margin-bottom: 15px;
}

.hero-form-card label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
    display: block;
}

.hero-form-card input,
.hero-form-card select {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    /* FIX: use inherit instead of repeating the font */
    font-size: 0.9rem;
    color: #222;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.hero-form-card input::placeholder {
    color: #c0c0c0;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    border-color: #e84118;
    box-shadow: 0 0 0 3px rgba(232, 65, 24, 0.10);
}

.hero-form-card .hfc-select-wrap {
    position: relative;
}

.hero-form-card .hfc-select-wrap::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #bbb;
    font-size: 0.85rem;
    pointer-events: none;
}

.btn-hero-enquire {
    width: 100%;
    background: #e84118;
    color: #fff;
    font-family: inherit;
    /* FIX: use inherit */
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 15px 0;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-hero-enquire:hover {
    background: #c1310f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 65, 24, 0.38);
}

.btn-hero-enquire i {
    font-size: 0.95rem;
}

/* ============================================================
    ACHIEVEMENTS
    ============================================================ */
.achievements {
    background: #fff;
    padding: 80px 0 90px;
}

.achievements-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px 0;
}

.achievement-item {
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.achievement-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.achievement-item:nth-child(1) {
    transition-delay: 0.00s;
}

.achievement-item:nth-child(2) {
    transition-delay: 0.14s;
}

.achievement-item:nth-child(3) {
    transition-delay: 0.28s;
}

.achievement-item:nth-child(4) {
    transition-delay: 0.42s;
}

.achievement-icon-wrap {
    width: 86px;
    height: 86px;
    margin-bottom: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon-wrap .circle-bg {
    position: absolute;
    inset: 0;
    background: #eef1f8;
    border-radius: 50%;
}

.achievement-icon-wrap>i {
    position: relative;
    z-index: 2;
    font-size: 1.75rem;
    color: #e84118;
}

.orbit-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    animation: orbit-cw 3s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4ea8f5;
    border-radius: 50%;
    top: 50%;
}

.orbit-ring::before {
    left: 0;
    transform: translate(-50%, -50%);
}

.orbit-ring::after {
    right: 0;
    transform: translate(50%, -50%);
}

@keyframes orbit-cw {
    to {
        transform: rotate(360deg);
    }
}

.achievement-num {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: 3.8rem;
    color: #111;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
    letter-spacing: 1px;
}

.achievement-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
}

/* ============================================================
    FEATURES GRID
    ============================================================ */
.features-section {
    padding: 72px 0 80px;
    background: #fff;
}

.features-eyebrow {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
    display: block;
}

.features-heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(2.3rem, 4.5vw, 3.8rem);
    color: #111;
    line-height: 1;
    margin-bottom: 40px;
    max-width: 450px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-heading span {
    color: #E8572A;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e0e0e0;
}

.feature-card {
    padding: 44px 32px 40px;
    border-right: 1px solid #e0e0e0;
    transition: background 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: #e84118;
    box-shadow: 0 12px 40px rgba(232, 65, 24, 0.30);
}

.feature-card:hover .feature-icon i {
    color: #fff;
}

.feature-card:hover h4 {
    color: #fff;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-icon i {
    font-size: 2.4rem;
    color: #e84118;
    transition: color 0.25s;
}

.feature-card h4 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.1;
    transition: color 0.25s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.75;
    margin: 0;
    transition: color 0.25s;
}

/* ============================================================
    VERTICAL TIMELINE
    ============================================================ */
.timeline-section {
    padding: 80px 0 90px;
    background: #fff;
    overflow: hidden;
}

.timeline-eyebrow {
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

.timeline-heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #111;
    line-height: 1;
    margin-bottom: 64px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-heading span {
    color: #E8572A;
}

.vtl {
    position: relative;
    margin: 0 auto;
}

.vtl::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e8e8e8;
    transform: translateX(-50%);
    z-index: 0;
}

.vtl-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 72px;
    position: relative;
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.vtl-item:last-child {
    margin-bottom: 0;
}

.vtl-item.visible {
    opacity: 1;
    transform: none !important;
}

.vtl-item:nth-child(odd) {
    transform: translateX(-24px);
    transition-delay: 0.00s;
}

.vtl-item:nth-child(even) {
    transform: translateX(24px);
    transition-delay: 0.18s;
}

.vtl-item:nth-child(3) {
    transition-delay: 0.36s;
}

.vtl-left {
    width: 50%;
    padding-right: 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.vtl-right {
    width: 50%;
    padding-left: 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vtl-badge {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #e84118;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(232, 65, 24, 0.35);
}

/* FIX: added loading="lazy" in HTML; object-fit for images */
.vtl-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10);
    display: block;
}

.vtl-text h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 15px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vtl-text p {
    font-size: 17px;
    color: #555;
    margin: 0 0 18px;
    line-height: 1.75;
}

.vtl-text .highlights-label {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: 1.3rem;
    color: #111;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.vtl-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vtl-text ul li {
    font-size: 16px;
    color: #555;
    padding: 4px 0 4px 18px;
    position: relative;
    line-height: 1.55;
}

.vtl-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e84118;
    font-weight: 900;
}

.vtl-text.align-right {
    text-align: right;
}

.vtl-text.align-right ul li {
    padding: 4px 18px 4px 0;
}

.vtl-text.align-right ul li::before {
    left: auto;
    right: 0;
}

/* ============================================================
    CTA BANNER
    ============================================================ */
.cta-banner {
    position: relative;
    height: 460px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-banner-img {
    position: absolute;
    inset: 0;
    background: url('../images/Gemini_Generated_Image_aji143aji143aji1-scaled.webp') center / cover no-repeat;
    z-index: 0;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-banner-body {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 24px;
}

.cta-banner-body h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: #fff;
    line-height: 1;
    margin: 0;
    max-width: 650px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-banner-body h2 span {
    color: #E8572A;
}

.btn-join {
    background: #e84118;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 36px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.btn-join:hover {
    background: #c1310f;
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================================
    SPORTS CARDS
    ============================================================ */
.sports-section {
    padding: 80px 0;
    background: #fff;
}

.sports-grid {
    display: flex;
    gap: 16px;
    align-items: stretch;
    height: 560px;
}

.sport-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    /* FIX: Added focusable attribute support for keyboard accessibility */
}

/* FIX: All 5 cards now have explicit flex values (was missing 5th card) */
.sport-card:nth-child(1) {
    flex: 4;
}

.sport-card:nth-child(2) {
    flex: 1.4;
}

.sport-card:nth-child(3) {
    flex: 1.4;
}

.sport-card:nth-child(4) {
    flex: 1;
}

.sport-card:nth-child(5) {
    flex: 1;
}

.sports-grid:hover .sport-card {
    flex: 1;
}

.sports-grid:hover .sport-card:hover {
    flex: 4;
}

/* FIX: keyboard focus support — same expansion as hover */
.sport-card:focus-within {
    flex: 4;
    outline: none;
}

.sports-grid:focus-within .sport-card:not(:focus-within) {
    flex: 1;
}

.sport-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.sport-card:hover .sport-card-img {
    transform: scale(1.06);
}

.sport-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.10) 100%);
    border-radius: 18px;
    transition: background 0.4s;
}

.sport-card:hover .sport-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.30) 55%, rgba(0, 0, 0, 0.12) 100%);
}

.sport-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 32px;
    z-index: 2;
}

.sport-card-body h3 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    margin: 0 0 10px;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sport-card-body p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.6;
    max-width: 320px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s ease 0.15s, max-height 0.35s ease;
}

/* FIX: First card always shows text, hovered card shows text */
.sport-card:nth-child(1) .sport-card-body p {
    opacity: 1;
    max-height: 80px;
}

.sports-grid:hover .sport-card:hover .sport-card-body p {
    opacity: 1;
    max-height: 80px;
}

.sports-grid:hover .sport-card:not(:hover) .sport-card-body p {
    opacity: 0;
    max-height: 0;
}

.sport-card:nth-child(2) .sport-card-body h3,
.sport-card:nth-child(3) .sport-card-body h3,
.sport-card:nth-child(4) .sport-card-body h3,
.sport-card:nth-child(5) .sport-card-body h3 {
    white-space: normal;
    font-size: 1.35rem;
}

/* FIX: added 5th card */
/* ============================================================
    TESTIMONIALS
    ============================================================ */
.testimonials-section {
    padding: 90px 0 100px;
    background: #fff;
}

.testimonials-eyebrow {
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 18px;
    display: block;
    text-align: center;
}

.testimonials-heading {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #111;
    line-height: 1;
    margin: 0 auto 60px;
    text-align: center;
    max-width: 600px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-heading span {
    color: #E8572A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.tcard {
    padding: 26px 22px 28px;
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 12px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.tcard:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.tcard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tcard-meta h4 {
    font-weight: 700;
    font-size: 0.88rem;
    color: #111;
    margin: 0 0 3px;
    line-height: 1.2;
}

.tcard-meta span {
    font-size: 0.72rem;
    color: #bbb;
    font-weight: 500;
}

.tcard-quote {
    font-size: 0.81rem;
    color: #666;
    line-height: 1.72;
    margin: 0;
}

/* ============================================================
    CONTACT STRIP
    ============================================================ */
.contact-strip {
    padding: 80px 0 90px;
    background: #fff;
    border-top: 1px solid #efefef;
}

.contact-strip-inner {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.contact-strip-headline {
    flex: 1.8;
    padding-right: 60px;
}

.contact-strip-headline h2 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-strip-headline h2 span {
    color: #E8572A;
}

.contact-strip-col {
    flex: 1;
    padding: 0 48px;
    border-left: 1px solid #ddd;
}

.contact-strip-col h4 {
    font-family: 'Bebas Neue', sans-serif !important;
    font-weight: 400;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-strip-col p {
    font-size: 1rem;
    color: #555;
    margin: 0 0 6px;
    line-height: 1.6;
}

.contact-strip-col a {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.contact-strip-col a:hover {
    color: #e84118;
}

/* ============================================================
    RESPONSIVE
    ============================================================ */
@media (max-width: 1199px) {
    .hero-inner {
        padding: 0 48px;
    }

    .hero-form-card {
        width: 400px;
    }
}

@media (max-width: 991px) {
    .hero-inner {
        flex-direction: column;
        width: 100%;
    }

    .nav-phone {
        margin: 4px 0;
    }

    .btn-cta {
        margin-top: 4px;
    }

    .hero-inner {
        padding: 0 28px;
        gap: 28px;
    }

    .hero-form-card {
        width: 330px;
        padding: 28px 22px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(2) {
        border-right: none;
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        border-bottom: 1px solid #e0e0e0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 20px;
        justify-content: center;
    }

    .hero-body {
        max-width: 100%;
    }

    .hero-form-card {
        width: 100%;
    }

    .scroll-down {
        display: none;
    }

    .achievement-item {
        flex: 1 1 45%;
        max-width: 50%;
    }

    .vtl::before {
        left: 18px;
        transform: none;
    }

    .vtl-item {
        display: flex !important;
        flex-direction: column !important;
        padding-left: 50px;
    }

    .vtl-item:nth-child(odd),
    .vtl-item:nth-child(even) {
        transform: translateY(20px);
    }

    .vtl-badge {
        left: 0;
        transform: none;
    }

    .vtl-left,
    .vtl-right {
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }

    .vtl-item:nth-child(even) .vtl-right {
        order: -1 !important;
    }

    .vtl-left {
        margin-bottom: 20px;
    }

    .vtl-right {
        margin-bottom: 20px;
    }

    .vtl-text.align-right {
        text-align: left;
    }

    .vtl-text.align-right ul li {
        padding: 4px 0 4px 18px;
    }

    .vtl-text.align-right ul li::before {
        left: 0;
        right: auto;
    }

    .cta-banner {
        height: auto;
        padding: 64px 0;
    }

    .cta-banner-body {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 20px;
    }

    .contact-strip-inner {
        flex-direction: column;
        gap: 40px;
    }

    .contact-strip-headline {
        padding-right: 0;
    }

    .contact-strip-col {
        border-left: none;
        border-top: 1px solid #ddd;
        padding: 32px 0 0;
    }

    .sports-grid {
        flex-direction: column;
        height: 700px;
        gap: 12px;
    }

    .sport-card {
        flex: 1;
        height: auto;
        transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sport-card:nth-child(1) {
        flex: 2.5;
    }

    .sports-grid:hover .sport-card {
        flex: 1;
    }

    .sports-grid:hover .sport-card:hover {
        flex: 2.5;
    }

    .sport-card:focus-within {
        flex: 2.5;
    }

    .sport-card-body p {
        opacity: 0 !important;
        max-height: 0 !important;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }

    .sport-card:nth-child(1) .sport-card-body p,
    .sports-grid:hover .sport-card:hover .sport-card-body p,
    .sport-card:focus-within .sport-card-body p {
        opacity: 1 !important;
        max-height: 80px !important;
    }

    .testimonials-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 24px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .tcard {
        flex: 0 0 85%;
        width: 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 575px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .achievement-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}