/* ==========================================================================
   Gym Fitness Theme CSS
   ========================================================================== */

:root {
    /* Color Theme from Image 1 (MURA) */
    --color-primary: #FF5A24;
    /* Bright Orange */
    --color-bg-outer: #FFFFFF;
    --color-bg-inner: #EAEAEA;
    /* Light grey container */
    --color-text-dark: #111111;
    --color-text-light: #666666;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --border-radius-main: 40px;
    --border-radius-card: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-outer);
    color: var(--color-text-dark);
    min-height: 100vh;
}

/* Main Container (Border Design from Image 1) */
.theme-container {
    background-color: var(--color-bg-inner);
    border-radius: var(--border-radius-main);
    width: 96%;
    max-width: 1600px;
    margin: 20px auto;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.inner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-self: center;
    min-width: 0; /* Fix flex item overflow issue */
}

/* ==========================================================================
   Header (Menu Design from Image 1)
   ========================================================================== */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    z-index: 100;
}

/* Left Menu Wrapper */
.header-left {
    flex: 1;
}

/* WP Menu Structure */
.header-left ul,
.header-menu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header-left ul li,
.header-menu-list li {
    position: relative;
}

/* Submenu Dropdown */
.header-left ul ul,
.header-menu-list .sub-menu,
.header-left ul .children {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 15px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 200;
}

.header-left ul li:hover > ul,
.header-menu-list li:hover > .sub-menu,
.header-left ul li:hover > .children {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-left ul ul a,
.header-menu-list .sub-menu a,
.header-left ul .children a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s;
}

.header-left ul ul a:hover,
.header-menu-list .sub-menu a:hover,
.header-left ul .children a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header-left a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.header-left a:hover,
.header-left a.active,
.header-left li.current-menu-item > a {
    color: var(--color-primary); /* Orange theme color touch */
    font-weight: 600;
}

/* Center Logo */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-text-dark);
}

/* Right Buttons */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.btn-dark {
    background-color: #222222;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-dark:hover {
    background-color: black;
}

.btn-icon {
    background-color: var(--color-primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-icon:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

/* Geometric Background Shapes (Image 1 style - subtle thin lines) */
.bg-shape {
    position: absolute;
    background: white;
    opacity: 0.8;
    z-index: 1;
    transform-origin: center;
    animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.shape-1 {
    width: 1px;
    height: 150%;
    top: -20%;
    left: 25%;
    transform: rotate(35deg);
}

.shape-2 {
    width: 1px;
    height: 150%;
    top: -20%;
    right: 35%;
    transform: rotate(-35deg);
}

.shape-3 {
    width: 150%;
    height: 1px;
    top: 60%;
    left: -25%;
    transform: rotate(-15deg);
}

/* Huge Background Text (Image 2 style) */
.hero-bg-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero-bg-text h1 {
    font-family: var(--font-heading);
    font-size: 8.5vw;
    font-weight: 900;
    color: var(--color-text-dark);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin: 0;
}

/* Central Model */
.hero-model {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    height: 95%;
    display: flex;
    align-items: flex-end;
}

.hero-model img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Floating Info Cards (Image 2 layout, Image 1 color adaptation) */
.floating-card {
    position: absolute;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 12px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    min-width: 80px;
}

.card-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.card-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
    font-weight: 500;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Positioning the Cards */
.card-tl {
    top: 40%;
    left: 32%;
    transform: rotate(-25deg);
}

.card-bl {
    bottom: 5%;
    left: 30%;
    transform: rotate(20deg);
}

.card-tr {
    top: 45%;
    right: 26%;
    transform: rotate(25deg);
}

.card-br {
    bottom: 5%;
    right: 28%;
    transform: rotate(-25deg);
}

/* Custom Animations to preserve transforms */
.custom-anim-fade-down {
    animation: heroFadeDown 1s ease-out forwards;
}

@keyframes heroFadeDown {
    0% { opacity: 0; transform: translate(-50%, -80%); }
    100% { opacity: 1; transform: translate(-50%, -50%); }
}

.custom-anim-fade-up {
    animation: heroFadeUpModel 1.2s ease-out forwards;
}

@keyframes heroFadeUpModel {
    0% { opacity: 0; transform: translateX(-50%) translateY(50px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.custom-anim-zoom-tl { animation: cardZoomTL 0.6s 0.2s ease-out both; }
.custom-anim-zoom-bl { animation: cardZoomBL 0.6s 0.4s ease-out both; }
.custom-anim-zoom-tr { animation: cardZoomTR 0.6s 0.6s ease-out both; }
.custom-anim-zoom-br { animation: cardZoomBR 0.6s 0.8s ease-out both; }

@keyframes cardZoomTL {
    0% { opacity: 0; transform: scale(0.5) rotate(-25deg); }
    100% { opacity: 1; transform: scale(1) rotate(-25deg); }
}
@keyframes cardZoomBL {
    0% { opacity: 0; transform: scale(0.5) rotate(20deg); }
    100% { opacity: 1; transform: scale(1) rotate(20deg); }
}
@keyframes cardZoomTR {
    0% { opacity: 0; transform: scale(0.5) rotate(25deg); }
    100% { opacity: 1; transform: scale(1) rotate(25deg); }
}
@keyframes cardZoomBR {
    0% { opacity: 0; transform: scale(0.5) rotate(-25deg); }
    100% { opacity: 1; transform: scale(1) rotate(-25deg); }
}

/* Happy Spirits */
.happy-spirits {
    position: absolute;
    bottom: 40px;
    left: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--color-bg-inner);
    margin-left: -15px;
}

.avatars img:first-child {
    margin-left: 0;
}

/* Default list styles */
.footer-nav a:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Staggered Text Reveal
   ========================================================================== */
.stagger-text {
    opacity: 1 !important; /* Override AOS opacity if it conflicts */
    overflow: hidden;
}

.stagger-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: pre-wrap; /* Preserve spaces between words */
}

.stagger-text.in-view .word {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   WordPress Page & Blog Styles
   ========================================================================== */
.page-container,
.single-container,
.blog-container {
    padding: 150px 50px 100px;
}

@media (max-width: 768px) {
    .page-container,
    .single-container,
    .blog-container {
        padding: 100px 15px 60px;
    }
}

/* Blog container: remove align-items to prevent clipping on overflow */
.blog-container {
    overflow: visible;
}

.page-container .standard-content,
.single-container .standard-content,
.blog-grid,
.blog-header,
.single-header,
.page-header {
    width: 100%; /* Explicit width so items don't shrink in flex */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-header,
.single-header,
.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.page-thumbnail,
.single-thumbnail {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.page-thumbnail img,
.single-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Standard Content Typography */
.standard-content {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
}

.standard-content h1,
.standard-content h2,
.standard-content h3,
.standard-content h4,
.standard-content h5,
.standard-content h6 {
    color: var(--color-text-dark);
    margin: 40px 0 20px;
    font-weight: 700;
}

.standard-content p {
    margin-bottom: 20px;
}

.standard-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.standard-content a:hover {
    text-decoration: underline;
}

.standard-content ul,
.standard-content ol {
    margin: 0 0 20px 40px;
}

.standard-content li {
    margin-bottom: 10px;
}

.standard-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--color-text-dark);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    justify-content: center;
    gap: 30px;
    min-width: 0;
    overflow: hidden;
    width: 100%;
    max-width: 900px; /* Full width limit */
    margin: 0 auto;
}

.blog-post-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: stretch;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.blog-post-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.post-card-img {
    flex: 0 0 40%; /* 40% width for image */
    overflow: hidden;
}

.post-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-card:hover .post-card-img img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 30px;
    flex: 1; /* Take up remaining 60% */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.post-category {
    background: #FFF0F0;
    color: var(--color-primary); /* Theme primary */
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-date {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 500;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-title a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: var(--color-primary);
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.post-excerpt p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

/* Mobile responsiveness for horizontal cards */
@media (max-width: 768px) {
    .blog-post-card {
        flex-direction: column;
    }
    .post-card-img {
        flex: 0 0 auto;
        height: 250px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Pagination */
.pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
}

.pagination a,
.pagination span.current {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.pagination span.current,
.pagination a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Post Navigation (Single) */
.post-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-previous, .nav-next {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nav-next {
    text-align: right;
    align-items: flex-end;
}

.nav-subtitle {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-navigation a {
    text-decoration: none;
}

.post-navigation a:hover .nav-title {
    color: var(--color-primary);
}

/* ==========================================================================
   Comments Section
   ========================================================================== */
#comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comments-title,
.comment-reply-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

/* Comment Form */
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form p {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.comment-form label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    background: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 90, 36, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form .form-submit {
    align-items: flex-start;
    margin-top: 10px;
}

.comment-form .submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: #e64a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 90, 36, 0.2);
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.comment-list li.comment {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 20px;
    border-left: 2px solid rgba(0,0,0,0.05);
}

.comment-body {
    display: flex;
    gap: 20px;
}

.comment-author .avatar {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.comment-meta {
    margin-bottom: 15px;
}

.comment-meta b {
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.comment-meta a {
    color: var(--color-text-light);
    font-size: 0.85rem;
    text-decoration: none;
}

.reply a {
    display: inline-block;
    margin-top: 10px;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.reply a:hover {
    color: #e64a1a;
}

.spirits-text {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.spirits-text strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

/* CTA Button */
.hero-cta {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 90, 36, 0.3);
    transition: transform 0.3s;
}

.hero-cta:hover {
    transform: translateY(-5px);
}

/* Side Navigation */
.side-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--color-text-light);
    font-weight: 500;
    text-align: center;
    line-height: 2;
    z-index: 10;
}

.left-nav {
    left: 50px;
}

.right-nav {
    right: 50px;
}

/* ==========================================================================
   Discover Section
   ========================================================================== */
.discover-section {
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.discover-header {
    text-align: center;
    margin-bottom: 60px;
}

.discover-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.discover-header .highlight {
    color: var(--color-primary);
}

.discover-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
    position: relative;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--color-text-dark);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    padding: 10px;
}

.nav-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.feature-cards-container {
    display: flex;
    gap: 30px;
    width: max-content;
    transition: transform 0.5s ease-in-out;
}

/* Feature Cards - Dark theme to match floating hero cards */
.feature-card {
    background: rgba(40, 40, 40, 0.95);
    border-radius: 25px;
    padding: 40px 30px;
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card.active {
    background: rgba(55, 55, 55, 0.95);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.f-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-card-header i {
    color: var(--color-primary);
    font-size: 1.8rem;
}

.f-card-header h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-see-plan {
    align-self: flex-end;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-see-plan:hover {
    background-color: #e64a1a;
}

/* Slider Pagination Dots */
.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-dots .dot.active {
    background-color: var(--color-primary);
    transform: scale(1.3);
}

/* ==========================================================================
   Coaches Section
   ========================================================================== */
.coaches-section {
    padding: 100px 50px;
    background-color: var(--color-bg-outer); /* White bg */
}

.coaches-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Images Side */
.coaches-images {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
}

.coach-img-tall {
    background-color: var(--color-primary);
    width: 40%;
    height: 450px;
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.coach-img-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-img-wide {
    background-color: var(--color-bg-inner); /* Light grey */
    width: 60%;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
}

.coach-img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Side */
.coaches-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coaches-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.coaches-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-text-dark);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    /* Optional: To make it look "stretched" as in the image */
    transform: scaleX(1.2);
    transform-origin: left;
}

.coaches-desc {
    color: var(--color-text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e64a1a;
    transform: translateY(-3px);
}

/* ==========================================================================
   Success Stories Section
   ========================================================================== */
.success-section {
    background-color: #080808;
    color: white;
    padding: 100px 50px;
    overflow: hidden;
}

.success-header {
    text-align: center;
    margin-bottom: 80px;
}

.success-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.success-header .highlight {
    color: var(--color-primary);
}

.success-header p {
    color: #999;
    font-size: 1.1rem;
}

.success-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

/* Left Side: Main Story */
.success-main {
    flex: 1.2;
    position: relative;
}

.success-bg-shape {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 90, 36, 0.15) 0%, rgba(255, 90, 36, 0) 70%);
    z-index: 1;
}

.main-user-img {
    width: 100%;
    max-width: 500px;
    height: 550px;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

.testimonial-card {
    position: absolute;
    bottom: 50px;
    right: -100px;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 30px 40px;
    width: 450px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h5 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info span {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating i {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-left: 2px;
}

/* Right Side: Thumbnails */
.success-sidebar {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.slider-nav-round {
    display: flex;
    gap: 15px;
}

.round-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.round-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.thumbnails-track {
    display: flex;
    gap: 20px;
}

.thumb-card {
    position: relative;
    width: 140px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.4s ease;
}

.thumb-card:hover img,
.thumb-card.active img {
    filter: grayscale(0%) brightness(1);
}

.thumb-name {
    position: absolute;
    bottom: 20px;
    right: -20px;
    transform: rotate(-90deg);
    transform-origin: bottom left;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    white-space: nowrap;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
    background-color: #ffffff;
    color: #111;
    padding: 100px 50px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.process-title h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.process-title h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.process-desc {
    max-width: 400px;
}

.process-desc p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

/* Dashed connecting line */
.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px dashed #999;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    background: #ffffff; /* To hide the dashed line behind the circle */
    padding: 0 10px;
}

.step-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-circle i {
    font-size: 4rem;
    color: #111;
    transition: all 0.3s ease;
}

/* Active State (like the black dumbbell circle) */
.step-circle.active,
.step-circle:hover {
    background-color: #111;
    border-color: #111;
}

.step-circle.active i,
.step-circle:hover i {
    color: #ffffff;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    padding: 0 20px;
}

.pricing-container {
    background-color: var(--color-primary); /* Back to Orange */
    border-radius: var(--border-radius-main);
    padding: 60px;
    max-width: 1600px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

/* Background abstract shapes */
.pricing-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.pricing-bg-shape-1 {
    position: absolute;
    top: -30%;
    left: 10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbFloat 15s ease-in-out infinite;
}

.pricing-bg-shape-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    animation: orbFloat 18s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0% { transform: scale(1) translate(0, 0); }
    33% { transform: scale(1.1) translate(30px, -40px); }
    66% { transform: scale(0.9) translate(-20px, 30px); }
    100% { transform: scale(1) translate(0, 0); }
}

.pricing-header, .pricing-cards, .pricing-footer {
    position: relative;
    z-index: 2;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.pricing-dropdown {
    background: #fff;
    color: #111;
    padding: 10px 10px 10px 20px;
    border-radius: 30px;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    cursor: pointer;
}

.dropdown-icon {
    background: #111;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-title {
    text-align: right;
    color: #fff;
}

.pricing-title h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.pricing-title h2 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.price-card {
    flex: 1;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    color: #fff;
}

.price-card:hover {
    transform: translateY(-15px);
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.price-card.active-card {
    background: #fff;
    border: none;
    color: #111;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.price-card.active-card:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Badge for active card */
.popular-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* Card Icon */
.card-icon-wrapper {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.price-card.active-card .card-icon-wrapper {
    background: var(--color-primary);
}

.price-card:hover .card-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.price-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.7;
}

.price-period {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card.active-card .price-amount,
.price-card.active-card h3 {
    color: #111;
}

.price-card.active-card .price-period {
    color: var(--color-primary);
}

.price-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.price-card.active-card p {
    color: #555;
}

/* Card Button */
.card-btn {
    margin-top: auto;
    padding: 15px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-card:hover .card-btn {
    border-color: #fff;
}

.price-card.active-card .card-btn {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.price-card.active-card:hover .card-btn {
    background: #e64a1a;
    border-color: #e64a1a;
}

.pricing-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-white {
    background: #fff;
    color: #111;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #111;
    color: #fff;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
    background-color: #080808;
    color: #fff;
    padding: 80px 50px;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Left Brand */
.footer-brand {
    flex: 1;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-brand p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

/* Center Social & Links */
.footer-social-links {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social-links h4,
.footer-contact h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #080808;
    background: #eef1f0;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.social-icons a:last-child {
    background: transparent;
    color: #fff;
    border: 2px solid #eef1f0;
    font-size: 2rem;
}

.social-icons a:last-child:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.footer-nav,
.footer-menu-list {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-nav li.current-menu-item > a {
    color: var(--color-primary);
}

/* Right Contact */
.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-contact p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 8px;
}