/* ==========================================================================
   GLOBAL VARIABLES & RESET LAYER
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

:root {
    /* Primary Colors */
    --primary-color: #ff5e14;
    --secondary-color: #111111;
    --accent-color: #ffffff;

    /* Background Colors */
    --bg-dark: #000000;
    --bg-light: #f5f5f5;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #bdbdbd;
    --text-dark: #000000;

    /* Border Color */
    --border-color: rgba(255,255,255,0.1);
}

/* ==========================================================================
   NAVIGATION BAR HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background 0.3s ease;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.nav-item {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-toggle {
    display: none;
}

/* ==========================================================================
   HERO CONTAINER CONFIGURATION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Clean fallback path for localized workout model assets */
    background: url('../images/banner.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1), rgba(5, 6, 8, 0.65));
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 140px 60px 120px 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    flex-grow: 1;
}

/* LEFT COLUMN DESIGN ELEMENTS */
.hero-left {
    padding-right: 40px;
}

.main-headline {
    font-size: 5.4rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #ffffff;
}

.main-headline span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sub-headline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
}

.cta-button-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-solid {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-solid:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 94, 20, 0.45);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(255, 94, 20, 0.05);
    transform: translateY(-3px);
}

/* RIGHT COLUMN FLOATING INFOGRAPHIC COMPONENTS */
.hero-right {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.16);
}

/* Precise Spatial Grid Node Multipliers matching original image overlay coordinates */
.card-trainers {
    top: 8%;
    left: 12%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
}

.card-trainers:hover {
    box-shadow: 0 25px 50px rgba(210, 255, 40, 0.1);
}

.card-customers {
    top: 30%;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
}

.card-customers:hover {
    box-shadow: 0 25px 50px rgba(0, 240, 255, 0.1);
}

.card-calories {
    bottom: 15%;
    left: 0%;
    width: 260px;
    padding: 22px 24px;
}

.card-calories:hover {
    box-shadow: 0 25px 50px rgba(255, 75, 43, 0.1);
}

.card-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-svg-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.chart-header-icon {
    width: 16px;
    height: 16px;
    color: #ff4b2b;
    vertical-align: -2px;
    margin-right: 4px;
}

.avatar-group {
    display: flex;
    margin-bottom: 6px;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.card-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.card-info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Metric Diagram Calibration UI rules */
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plus-btn {
    opacity: 0.5;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.plus-btn:hover {
    opacity: 1;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    margin: 20px 0 16px 0;
}

.bar {
    width: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    height: var(--height);
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar:nth-child(2n) {
    background: rgba(255, 255, 255, 0.25);
}

.bar:nth-child(4),
.bar:nth-child(5) {
    background: linear-gradient(to top, #ff416c, #ff4b2b);
    box-shadow: 0 0 15px rgba(255, 75, 43, 0.4);
}

.chart-value {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

/* ==========================================================================
   COLLABORATION BRAND STRIP (FULL WIDTH GLASSMORPHIC)
   ========================================================================== */
.collaboration-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: rgba(5, 6, 8, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.collab-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.collab-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.logo-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
    flex-grow: 1;
}

.collab-logo {
    height: 24px;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collab-logo:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* RESPONSIVE DESIGN VIEWPORT BREAKPOINTS MOVED TO THE BOTTOM FOR OPTIMAL CASCADE */


/* ==========================================================================
   GLOBAL SECTION STYLES
   ========================================================================== */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-section {
    background-color: var(--bg-dark);
    background: radial-gradient(circle at 50% 50%, rgba(255, 94, 20, 0.03) 0%, var(--bg-dark) 80%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 94, 20, 0.15);
}

.feature-icon {
    margin-bottom: 24px;
    color: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 42px;
    height: 42px;
}

/* SVG icon utilities used across multiple sections */
.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    vertical-align: -3px;
    margin-right: 4px;
    color: var(--primary-color);
}

.x-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    vertical-align: -3px;
    margin-right: 4px;
}

.star-icon {
    width: 18px;
    height: 18px;
    vertical-align: -2px;
    color: var(--primary-color);
}



.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

/* ==========================================================================
   ABOUT PREVIEW
   ========================================================================== */
.about-section {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 94, 20, 0.15);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-container:hover .about-img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-badge h4 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.about-badge p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.about-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-bullets li span {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================================================
   PROGRAMS & CLASSES
   ========================================================================== */
.programs-section {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.program-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 65%);
    z-index: 2;
    transition: background 0.4s ease;
}

.program-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.4) 100%);
}

.program-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 94, 20, 0.25);
}

.program-card:hover .program-img-bg {
    transform: scale(1.08);
}

.program-card:hover .program-content {
    transform: translateY(0);
}

.program-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.program-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.program-card:hover .program-content p {
    opacity: 1;
}

.program-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.program-card:hover .program-link {
    transform: translateX(5px);
    color: #ff8a00;
}

/* ==========================================================================
   MEMBERSHIP PLANS (PRICING)
   ========================================================================== */
.pricing-section {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 94, 20, 0.5);
    box-shadow: 0 20px 40px rgba(255, 94, 20, 0.12);
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 94, 20, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.plan-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-card .btn-solid,
.pricing-card .btn-outline {
    width: 100%;
    padding: 16px;
    text-align: center;
    justify-content: center;
}

/* ==========================================================================
   CLASS SCHEDULE
   ========================================================================== */
.schedule-section {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.schedule-tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.schedule-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-tab:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.schedule-tab.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

.schedule-content {
    max-width: 900px;
    margin: 0 auto;
}

.day-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.day-content.active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    border-left-color: var(--primary-color);
    transform: scale(1.01);
    box-shadow: 0 10px 30px rgba(255, 94, 20, 0.08);
}

.schedule-time {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    width: 220px;
}

.schedule-details {
    flex-grow: 1;
}

.schedule-details h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.schedule-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.btn-solid-sm {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solid-sm:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.3);
}

/* ==========================================================================
   SUCCESS STORIES / TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    background-color: #050608;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 94, 20, 0.35);
    box-shadow: 0 10px 30px rgba(255, 94, 20, 0.1);
    transform: translateY(-4px);
}

.client-rating {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.client-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 30px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.client-profile h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.client-profile p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   CALL TO ACTION (CTA) BANNER SECTION - PREMIUM SPLIT LAYOUT
   ========================================================================== */
.cta-banner-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.cta-banner-container {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 94, 20, 0.15);
    padding: 80px 70px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 94, 20, 0.05);
}

/* Glowing orb decorations */
.cta-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.cta-bg-glow-left {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 20, 0.18) 0%, transparent 70%);
    top: -100px;
    left: -80px;
}

.cta-bg-glow-right {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.12) 0%, transparent 70%);
    bottom: -60px;
    right: 100px;
}

/* Subtle dot grid overlay */
.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}

/* Left content */
.cta-left {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 12px;
}

.cta-headline span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Right stats grid */
.cta-right {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.cta-stat-card:hover {
    border-color: var(--primary-color);
    background: rgba(255, 94, 20, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255, 94, 20, 0.12);
}

.cta-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 94, 20, 0.2) 0%, rgba(255, 138, 0, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.cta-stat-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2px;
}

.cta-stat-card p {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA responsiveness consolidated at the bottom */

/* ==========================================================================
   CONTACT / FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    padding: 80px 0 30px 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo-area.dark .logo-text {
    color: var(--text-primary);
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-info a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.social-icon:hover .svg-social {
    fill: var(--text-primary);
}

.svg-social {
    width: 18px;
    height: 18px;
    fill: var(--text-primary);
    transition: fill 0.3s ease;
}

.footer-links-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #8c98ad;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* 1. Large Tablets / Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        padding: 120px 40px 80px 40px;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .sub-headline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        display: none;
    }
    
    .collab-container {
        padding: 0 40px;
    }
}

/* 2. Tablets & High-Density Views like Kindle Fire HDX 8.9" (max-width: 1024px) */
@media (max-width: 1024px) {
    .features-grid,
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 30px;
    }

    .cta-banner-container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        gap: 40px;
    }
    
    .cta-headline {
        font-size: 2.5rem;
    }
}

/* 3. Standard Tablets & Kindle Fire HDX Viewport (max-width: 992px) */
@media (max-width: 992px) {
    /* Header & Navigation Toggle */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 16px;
        cursor: pointer;
        z-index: 101;
    }
    
    .mobile-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    /* Hamburger to X animation */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--primary-color);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--primary-color);
    }

    /* Mobile Navigation Dropdown */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 110px 40px 40px 40px;
        gap: 16px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 99;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-item {
        font-size: 1.15rem;
        font-weight: 600;
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.8);
    }

    /* Hero Height Optimization & Layout for Kindle Fire HDX & Tablets */
    .hero-section {
        min-height: 100svh;
        height: auto;
        justify-content: flex-start;
    }

    .hero-content-wrapper {
        padding: 130px 40px 60px 40px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .collaboration-strip {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: auto;
        padding: 24px 0;
        background: rgba(5, 6, 8, 0.6);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .collab-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 0 40px;
    }
    
    .logo-list {
        justify-content: center;
        gap: 28px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .collab-logo {
        height: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* 4. Small Tablets & Phones (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 60px 0; /* Reduce padding from 100px to keep page scroll height neat */
    }

    .container {
        padding: 0 24px;
    }

    .main-headline {
        font-size: 2.8rem;
        line-height: 1.1;
        letter-spacing: -1.5px;
    }

    .sub-headline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .cta-button-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-solid, .btn-outline {
        width: 100%;
        padding: 16px 20px;
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .features-grid,
    .programs-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        height: 320px; /* Constrain program card height on mobile */
    }

    /* Schedule Section responsive alignment */
    .schedule-tabs-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .schedule-tab {
        padding: 10px 20px;
        font-size: 0.85rem;
        flex-grow: 1;
        text-align: center;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 24px;
    }
    
    .schedule-time {
        width: auto;
    }

    .btn-solid-sm {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Redesigned CTA section responsiveness */
    .cta-banner-container {
        padding: 50px 30px;
        gap: 32px;
    }

    .cta-headline {
        font-size: 2rem;
    }

    .cta-right {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .cta-stat-card {
        padding: 20px;
        gap: 12px;
    }

    .cta-stat-card h3 {
        font-size: 1.4rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-actions .btn-solid,
    .cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Footer map responsive alignment */
    .footer-map-col iframe {
        height: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
    }
}

/* 5. Extra Small Devices / Portrait Phones (max-width: 480px) */
@media (max-width: 480px) {
    .main-headline {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .cta-headline {
        font-size: 1.75rem;
    }

    /* Stack stats grid items in CTA section for clean layout on small viewports */
    .cta-right {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 320px; /* Reduce image height to keep scrolling clean */
    }

    .about-badge {
        padding: 16px 20px;
        bottom: 20px;
        right: 20px;
    }

    .about-badge h4 {
        font-size: 1.8rem;
    }

    .footer-brand-col,
    .footer-links-col,
    .footer-map-col {
        align-items: flex-start;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}