/* ================================
   CSS Variables & Reset - Dark Mode
   ================================ */

/*
   FONT SETUP INSTRUCTIONS:

   For Adobe Fonts (IvyPresto Display & Proxima Soft):
   1. Go to fonts.adobe.com and create an account
   2. Create a new Web Project
   3. Add these fonts to your project:
      - ivypresto-display (weights: 400, 600, 700)
      - proxima-soft (weights: 400, 500, 600, 700)
   4. Copy your Kit ID from the project
   5. In functions.php line 22, replace the Google Fonts line with:
      wp_enqueue_style('adobe-fonts','https://use.typekit.net/YOUR-KIT-ID.css', array(), '1.0' );

   Current Setup: Using Google Fonts alternatives (Playfair Display & Montserrat)
*/

:root {
    /* Primary Colors */
    --primary-blue: #8e949d;
    --dark-blue: #767d87;
    --light-blue: #d7dbe0;

    /* Dark Background Colors */
    --bg-dark: #0a0e1a;
    --bg-darker: #060911;
   
    --bg-card: #1c202b;
    --bg-elevated: #252a35;

    /* Text Colors */
    --text-primary: #d8dce2;
    --text-secondary: #c1c6cd;
    --text-muted: #939aa4;

    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8e949d 0%, #767d87 100%);
    --gradient-secondary: linear-gradient(135deg, #1c202b 0%, #252a35 100%);
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1c202b 50%, #0a0e1a 100%);
    --gradient-card: linear-gradient(145deg, #1c202b 0%, #252a35 100%);

    /* Shadows - Enhanced for dark mode */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(142, 148, 157, 0.25);

    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Font Families */
    --font-heading: 'Arimo', 'Helvetica Neue', Arial, sans-serif;
    --font-subheading: 'Google Sans', 'Arimo', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-darker);
    overflow-x: hidden;
    font-size: 16px;
    position: relative;
}

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

/* ================================
   Utility Classes
   ================================ */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Desktop shows by default, Mobile hidden by default */
.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* Tablet and Mobile: Hide desktop elements, show mobile elements */
@media (max-width: 1024px) {
    .desktop {
        display: none !important;
    }
}

/* ================================
   Typography
   ================================ */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.6vw, 54px);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.05;
    text-transform: capitalize;
}

.section-subheading {
    font-family: var(--font-subheading);
    font-size: clamp(18px, 2.3vw, 24px);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.45;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6.5vw, 72px);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 0.98;
    text-transform: capitalize;
}

.hero-subheading {
    font-family: var(--font-subheading);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.section-body {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    /* white-space: nowrap; */
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-contact {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
}

.btn-contact:hover {
    background: var(--dark-blue);
}

/* ================================
   Header
   ================================ */
#header {
    width: 100%;
    background: black;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition-base);
    position: sticky;
    top:0;
    left:0;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    margin: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    filter: brightness(1.2) contrast(1.1);
}

/* Mobile logo size */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        max-width: 180px;
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-blue);
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.nav-container ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-container a {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.nav-container a:not(.btn):hover {
    color: var(--primary-blue);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Show hamburger on tablet and mobile */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.mobile-nav a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
    display: block;
    padding: 12px 0;
}

.mobile-nav a:not(.btn):hover {
    color: var(--primary-blue);
}

.mobile-nav .btn {
    width: 100%;
    padding:10px 15px;
}

/* ================================
   Banner Section
   ================================ */
#home {
    position: relative;
    padding-bottom:100px;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    width:100%;
}

#home .container{
    max-width:none;
    width:100%;
    padding:0;
    position: relative;
    display: flex;
    flex-direction: column;
}

#home .container::before{
    content:'';
    position: absolute;
    background-image: url('../img/Fitness-Banner.jpeg');
    background-size: cover;
    background-position: center center;
    top:0;
    left:0;
    width: 100%;
    height:70%;
    border-radius: 0 0 20px 20px; 
    z-index:1;
}


#home .container::after{
    content:'';
    position: absolute;
    background-color: black;
    opacity: 0.8;
    top:0;
    left:0;
    width: 100%;
    height:70%;
    border-radius: 0 0 20px 20px; 
    z-index:2;
}

#home .upper-container, #home .lower-container{
    z-index:3;
}

.upper-container .inner-wrapper{
 
    max-width:1440px;
    width:100%;
    padding:50px 20px 20px;
    margin:auto;
    
    
}

.left-container h1 {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6.2vw, 60px);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    line-height: 0.98;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    text-align: center;
}

.left-container h2 {
    font-family: var(--font-subheading);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    letter-spacing: -0.015em;
    max-width: 980px;
    width:100%;
    text-align: center;
    margin:auto;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.button-container {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    justify-content: center;
}

.button-container > button,
.button-container > a {
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-container > a,
.button-container button a {
    color: inherit;
    text-decoration: none;
}

.button-container > :first-child {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.button-container > :first-child:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.button-container > :last-child {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.button-container > :last-child:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


.lower-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding:50px 20px 0;

}



.banner-video-wrapper {
    position: relative;
    width: 100%;
    max-width:900px;
   height:450px;
   margin:auto;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(53, 141, 255, 0.1);
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
    animation-delay: 0.8s;
}

.banner-video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-play-button {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.banner-play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 12px 32px rgba(53, 141, 255, 0.4);
}

.banner-play-button i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-left: 4px;
}

/* Video iframe/embed styling */
.banner-video-content iframe,
.banner-video-content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #home {
        padding-bottom: 80px;
    }

    #home .container::before{
  
        height:85%;
    
    }
    
    
    #home .container::after{
       
        height:85%;
        
    }

    .upper-container .inner-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .left-container h1 {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;

    }

    .button-container {
        flex-direction: column;
        padding-top: 16px;
    }

    .button-container button {
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
    }

    .lower-container {
        padding: 30px 20px 0;
    }

    .banner-video-wrapper {
        border-radius: 16px;
        height: 250px;
        max-width: 100%;
    }

    .banner-play-button {
        width: 60px;
        height: 60px;
    }

    .banner-play-button i {
        font-size: 24px;
    }
}

/* ================================
   Build Habits Section - F&W Inspired
   ================================ */
.habits-section {
    position: relative;
    /* background: var(--bg-darker); */
    padding: 120px 20px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.habits-section::before{
    content:'';
    background-color:#060911;
    opacity: 0.5;
    width:100%;
    height:100%;
    z-index:2;
    position: absolute;
    top:0;
    left:0;
}


.habits-section .container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
}

.habits-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.habits-content {
    text-align: left;
}

.habits-video {
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(53, 141, 255, 0.1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--bg-card);
    padding: 40px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: 0;
    display: block;
}

.habits-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Floating Image Elements */
/* .habits-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
} */

/* .habits-float-element {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 350px;
    opacity: 0.3;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    will-change: transform;
} */

/* Calendar Icon - Left Side */
/* .habits-element-left {
    top: 15%;
    left: -8%;
    animation: floatLeft 25s infinite ease-in-out;
} */

/* Clock Icon - Right Side */
/* .habits-element-right {
    top: 40%;
    right: -8%;
    animation: floatRight 28s infinite ease-in-out;
    animation-delay: 3s;
} */

/* Animation Keyframes - Smooth floating movements */
@keyframes floatLeft {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) scale(1.08) rotate(5deg);
    }
    50% {
        transform: translate(60px, -20px) scale(0.95) rotate(-3deg);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05) rotate(4deg);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    30% {
        transform: translate(-50px, 35px) scale(1.1) rotate(-6deg);
    }
    60% {
        transform: translate(-25px, -30px) scale(0.92) rotate(4deg);
    }
    80% {
        transform: translate(15px, 45px) scale(1.06) rotate(-5deg);
    }
}

/* Mobile responsive for floating elements */
@media (max-width: 768px) {
    .habits-float-element {
        max-width: 200px;
        opacity: 0.25;
    }

    .habits-element-left {
        top: 5%;
        left: -20%;
    }

    .habits-element-right {
        top: 50%;
        right: -20%;
    }
}

/* ================================
   Nutrition Section - F&W Inspired
   ================================ */
.nutrition-section {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-darker);
    overflow: hidden;
}

/* Nutrition Floating Elements */
.nutrition-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.nutrition-float-element {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 400px;
    opacity: 0.4;
    will-change: transform;
}

/* Nutrition Element 1 - Left Side */
.nutrition-element-left {
    top: 10%;
    left: -10%;
    animation: nutritionFloatLeft 28s infinite ease-in-out;
}

/* Nutrition Element 2 - Right Side */
.nutrition-element-right {
    top: 50%;
    right: -8%;
    animation: nutritionFloatRight 32s infinite ease-in-out;
    animation-delay: 4s;
}

/* Nutrition Element 3 - Top Right */
.nutrition-element-center {
    top: 5%;
    right: -5%;
    max-width: 350px;
    opacity: 0.5;
    animation: nutritionFloatCenter 25s infinite ease-in-out;
    animation-delay: 8s;
}

/* Animation Keyframes for Nutrition Section */
@keyframes nutritionFloatLeft {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(35px, -25px) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(65px, 15px) scale(0.92) rotate(-3deg);
    }
    75% {
        transform: translate(20px, 35px) scale(1.05) rotate(4deg);
    }
}

@keyframes nutritionFloatRight {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    30% {
        transform: translate(-45px, 30px) scale(1.08) rotate(-6deg);
    }
    60% {
        transform: translate(-20px, -25px) scale(0.95) rotate(4deg);
    }
    80% {
        transform: translate(25px, 40px) scale(1.03) rotate(-5deg);
    }
}

@keyframes nutritionFloatCenter {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(-30px, 35px) scale(1.12) rotate(7deg);
    }
    50% {
        transform: translate(35px, 45px) scale(0.9) rotate(-5deg);
    }
    70% {
        transform: translate(-20px, -30px) scale(1.06) rotate(6deg);
    }
}

.nutrition-section .container {
    position: relative;
    z-index: 2;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.nutrition-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.nutrition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.16);
}

.nutrition-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.nutrition-icon i {
    font-size: 32px;
    color: #ffffff;
}

.nutrition-card h4 {
    font-family: var(--font-subheading);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.25;
    height: 2.5em;
    margin-bottom: 16px;
}

.nutrition-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin-top: 0;
}

.habits-floating-shapes,
.nutrition-floating-shapes,
.contact-floating-shapes,
.floating-shapes,
.habits-float-element,
.nutrition-float-element,
.contact-float-element,
.shape {
    display: none !important;
}

/* ================================
   Reviews Section - Masonry Layout
   ================================ */
.reviews-section {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-darker);
    overflow: hidden;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* Masonry Layout - Column-based true masonry */
.reviews-masonry {
    column-count: 3;
    gap:20px;
    margin-top: 64px;
}

/* Base Review Card Styles */
.review-card {
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin: 0 0 20px 0;
    padding: 0;
    break-inside: avoid;
    page-break-inside: avoid;
    width: 100%;
}


.review-card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    margin: 0;
    padding: 0;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
    .reviews-masonry {
        column-count: 2;
        column-gap: 16px;
    }

    .review-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 20px;
    }

    .reviews-masonry {
        column-count: 1;
        column-gap: 0;
    }

    .review-card {
        margin-bottom: 16px;
    }
}

/* ================================
   FAQs Section - F&W Inspired
   ================================ */
.faqs-section {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-darker);
    overflow: hidden;
}

.faqs-section .container {
    position: relative;
    z-index: 2;
}

/* FAQs Background Shapes - Masonry Style */
.faqs-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;
    padding: 20px;
    opacity: 0.15;
}

.faq-bg-shape {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    filter: brightness(0.7);
}

/* Masonry Layout - Different sizes and positions with Unsplash Images */
.faq-shape-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=400&h=400&fit=crop');
}

.faq-shape-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=400&h=400&fit=crop');
}

.faq-shape-3 {
    grid-column: 4 / 6;
    grid-row: 1 / 3;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=400&h=400&fit=crop');
}

.faq-shape-4 {
    grid-column: 6 / 7;
    grid-row: 1 / 4;
    background-image: url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?w=400&h=400&fit=crop');
}

.faq-shape-5 {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    background-image: url('https://images.unsplash.com/photo-1549060279-7e168fcee0c2?w=400&h=400&fit=crop');
}

.faq-shape-6 {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
    background-image: url('https://images.unsplash.com/photo-1574680096145-d05b474e2155?w=400&h=400&fit=crop');
}

/* Additional shapes for fuller masonry effect */
.faq-bg-shape:nth-child(7) {
    grid-column: 4 / 5;
    grid-row: 3 / 5;
    background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=400&h=400&fit=crop');
}

.faq-bg-shape:nth-child(8) {
    grid-column: 5 / 7;
    grid-row: 3 / 4;
    background-image: url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?w=400&h=400&fit=crop');
}

.faq-bg-shape:nth-child(9) {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
    background-image: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=400&h=400&fit=crop');
}

.faq-bg-shape:nth-child(10) {
    grid-column: 3 / 5;
    grid-row: 4 / 6;
    background-image: url('https://images.unsplash.com/photo-1594381898411-846e7d193883?w=400&h=400&fit=crop');
}

.faq-bg-shape:nth-child(11) {
    grid-column: 5 / 6;
    grid-row: 4 / 7;
    background-image: url('https://images.unsplash.com/photo-1591940742878-13aba4b7a34e?w=400&h=400&fit=crop');
}

.faq-bg-shape:nth-child(12) {
    grid-column: 6 / 7;
    grid-row: 4 / 6;
    background-image: url('https://images.unsplash.com/photo-1623874228601-f4193c7b1818?w=400&h=400&fit=crop');
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5px, -5px);
    }
}

.faqs-wrapper {
    max-width: 800px;
    margin: 64px auto 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(53, 141, 255, 0.05);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(53, 141, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(53, 141, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-base);
}

.faq-question span {
    font-family: var(--font-subheading);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    padding-right: 16px;
}

.faq-question i {
    font-size: 16px;
    color: var(--primary-blue);
    transition: var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 900px;
}

.faq-answer-inner {
    padding: 0 32px 32px;
}

.faq-answer-inner > :first-child {
    margin-top: 0;
}

.faq-answer-inner > :last-child {
    margin-bottom: 0;
}

.faq-answer p,
.faq-answer li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer p {
    margin: 0 0 20px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 0 0 20px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.faq-answer li + li {
    margin-top: 6px;
}

.faq-answer strong,
.faq-answer b {
    color: var(--text-primary);
    font-weight: 600;
}

/* ================================
   Contact Section - WhatsApp Only
   ================================ */
.contact-section {
    position: relative;
    padding: 120px 20px;
    background: var(--bg-darker);
    overflow: hidden;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Contact Floating Elements */
.contact-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.contact-float-element {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 450px;
    opacity: 0.5;
    will-change: transform;
}

/* Element 1 - Left Side */
.contact-element-left {
    top: 15%;
    left: -15%;
    animation: contactFloatLeft 30s infinite ease-in-out;
    height:500px;
}

/* Element 2 - Right Side */
.contact-element-right {
    bottom: 20%;
    right: -6%;
    animation: contactFloatRight 26s infinite ease-in-out;
    animation-delay: 4s;
}

/* Element 1 - Center/Top */
.contact-element-center {
    top: 5%;
    right: 20%;
    max-width: 350px;
    opacity: 0.5;
    animation: contactFloatCenter 22s infinite ease-in-out;
    animation-delay: 8s;
}

/* Animation Keyframes for Contact Section */
@keyframes contactFloatLeft {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(40px, -30px) scale(1.12) rotate(6deg);
    }
    50% {
        transform: translate(70px, 20px) scale(0.9) rotate(-4deg);
    }
    75% {
        transform: translate(25px, 40px) scale(1.06) rotate(5deg);
    }
}

@keyframes contactFloatRight {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    30% {
        transform: translate(-55px, -40px) scale(0.95) rotate(-7deg);
    }
    60% {
        transform: translate(-20px, 30px) scale(1.15) rotate(5deg);
    }
    85% {
        transform: translate(30px, -20px) scale(0.92) rotate(-3deg);
    }
}

@keyframes contactFloatCenter {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    20% {
        transform: translate(-35px, 40px) scale(1.18) rotate(8deg);
    }
    50% {
        transform: translate(40px, 50px) scale(0.88) rotate(-6deg);
    }
    70% {
        transform: translate(-25px, -35px) scale(1.1) rotate(7deg);
    }
}

.contact-wrapper-simple {
    max-width: 700px;
    margin: 60px auto 0;
}

.whatsapp-cta {
    background: rgba(26, 31, 53, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(53, 141, 255, 0.2);
}

.whatsapp-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-large i {
    font-size: 64px;
    color: white;
}

.whatsapp-title {
    font-family: var(--font-subheading);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.whatsapp-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-family: var(--font-subheading);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
    text-transform: capitalize;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--bg-darker);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(53, 141, 255, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
}

.btn-loading {
    display: none;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
}

/* ================================
   Lead Magnet Modal
   ================================ */
.lead-magnet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lead-magnet-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    padding: 48px 40px;
    box-shadow: var(--shadow-xl);
    z-index: 2001;
}

.modal-content.modal-content-kit {
    max-width: 700px;
    width: min(92vw, 700px);
    padding: 20px;
    background: transparent;
    box-shadow: none;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 24px;
    transition: var(--transition-base);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.modal-icon i {
    font-size: 36px;
    color: white;
}

.modal-title {
    font-family: var(--font-subheading);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.modal-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.kit-modal-embed[hidden] {
    display: none !important;
}

.kit-modal-embed .formkit-form {
    max-width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"],
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] {
    max-width: 560px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] [data-style="clean"],
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] [data-style="clean"] {
    padding: 0 !important;
}

.kit-modal-embed .kit-strong-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
}

.kit-modal-embed .formkit-background {
    min-height: 360px;
    background-image: url('https://embed.filekitcdn.com/e/ruReM365JyFEg9HoWKjAwY/tsdo5Z9nyYPYkAtpbQjbBq');
    background-position: center;
    background-size: cover;
}

.kit-modal-embed .formkit-column {
    padding: 40px;
    text-align: left;
}

.kit-modal-embed .formkit-header {
    margin-bottom: 20px;
}

.kit-modal-embed .formkit-header h2 {
    font-family: var(--font-subheading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #535353;
    margin: 0;
}

.kit-modal-embed .formkit-fields {
    display: block;
}

.kit-modal-embed .formkit-field {
    margin: 0 !important;
}

.kit-modal-embed .formkit-input {
    width: 100%;
    min-height: 78px;
    padding: 0 22px;
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-family: var(--font-body);
    font-size: 18px;
    color: #111827;
    border-radius: 24px 24px 0 0;
    line-height: 1.2;
}

.kit-modal-embed .formkit-input:focus {
    outline: none;
    border-bottom-color: #d7dbe3;
}

.kit-modal-embed .formkit-submit {
    width: 100%;
    margin: 0 !important;
    border: none;
    border-radius: 999px;
    overflow: hidden;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kit-modal-embed .formkit-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.kit-modal-embed .formkit-submit:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

.kit-modal-embed .formkit-submit span {
    display: block;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.kit-modal-embed .formkit-alert {
    list-style: none;
    margin: 0 0 16px !important;
    padding: 12px 14px;
    border-radius: 12px;
    text-align: left;
}

.kit-modal-embed .formkit-alert-success {
    margin: 0 auto 18px !important;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 255, 0.98) 100%);
    border: 1px solid rgba(53, 141, 255, 0.16);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    color: #1f2937;
    text-align: center;
    max-width: 420px;
}

.kit-modal-embed .formkit-alert-success::before {
    content: '';
    display: block;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5d9bff 0%, #358dff 100%);
    box-shadow: 0 12px 24px rgba(53, 141, 255, 0.28);
}

.kit-modal-embed .formkit-alert-success::after {
    content: '✓';
    position: relative;
    display: block;
    margin-top: -51px;
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.kit-modal-embed .formkit-alert-success,
.kit-modal-embed .formkit-alert-success p {
    font-family: var(--font-subheading);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.015em;
}

.kit-modal-embed .formkit-alert-success p {
    margin: 0;
}

.kit-modal-embed .formkit-disclaimer {
    min-height: 14px;
    margin-top: 12px;
}

.kit-modal-embed .formkit-powered-by-convertkit-container {
    margin: 16px 0 0 !important;
    justify-content: center;
}

.kit-modal-embed .formkit-powered-by-convertkit {
    opacity: 0.85;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-fields,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-submit,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-submit {
    margin-top: 0 !important;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-field,
.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-submit,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-field,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-submit {
    flex: 1 1 100%;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-input,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-input {
    min-height: 64px;
    padding: 0 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    font-size: 17px;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-input:focus,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-input:focus {
    border-color: rgba(53, 141, 255, 0.35);
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-submit span,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-submit span {
    padding: 16px 24px;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-powered-by-convertkit-container,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-powered-by-convertkit-container {
    margin-top: 14px !important;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-powered-by-convertkit,
.kit-modal-embed .formkit-form[data-uid="ad68b7d86e"] .formkit-powered-by-convertkit {
    color: var(--text-secondary);
    text-decoration: none;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-submit > span {
    border-radius: 999px;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-field + .formkit-submit {
    margin-top: -1px !important;
}

.kit-modal-embed .formkit-form[data-uid="8341ab59f1"] .formkit-input::placeholder {
    color: #6b7280;
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-content.modal-content-kit {
        width: 92%;
        padding: 0;
    }

    .kit-modal-embed .kit-strong-layout {
        grid-template-columns: 1fr;
    }

    .kit-modal-embed .formkit-background {
        min-height: 200px;
    }

    .kit-modal-embed .formkit-column {
        padding: 28px 24px;
    }
}

.lead-magnet-form .form-group {
    margin-bottom: 24px;
}

/* ================================
   Footer
   ================================ */
#footer {
    background: var(--bg-darker);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--bg-card);
}

.footer-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.back-to-top i {
    font-size: 20px;
    color: white;
}

/* ================================
   Floating Shapes - 3D Fitness Icons
   ================================ */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.08;
    font-size: 120px;
    animation: float 25s infinite ease-in-out;
    filter: drop-shadow(0 8px 16px rgba(53, 141, 255, 0.3));
}

/* Dumbbell Icon */
.shape-1::before {
    content: "🏋️";
    position: absolute;
    animation: rotate3d 30s infinite ease-in-out;
}

.shape-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

/* Running Icon */
.shape-2::before {
    content: "🏃";
    position: absolute;
    animation: rotate3d 35s infinite ease-in-out;
}

.shape-2 {
    top: 60%;
    right: 8%;
    animation-delay: 5s;
}

/* Nutrition/Apple Icon */
.shape-3::before {
    content: "🍎";
    position: absolute;
    animation: rotate3d 28s infinite ease-in-out;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 10s;
}

/* Additional floating icons for variety */
.shape-4::before {
    content: "💪";
    position: absolute;
    animation: rotate3d 32s infinite ease-in-out;
}

.shape-4 {
    top: 40%;
    right: 20%;
    animation-delay: 15s;
    font-size: 100px;
    opacity: 0.06;
}

.shape-5::before {
    content: "⏱️";
    position: absolute;
    animation: rotate3d 26s infinite ease-in-out;
}

.shape-5 {
    bottom: 35%;
    left: 60%;
    animation-delay: 8s;
    font-size: 80px;
    opacity: 0.05;
}

.shape-6::before {
    content: "🥗";
    position: absolute;
    animation: rotate3d 29s infinite ease-in-out;
}

.shape-6 {
    top: 70%;
    right: 40%;
    animation-delay: 12s;
    font-size: 90px;
    opacity: 0.06;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) translateZ(0);
    }
    25% {
        transform: translate(40px, -40px) translateZ(20px);
    }
    50% {
        transform: translate(-30px, 30px) translateZ(-20px);
    }
    75% {
        transform: translate(50px, 15px) translateZ(10px);
    }
}

@keyframes rotate3d {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(90deg) rotateX(15deg);
    }
    50% {
        transform: rotateY(180deg) rotateX(0deg);
    }
    75% {
        transform: rotateY(270deg) rotateX(-15deg);
    }
}

/* ================================
   Animations
   ================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up-delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up-delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

[data-scroll] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 768px) {
    .habits-section {
        padding: 80px 20px;
    }

    .habits-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .habits-content {
        text-align: center;
    }

    .habits-buttons {
        flex-direction: column;
    }

    .habits-buttons .btn {
        width: 100%;
    }

    /* Masonry grid responsive */
    .faqs-background-shapes {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(8, 1fr);
        opacity: 0.04;
        padding: 10px;
        gap: 5px;
    }

    .faq-shape-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .faq-shape-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .faq-shape-3 {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }

    .faq-shape-4 {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
    }

    .faq-shape-5 {
        grid-column: 2 / 4;
        grid-row: 2 / 4;
    }

    .faq-shape-6 {
        grid-column: 1 / 3;
        grid-row: 5 / 7;
    }

    .faq-bg-shape:nth-child(7) {
        grid-column: 3 / 4;
        grid-row: 4 / 6;
    }

    .faq-bg-shape:nth-child(8) {
        grid-column: 2 / 3;
        grid-row: 7 / 9;
    }

    .faq-bg-shape:nth-child(9) {
        grid-column: 3 / 4;
        grid-row: 6 / 8;
    }

    /* Contact section floating elements responsive */
    .contact-float-element {
        max-width: 280px;
        opacity: 0.5;
    }

    .contact-element-left {
        top: 10%;
        left: -20%;
    }

    .contact-element-right {
        bottom: 15%;
        right: -20%;
    }

    .contact-element-center {
        max-width: 200px;
        top: 5%;
        right: 10%;
        opacity: 0.4;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-divider {
        display: none;
    }

    .nutrition-grid {
        grid-template-columns: 1fr;
    }

    /* Nutrition section floating elements responsive */
    .nutrition-float-element {
        max-width: 200px;
        opacity: 0.3;
    }

    .nutrition-element-left {
        top: 2%;
        left: -15%;
    }

    .nutrition-element-right {
        bottom: 5%;
        top: auto;
        right: -15%;
    }

    .nutrition-element-center {
        top: 40%;
        right: -18%;
        max-width: 180px;
    }

    .section-heading {
        font-size: clamp(30px, 8vw, 40px);
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .modal-content {
        padding: 32px 24px;
    }
}

@media( max-width:480px ){
    .btn-whatsapp{
        display: flex;
        flex-direction: column;
        font-size:14px;
    }

    .fa-whatsapp{
        font-size:20px;
    }
}

/* ================================
   404 Page
   ================================ */

.not-found-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

.not-found-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
}

.not-found-bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-purple);
    top: -100px;
    left: -150px;
}

.not-found-bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    bottom: -100px;
    right: -100px;
}

.not-found-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.not-found-number {
    font-family: var(--font-heading);
    font-size: clamp(80px, 18vw, 180px);
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    margin-bottom: 12px;
    user-select: none;
}

.not-found-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.not-found-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.not-found-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .not-found-section {
        min-height: auto;
        padding: 60px 0 48px;
    }

    .not-found-number {
        font-size: clamp(64px, 22vw, 100px);
        margin-bottom: 8px;
    }

    .not-found-title {
        font-size: clamp(22px, 6vw, 28px);
        margin-bottom: 10px;
    }

    .not-found-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .not-found-section {
        padding: 48px 0 40px;
    }

    .not-found-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .not-found-actions .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}
