/* Reset and Base Styles */

/* Gradient Variables */
:root {
    --neutralGreyGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #AAAAAA99 3.9%, 
        #EEEEEE66 46.13%, 
        #DDDDDDFC 72.5%, 
        #BBBBBB33 100%), 
    #FFF;

    --coolBlueGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #ADC2CD 0%, 
        rgba(71, 154, 194, 0)), 
    #FFF;

    --mintRoseGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #B7E6DB80 0%, 
        #F6FEECCD 57.37%, 
        #BDB0BE66 100%), 
    #FFF;

    --warmNeutralGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #E8DCCB 0%, 
        #F7F2EC 50%, 
        #D3C2B680 100%), 
    #FFF;

    --mistyBlueGreyGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #A9B8C7 0%, 
        #E1E8ED 55%, 
        #C6D0D980 100%), 
    #FFF;

    --sageGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #D7E6D5 0%, 
        #F9FBF7 50%, 
        #C2D3C080 100%), 
    #FFF;

    --peachBlushGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #F8D9D0 0%, 
        #FFF5F2 55%, 
        #EBC9C380 100%), 
    #FFF;

    --lavenderMauveGradient: radial-gradient(145.07% 141.42% at 100% 0%, 
        #DCD4E8 0%, 
        #F6F3FA 50%, 
        #C7BFD680 100%), 
    #FFF;
}

/* Fonts are now loaded via Google Fonts for better performance */

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    letter-spacing: 0.5px;
}

html {
    scroll-behavior: smooth;
}

/* Clients Slider Section */
.clients-slider-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.clients-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

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

.clients-track {
    display: flex;
    width: 200%;
    animation: scroll-clients 20s linear infinite;
    animation-play-state: paused;
    gap: 60px;
    margin-left: -60px;
}

.client-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.client-item:hover {
    opacity: 1;
}

.client-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-item:hover img {
    filter: grayscale(0%);
}

/* Larger logos for BCCI and RCB */
.client-item img[alt="BCCI"],
.client-item img[alt="RCB"] {
    height: 80px;
}

/* Smaller logos for GoSports and Outfit */
.client-item img[alt="GoSports"],
.client-item img[alt="Outfit"] {
    height: 45px;
}

/* Slightly smaller logo for Reset */
.client-item img[alt="Reset"] {
    height: 50px;
}

@media (max-width: 768px) {
    .client-item img[alt="BCCI"],
    .client-item img[alt="RCB"] {
        height: 65px;
    }
    
    .client-item img[alt="GoSports"],
    .client-item img[alt="Outfit"] {
        height: 35px;
    }
    
    .client-item img[alt="Reset"] {
        height: 40px;
    }
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure infinite loop */
.clients-track {
    animation-iteration-count: infinite;
}

/* Pause animation on hover */
.clients-track:hover {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .clients-slider-section {
        padding: 20px 0;
    }
    
    .clients-track {
        gap: 40px;
    }
    
    .client-item img {
        height: 45px;
    }
}

/* Responsive Hero Images */
.mobile-hero {
    display: none;
}

.desktop-hero {
    display: block;
}

@media (max-width: 768px) {
    .mobile-hero {
        display: block;
    }

    .desktop-hero {
        display: none;
    }
}

/* Mobile Slide Image Styling */
.mobile-slide-image {
    width: 100%;
    margin-bottom: 20px;
}

.slide-image {
    width: 75%;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* Testimonial Large Card Overlay */
.testimonial-card.large,
.testimonial-card.overlay {
    position: relative;
    overflow: hidden;
}

.testimonial-card.large .testimonial-image,
.testimonial-card.overlay .testimonial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonial-card.large .testimonial-image img,
.testimonial-card.overlay .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card.large .testimonial-content,
.testimonial-card.overlay .testimonial-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.8) 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
}

.testimonial-card.large .testimonial-name,
.testimonial-card.large .testimonial-title,
.testimonial-card.overlay .testimonial-name,
.testimonial-card.overlay .testimonial-title {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Square images for "Our values drive us" section */
.built-device img {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (max-width: 768px) {
    .built-device img {
        width: 100%;
    }
}

/* Apply Montserrat to all heading elements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
}

/* HSA/FSA Banner */
.hsa-banner {
    background-color: #00ff88;
    color: #000;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 100;
}

.join-link {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

/* Header */
.header {
    background-color: #000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    gap: 40px;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.desktop-nav a:hover {
    opacity: 0.7;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 201;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #00ff88;
}

.mobile-join-btn {
    background-color: #00ff88;
    color: #000 !important;
    padding: 15px 30px;
    border-radius: 25px;
    margin-top: 20px;
}

.mobile-join-btn:hover {
    background-color: #00e077;
    color: #000 !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Join Button */
.join-btn {
    background-color: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #f0f0f0;
}

/* Main Content */
.main-content {
    position: relative;
}

.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1;
    --darkness: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--darkness));
    pointer-events: none;
    z-index: 3;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: 86px;
    line-height: 1.1;
    margin-bottom: 24px;
    width: 100%;
}

.hero-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    width: 100%;
    opacity: 0.9;
}

.cta-button {
    background-color: #fff;
    color: #000;
    padding: 16px 48px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    width: fit-content;
    text-align: center;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 10;
    min-height: 50px;
    box-sizing: border-box;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateX(-50%) translateY(-2px);
}

/* Mobile: Position button below hero description */
@media (max-width: 768px) {
    .cta-button {
        position: static !important;
        transform: none !important;
        margin: 100px auto 0 !important;
        width: fit-content;
        padding: 16px 48px !important;
        padding-bottom: 16px !important;
        bottom: auto !important;
        left: auto !important;
    }
    
    .cta-button:hover {
        transform: translateY(-2px) !important;
    }
}

/* Video Control */
.video-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.video-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.pause-icon {
    font-size: 14px;
    font-weight: bold;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hsa-banner {
        font-size: 12px;
        padding: 10px 15px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .nav-container {
        padding: 0 15px;
    }

    .join-btn {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
    }

    /* Padded Content Mobile */
    .padded-content {
        gap: 40px;
        padding: 0 15px;
    }

    .wear-text,
    .section-text {
        text-align: left;
        max-width: none;
    }

    /* Section Title and Description Mobile */
    .section-title {
        font-size: 56px;
        margin-bottom: 20px;
        line-height: 0.9;
    }

    .section-description {
        font-size: 28px;
    }

    .wear-image {
        height: auto;
    }

    /* Desktop Category Pills - Hide on mobile */
    .category-pills-container {
        display: none !important;
    }
    
    /* Mobile Category Pills - Show on mobile */
    .mobile-category-pills {
        display: block !important;
        margin: 0px 0 0 0;
        padding: 0 0px;
    }
    
    .mobile-category-swiper {
        overflow: visible;
    }
    
    .mobile-category-swiper .swiper-slide {
        width: auto;
        margin-right: 15px;
    }
    
    /* Hide navigation buttons on mobile */
    .mobile-category-swiper .swiper-button-next,
    .mobile-category-swiper .swiper-button-prev {
        display: none !important;
    }

    /* Live in luxe mobile */
    .luxe-content {
        flex-direction: column;
        gap: 30px;
        margin: 40px 0;
        text-align: left;
    }

    .luxe-title {
        font-size: 36px;
        margin-bottom: 20px;
        text-align: left;
    }

    .luxe-description {
        font-size: 16px;
        text-align: left;
    }

    /* Referral Section Mobile */
    .referral-section {
        background: #f8f8f8;
        border-radius: 20px;
        padding: 20px !important;
        margin: 40px 0 !important;
    }

    .referral-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .referral-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .referral-description {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: left;
    }

    .referral-btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .referral-devices {
        justify-content: center;
        align-items: center;
        order: 1;
    }

    .devices-composite {
        max-width: 100%;
        width: 100%;
    }

    /* Slider Mobile */
    .slider-section {
        padding: 40px 0;
    }

    .slider-container {
        padding: 0 15px;
    }

    .slider-container.slider-container-mobile {
        margin-left: 10px;
        margin-right: 10px;
        padding: 0 px;
    }

    .swiper {
        padding-bottom: 0;
    }

    .slide-image {
    }

    .slide-title {
        font-size: 20px;
    }

    .slide-expand {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .swiper {
        padding-bottom: 0;
    }

    /* Hide navigation arrows on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }



    .hero-title {
        font-size: 72px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .cta-button {
        padding: 14px 40px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .video-control {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hsa-banner {
        justify-content: center;
        position: relative;
    }

    .join-link {
        position: absolute;
        right: 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 86px;
        margin-bottom: 24px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 16px 45px;
        font-size: 14px;
    }

    .video-control {
        bottom: 100px;
        right: 40px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hsa-banner {
        justify-content: center;
        position: relative;
    }

    .join-link {
        position: absolute;
        right: 20px;
    }

    .hero-content {
    }

    .hero-title {
        font-size: 86px;
        margin-bottom: 28px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .cta-button {
        padding: 18px 50px;
        font-size: 14px;
    }

    .video-control {
        bottom: 110px;
        right: 50px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 86px;
    }

    .hero-description {
        font-size: 24px;
    }
}

/* Hide CTA button on desktop */
@media (min-width: 1024px) {
    .cta-button {
        display: none;
    }
    
    .hero-content {
        justify-content: flex-end;
        padding-bottom: 60px;
    }
}

/* Scrollable Content Container */
.scrollable-content {
    position: relative;
    background: #fff;
    color: #000;
    z-index: 5;
    margin-top: 100vh; /* Push entire content container down below the hero */
}

/* Wear Body Insight Daily Section */
.wear-section {
    position: relative;
    padding: 80px 0;
}

.padded-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Full Picture Section */
.full-picture-section {
    position: relative;
    padding: 60px 0 40px 0;
}




.section-text {
    text-align: left;
    max-width: 1000px;
}

/* Common Section Title and Description */
.section-title {
    font-size: 86px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #000;
}

.section-description {
    font-size: 26px;
    line-height: 1.6;
    color: #333;
    line-height: 1.2;
}

.wear-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.wear-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Mobile Category Pills Slider (hidden on desktop) */
.mobile-category-pills {
    display: none;
}

/* Category Pills Slider */
.category-pills-container {
    margin: 0 0 40px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.category-swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.category-swiper .swiper-wrapper {
    align-items: center;
}

.category-swiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
}

/* Hide navigation buttons for category swiper */
.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev,
.mobile-category-swiper .swiper-button-next,
.mobile-category-swiper .swiper-button-prev {
    display: none !important;
}

.category-pill {
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-pill.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.category-pill:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000;
    color: #000;
}

/* Live in luxe content */
.luxe-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0px 0;
}

.luxe-image {
    flex: 1;
    max-width: 600px;
    min-width: 0;
}

.luxe-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.luxe-text {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.luxe-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.luxe-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    opacity: 0.9;
}

/* Referral Section */
.referral-section {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 80px 60px;
    margin: 80px 0;
}

.referral-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.referral-text {
    flex: 1;
    text-align: left;
}

.referral-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #000;
}

.referral-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.referral-btn {
    display: inline-block;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.referral-btn:hover {
    background: #000;
    color: #fff;
}

.referral-devices {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.devices-composite {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}



/* Slider Section */
.slider-section {
    padding: 0px 0;
    background: #fff;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Swiper customization */
.swiper {
    width: 100%;
    padding-bottom: 0; /* No internal padding since pagination is external */
}

.swiper-slide {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    position: relative;
    height: auto;
}

.slide-image {
    position: relative;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Slide Gradient Backgrounds - Applied to entire slide */
.main-swiper .swiper-slide:nth-child(1) {
    background: var(--neutralGreyGradient);
}

.main-swiper .swiper-slide:nth-child(2) {
    background: var(--coolBlueGradient);
}

.main-swiper .swiper-slide:nth-child(3) {
    background: var(--peachBlushGradient);
}

.main-swiper .swiper-slide:nth-child(4) {
    background: var(--warmNeutralGradient);
}

.main-swiper .swiper-slide:nth-child(5) {
    background: var(--lavenderMauveGradient);
}

.main-swiper .swiper-slide:nth-child(6) {
    background: var(--sageGradient);
}

.slide-content {
    position: relative;
    padding: 20px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.slide-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #000;
}

.slide-expand {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slide-expand:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

/* Swiper navigation customization */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.9) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    color: #000 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.05) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #000 !important;
}

/* Swiper pagination customization */
.swiper-pagination {
    position: static !important;
    width: auto !important;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ddd !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
}

.swiper-pagination-bullet-active {
    background: #000 !important;
}

.swiper-pagination-bullet:hover {
    background: #666;
}

/* Services Section */
.services-section {
    background-color: black;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-mobile {
    display: none;
}

.service-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px 0 40px 0;
    display: flex;
    flex-direction: column;
    min-height: 700px;
    justify-content: space-between;
}

/* DEXA+ card specific background - targeting first service card */
.service-card:first-child {
    background: radial-gradient(145.07% 141.42% at 100% 0%, #AAAAAA99 3.9%, #EEEEEE66 46.13%, #DDDDDDFC 72.5%, #BBBBBB33 100%), #FFF;
}

/* RMR card specific background - targeting second service card */
.service-card:nth-child(2) {
    background: radial-gradient(145.07% 141.42% at 100% 0%, #ADC2CD 0%, rgba(71, 154, 194, 0)), #FFF;
}

/* VO2 Max card specific background - targeting third service card */
.service-card:nth-child(3) {
    background: radial-gradient(145.07% 141.42% at 100% 0%, #B7E6DB80 0%, #F6FEECCD 57.37%, #BDB0BE66 100%), #FFF;
}

.service-card.mobile {
    min-height: 600px;
    padding: 30px 0;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 30px;
}

.service-name {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 8px;
    margin: 0 0 15px 0;
    color: #000;
}

.service-description {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.service-image {
    text-align: center;
    margin: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-pricing {
    text-align: center;
    margin: 0;
    padding: 10px 0;
    background: white;
    border-radius: 0 0 20px 20px;
    margin-top: -1px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.service-features {
    margin: 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.feature-header {
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    display: block;
    width: 100%;
}

.check {
    color: #000;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.service-buttons {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
    align-items: center;
}

.service-cta {
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.service-cta.primary {
    background: #000;
    color: #fff;
}

.service-cta.primary:hover {
    background: #333;
}

.service-cta.secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.service-cta.secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.trial-text {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: 10px 0 0 0;
}

.services-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.services-swiper .swiper-pagination-bullet-active {
    background: #fff !important;
}

/* Built swiper pagination styling for dark background */
.built-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    width: 10px !important;
    height: 10px !important;
}

.built-swiper .swiper-pagination-bullet-active {
    background: #fff !important;
}

/* Membership Card */
.membership-card {
    background: #2a2a2a;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.membership-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.membership-image {
    flex: 1;
    max-width: 460px;
}

.membership-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.membership-text {
    flex: 1;
    color: white;
}

.membership-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.membership-description {
    font-size: 18px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 40px;
}

.membership-cta {
    background: white;
    color: black;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Clients Section */
.clients-section {
    background: #fff;
    color: #000;
    padding: 80px 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* Hide mobile testimonials on desktop */
.testimonials-mobile {
    display: none;
}

.testimonial-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.testimonial-card.large {
    grid-row: span 2;
}

.testimonial-card.large.reduced {
    grid-row: span 1.4;
}

.testimonial-card.large.reduced .testimonial-image {
    height: 100%;
}

.testimonial-card.quote {
    color: black;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.clients-disclaimer p {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.testimonial-card.large .testimonial-image {
    height: 100%;
}

.testimonial-image {
    height: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button::after {
    content: "▶";
    color: #000;
    font-size: 20px;
    margin-left: 3px;
}

.testimonial-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 12px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff;
}

.testimonial-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.bg-black {
    background-color: #000;
}

.testimonial-expand {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote {
    text-align: left;
}

.testimonial-quote p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.author-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

/* Services Mobile Responsive */
@media (max-width: 768px) {
    .services-grid {
        display: none !important;
    }
    
    .services-mobile {
        display: block !important;
        margin-top: 40px;
    }
    
    .services-swiper {
        padding-bottom: 50px;
    }
    
    .service-card.mobile {
        background: #f5f5f5;
        border-radius: 20px;
        padding: 30px 0 30px 0;
        display: flex;
        flex-direction: column;
    }
    
    .service-card.mobile .service-header {
        padding: 0 20px;
    }
    
    .service-card.mobile .service-features {
        margin: 30px 20px;
    }
    
    /* DEXA+ mobile card specific background - targeting first mobile service card */
    .services-swiper .swiper-slide:nth-child(1) .service-card.mobile {
        background: radial-gradient(145.07% 141.42% at 100% 0%, #AAAAAA99 3.9%, #EEEEEE66 46.13%, #DDDDDDFC 72.5%, #BBBBBB33 100%), #FFF;
        min-height: 500px;
        justify-content: space-between;
    }
    
    /* RMR mobile card specific background - targeting second mobile service card */
    .services-swiper .swiper-slide:nth-child(2) .service-card.mobile {
        background: radial-gradient(145.07% 141.42% at 100% 0%, #ADC2CD 0%, rgba(71, 154, 194, 0)), #FFF;
    }
    
    /* VO2 Max mobile card specific background - targeting third mobile service card */
    .services-swiper .swiper-slide:nth-child(3) .service-card.mobile {
        background: radial-gradient(145.07% 141.42% at 100% 0%, #B7E6DB80 0%, #F6FEECCD 57.37%, #BDB0BE66 100%), #FFF;
    }
    
    /* Mobile service pricing styling */
    .service-card.mobile .service-pricing {
        margin: 0;
        padding: 15px 20px;
        background: white;
        border-radius: 0 0 20px 20px;
        margin-top: -1px;
    }

    /* Membership Card Mobile */
    .membership-card:not(.mobile) {
        display: none !important;
    }

    .membership-card.mobile {
        background: #2a2a2a;
        border-radius: 20px;
        padding: 30px 20px;
        display: block !important;
        margin-top: 40px;
    }

    .membership-content.mobile {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .membership-image {
        max-width: 100%;
        order: 1;
    }

    .membership-text {
        order: 2;
    }

    .membership-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .membership-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Hide desktop testimonials on mobile */
    .testimonials-grid {
        display: none !important;
    }

    /* Mobile Testimonials Swiper */
    .testimonials-mobile {
        display: block !important;
        margin-top: 40px;
    }

    .testimonials-swiper {
        padding-bottom: 50px;
    }

    .testimonial-card.mobile {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
        position: relative;
        height: 400px;
        margin: 0;
        width: 100%;
    }

    .testimonial-card.mobile.large .testimonial-image {
        height: 300px;
    }

    .testimonial-card.mobile.large .testimonial-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 30px 20px 20px;
    }

    .testimonial-card.mobile.quote {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #f8f8f8;
        height: 400px;
        width: 100%;
        margin: 0;
    }

    .testimonial-card.mobile.quote h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: #000;
    }

    .testimonials-pagination {
        bottom: 0 !important;
    }

    .testimonial-card.large {
        grid-row: span 2;
    }

    .testimonial-image {
        height: 100%;
    }

    .testimonial-card.large .testimonial-image {
        height: 100%;
    }

    .testimonial-card.large.reduced .testimonial-image {
        height: 100%;
    }

    .testimonial-content {
        padding: 12px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-title {
        font-size: 12px;
    }

    .testimonial-quote {
        padding: 20px;
    }

    .testimonial-card.quote.large {
        min-height: 300px;
        display: flex;
        align-items: center;
    }

    /* Last 2 cards span full width on mobile */
    .testimonial-card:nth-last-child(-n+2) {
        grid-column: span 2;
    }

    .testimonial-quote p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-title {
        font-size: 13px;
    }
}

/* Extra Mobile Adjustments */
@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
        margin-bottom: 12px;
        line-height: 0.9;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.3;
    }

    .hero-content {
        padding: 0 15px;
    }

    .cta-button {
        padding: 12px 36px;
        font-size: 11px;
    }

    .video-control {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
    }


    /* Extra Small Mobile - Section Title and Description */
    .section-title {
        font-size: 56px;
        margin-bottom: 16px;
        line-height: 0.9;
    }

    .section-description {
        font-size: 28px;
    }

    .wear-image {
        height: auto;
    }

    /* Membership Card Extra Small Mobile */
    .membership-title {
        font-size: 28px !important;
    }

    .membership-description {
        font-size: 14px !important;
    }

    .membership-cta {
        padding: 14px 28px;
        font-size: 13px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .testimonial-card.large {
        grid-row: span 2 !important;
    }

    .testimonial-image {
        height: 100% !important;
    }

    .testimonial-card.large .testimonial-image {
        height: 100% !important;
    }

    .testimonial-card.large.reduced .testimonial-image {
        height: 100% !important;
    }

    .testimonial-quote p {
        font-size: 14px !important;
    }

    .testimonial-name {
        font-size: 13px !important;
    }

    .testimonial-title {
        font-size: 11px !important;
    }

    .testimonial-content {
        padding: 10px !important;
    }

    .testimonial-quote {
        padding: 15px !important;
    }

    .testimonial-card.quote.large {
        min-height: 350px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Last 2 cards span full width on mobile */
    .testimonial-card:nth-last-child(-n+2) {
        grid-column: span 2 !important;
    }
}

/* Built to be worn 24/7 Section */
.built-section {
    background: #000;
    color: white;
    padding: 80px 0;
}

.built-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.built-text {
    flex: 1;
    max-width: 600px;
}

.built-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 32px;
    color: white;
}

/* Desktop Features List - Vertical Accordion */
.built-features-desktop {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Fixed height to prevent this container from expanding */
    height: 280px;
    position: relative;
    overflow: visible;
}

.feature-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    overflow: visible;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}

.feature-item.active {
    border-left: 3px solid white;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 1);
}

.feature-item.active .feature-text {
    font-size: 50px;
}

.feature-content-inline {
    padding: 15px 0 15px 20px;
    transition: all 0.3s ease;
}


.feature-line {
    display: none;
}

.feature-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    line-height: 1.4;
    display: block;
    margin-bottom: 0;
}

.feature-item.active .feature-text,
.feature-item:hover .feature-text {
    color: white;
}

.feature-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.feature-item.active .feature-description {
    max-height: 100px;
    padding: 10px 0 0 0;
    font-size: 30px;
}

.feature-description p {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}


.built-cta {
    margin-top: 50px;
    background: white;
    color: black;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.built-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Device Section */
.built-device {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.device-light {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background: #00ff00;
    border-radius: 3px;
    box-shadow: 0 0 20px #00ff00;
}

.device-pause {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.device-pause:hover {
    background: white;
    transform: scale(1.1);
}

/* Mobile Slider */
.built-mobile-slider {
    display: none;
    margin-top: 40px;
}

.built-swiper {
    padding-bottom: 50px;
}


/* Built Section Mobile Responsive */
@media (max-width: 768px) {
    .built-section {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .built-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .built-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .built-features-desktop,
    .feature-content,
    .built-cta {
        display: none;
    }

    .built-mobile-slider {
        display: block !important;
        margin-top: 40px;
        width: 100%;
        overflow: visible;
    }
    
    .mobile-slide-content {
        background: rgba(255,255,255, 0.1);
        border-radius: 20px;
        padding: 25px 20px;
        text-align: left;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        border: none;
    }
    
    .mobile-slide-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: white;
        line-height: 1.2;
    }
    
    .mobile-slide-description {
        font-size: 15px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 1);
        margin: 0;
        flex: 1;
    }
    
    .built-swiper {
        padding-bottom: 50px;
        width: 100%;
        overflow: visible;
    }
    
    .built-swiper .swiper-wrapper {
        width: 100%;
    }
    
    .built-swiper .swiper-slide {
        width: auto;
        flex-shrink: 0;
    }

    .device-container {
        order: -1;
    }

    .device-image {
        max-width: 300px;
    }

    .device-light {
        top: 35%;
    }

    .device-pause {
        bottom: 15%;
        right: 15%;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px 0;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Footer Navigation */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links li {
    margin: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.social-links a:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

/* App Download Section */
.app-download-section {
    margin-top: 40px;
    text-align: left;
}

.app-download-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

.app-download-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-btn,
.play-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.play-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img,
.play-store-btn img {
    height: 60px;
    width: 180px;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .app-download-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .app-download-buttons {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }
    
    .app-store-btn img,
    .play-store-btn img {
        height: 55px;
        width: 165px;
    }
}

/* Newsletter Section */
.newsletter-section {
    align-self: flex-end;
    margin-top: -80px;
    margin-bottom: 80px;
}

.newsletter-input {
    display: flex;
    max-width: 400px;
    margin-bottom: 16px;
    border-bottom: 2px solid #fff;
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 12px 0;
    outline: none;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    opacity: 0.7;
}

.privacy-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-mission {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.flag-icon {
    width: 24px;
    height: 16px;
}

.dropdown-arrow {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Testimonials - Separate Media Query */
@media (max-width: 768px) {
    .testimonials-mobile {
        display: block !important;
        margin-top: 40px;
    }

    .testimonials-swiper {
        padding-bottom: 50px;
    }

    .testimonial-card.mobile {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
        position: relative;
        height: 400px;
        margin: 0;
        width: 100%;
    }

    .testimonial-card.mobile.large .testimonial-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .testimonial-card.mobile.large .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        object-position: center top;
    }

    .testimonial-card.mobile.large .testimonial-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 30px 20px 12px 20px;
        z-index: 2;
    }

    .testimonial-card.mobile.quote {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #f8f8f8;
        height: 400px;
        width: 100%;
        margin: 0;
    }

    .testimonial-card.mobile.quote h3 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: #000;
    }

    .testimonials-pagination {
        bottom: 0 !important;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px 0;
    }

    .footer-content {
        gap: 60px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .column-title {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-column li {
        margin-bottom: 12px;
    }

    .newsletter-section {
        align-self: stretch;
        margin-top: 0;
        margin-bottom: 0;
    }

    .newsletter-input {
        max-width: 100%;
    }

    .email-input {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .privacy-text {
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-mission {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}
