/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.fa-arrow-right{
    background-color: #fff;
    border-radius: 50%;
    color: red;
    padding: 2px;
}

/* Responsive Styles for Machines Section */
@media (max-width: 768px) {
    .machines {
        padding: 40px 0;
    }
    
    .machines-header {
        margin-bottom: 2rem;
    }
    
    .machines-header .section-title {
        font-size: 2rem;
    }
    
    .carousel-wrapper {
        gap: 1rem;
    }
    
    .machine-card {
        min-width: 250px;
        max-width: 250px;
    }
    
    .machine-video {
        height: 300px;
    }
    
    .play-btn, .sound-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-indicators {
        margin-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .machines {
        padding: 30px 0;
    }
    
    .machines-header {
        margin-bottom: 1.5rem;
    }
    
    .machines-header .section-title {
        font-size: 1.8rem;
    }
    
    .carousel-wrapper {
        gap: 0.5rem;
    }
    
    .machine-card {
        /* min-width: 220px; */
        max-width: 220px;
    }
    
    .machine-video {
        height: 280px;
    }
    
    .play-btn, .sound-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        margin-top: 1rem;
    }
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
    background-color: #0d0d0d;
    overflow-x: hidden;
}

/* Gym-style font hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Arial Black', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title, .section-title, .main-title {
    font-family: 'Poppins', 'Arial Black', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn, button {
    font-family: 'Poppins', 'Arial Black', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation and menu items */
.nav-links a, .nav-link {
    font-family: 'Poppins', 'Arial Black', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form inputs for better readability */
input, select, textarea {
    font-family: 'Poppins', 'Arial', sans-serif;
}

/* Body text for better readability */
p, .description, .about-description {
    font-family: 'Poppins', 'Arial', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100vw;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

/* Keep the old h2 styling for backward compatibility if needed */
.nav-logo h2 {
    color: #FF4444;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #FF4444;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.011), rgba(0, 0, 0, 0.032)), 
                url('assets/smoke-image-2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Banner overrides: use responsive images instead of background/overlay */
.hero.hero-banner {
    height: auto;
    padding: 0;
    background: none;
    display: block;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.hero-text {
    flex: 1;
    text-align: left;
    z-index: 2;
    /* max-width: 50%; */
}

.hero-image {
    position: absolute;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FF4444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #FF4444, #DC2626);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    border: 2px solid #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* About Section */
.about {
    padding: 40px 0;
    background: #1a1a1a;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-left {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-main-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.about-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-container:hover .about-video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 184, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    color: #000;
    font-size: 24px;
    margin-left: 4px;
}

.about-right {
    padding-left: 1.5rem;
}

.about-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-secondary-left {
    padding-right: 2rem;
}

.about-secondary-right {
    position: relative;
}

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.read-more-btn {
    background: #FF4444;
    color: #000;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.read-more-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.section-subtitle {
    color: #FF4444;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    /* margin-bottom: 1.5rem; */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description p {
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    line-height: 1.7;
    color: #c1c1c1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.388), rgba(0, 0, 0, 0.396)), 
                url('assets/smoke-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 450px;
    position: relative;
}

.features-left {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}

.features-header {
    text-align: left;
    margin-bottom: 2rem;
}

.features-header .section-subtitle {
    color: #FF4444;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.features-header .section-title {
    color: #FF4444;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF4444, #DC2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.feature-text p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
    overflow: visible;
}

.background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.9;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
}

.girl-image {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

/* Tablet optimization */
@media (max-width: 1024px) {
    .features-content {
        gap: 2.5rem;
    }
    
    .features-image {
        max-width: 400px;
        height: 480px;
    }
    
    .background-text {
        font-size: 5rem;
    }
    
    .girl-image {
        max-height: 550px;
        top: -60px;
    }
}

/* Logo Responsive Styling */
@media (max-width: 768px) {
    .nav-logo .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-section .footer-logo {
        height: 35px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-img {
        height: 43px;
        max-width: 200px;
    }
    
    .footer-section .footer-logo {
        height: 30px;
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    .features-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        min-height: auto;
    }
    
    /* Reorder: Since features-right is hidden on mobile, only style features-left */
    .features-left {
        order: 1;
        max-width: 100%;
    }
    
    /* Hide girl image and background text on mobile */
    .girl-image {
        display: none;
    }
    
    .background-text {
        display: none;
    }
    
    /* Hide the entire features-right section on mobile since it only contains the image and text we want to hide */
    .features-right {
        display: none;
    }
    
    .features-header {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .features-header .section-title {
        font-size: 2rem;
    }
    
    /* Create 2x2 grid layout for feature cards */
    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    /* Optimize feature items for compact layout */
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.08);
    }
    
    /* Compact icon size */
    .feature-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
        flex-shrink: 0;
        font-size: 1.1rem;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .feature-text h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .feature-text p {
        font-size: 0.8rem;
        line-height: 1.4;
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
    }
    
    /* Ensure touch targets are 48x48px minimum */
    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .feature-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Small mobile optimization */
@media (max-width: 480px) {
    .features {
        padding: 30px 0;
    }
    .section-subtitle {
        margin-top: 15px;
    }
    
    .features-content {
        gap: 1rem;
    }
    
    .features-image {
        height: 200px;
    }
    
    .girl-image {
        max-width: 200px;
        /* max-height: 200px; */
    }
    
    .background-text {
        font-size: 2rem;
        letter-spacing: 1px;
        background-color: #ff4444;
        width: 100vw;
        color: rgb(255 255 255);
    }
    
    .features-header .section-title {
        font-size: 1.6rem;
    }
    
    .features-list {
        padding: 0 0.25rem;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem 0.4rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-text h4 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-text p {
        font-size: 0.75rem;
        line-height: 1.3;
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
}

/* Extra small mobile optimization */
@media (max-width: 320px) {
    .features-image {
        height: 200px;
    }
    
    .girl-image {
        width: 65%;
        max-width: 200px;
        max-height: 250px;
    }
    
    .background-text {
        font-size: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
}

/* Workout CTA Section */
.workout-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.workout-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.workout-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FF4444;
    text-transform: uppercase;
}

/* Machines Section */
.machines {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), 
                url('assets/smoke-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.machines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 68, 68, 0.1), rgba(255, 184, 0, 0.1));
    z-index: 1;
}

.machines .container {
    position: relative;
    z-index: 2;
}

.machines-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.machines-description {
    color: #ccc;
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.machines-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    width: 100%;
}

/* Mobile scroll snap enhancement for different screen sizes */
@media (max-width: 768px) {
    .carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        /* Enhanced momentum scrolling */
        scroll-padding: 0;
        scroll-snap-stop: normal;
    }
    
    .carousel-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Enhanced scroll momentum for iOS */
    .carousel-container {
        -webkit-scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
}

/* Additional mobile optimizations for smaller screens */
@media (max-width: 480px) {
    .carousel-container {
        /* Ensure single card view has proper snapping */
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        scroll-padding-right: 0;
    }
    
    .machine-card {
        /* Stronger snap alignment for single card view */
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

/* Tablet landscape optimization */
@media (min-width: 481px) and (max-width: 768px) {
    .carousel-container {
        /* Optimized for 2-card view */
        scroll-snap-type: x mandatory;
    }
    
    .machine-card {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.5rem;
    width: fit-content;
}

/* Mobile native scrolling enhancement */
@media (max-width: 768px) {
    .carousel-track {
        transition: none; /* Disable JS transitions on mobile */
        width: auto;
        min-width: 100%;
    }
    
    /* Hide navigation buttons on mobile for both machine and testimonial sections */
    .carousel-btn {
        display: none !important;
    }
}

.machine-card {
    min-width: calc((100vw - 200px) / 4 - 1.125rem);
    max-width: calc((100vw - 200px) / 4 - 1.125rem);
    width: calc((100vw - 200px) / 4 - 1.125rem);
    background: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    border: 1px solid #333;
    position: relative;
    opacity: 1;
    transform: scale(0.9);
    flex-shrink: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .machine-card {
        min-width: calc((100vw - 150px) / 3 - 1rem); /* 3 cards on medium screens */
        max-width: calc((100vw - 150px) / 3 - 1rem);
        width: calc((100vw - 150px) / 3 - 1rem);
    }
}

@media (max-width: 768px) {
    .machine-card {
        min-width: calc((100vw - 100px) / 2 - 0.75rem); /* 2 cards on small screens */
        max-width: calc((100vw - 100px) / 2 - 0.75rem);
        width: calc((100vw - 100px) / 2 - 0.75rem);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

@media (max-width: 480px) {
    .machine-card {
        min-width: calc(100vw - 40px); /* 1 card on very small screens with padding */
        max-width: calc(100vw - 40px);
        width: calc(100vw - 40px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    /* Set video width to 99vw for proper mobile display */
    .machine-video video {
        width: 99vw;
        max-width: 99vw;
    }
}

.machine-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: #FF4444;
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
}

.machine-card.clone {
    /* Ensure clones have the same styling as originals */
    opacity: 1;
    transform: scale(0.9);
}

.machine-card.clone.active {
    opacity: 1;
    transform: scale(1);
    border-color: #FF4444;
    box-shadow: 0 20px 40px rgba(255, 68, 68, 0.3);
}

.machine-video {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.machine-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(45deg, rgba(255, 68, 68, 0.8), rgba(255, 184, 0, 0.8)); */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.machine-card:hover .video-overlay {
    opacity: 1;
}

.machine-card:hover .machine-video video {
    transform: scale(1.05);
}

.play-btn, .sound-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-btn:hover, .sound-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.sound-btn.muted {
    background: rgba(255, 68, 68, 0.3);
    border-color: #FF4444;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF4444, #DC2626);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(255, 68, 68, 0.3);
    z-index: 3;
}

.carousel-btn:hover {
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(255, 68, 68, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #666;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FF4444;
    border-color: #FF4444;
    transform: scale(1.2);
}

.indicator:hover {
    border-color: #FF4444;
}

/* Statistics Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF4444 0%, #DC2626 50%, #B91C1C 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.stats-header .section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-item .stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Trainers Section */
.trainers {
    padding: 100px 0;
    background: #1a1a1a;
}

.trainers-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 600px;
}

.trainers-left {
    flex: 1;
    max-width: 50%;
}

.trainers-text {
    padding-right: 2rem;
}

.trainers-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.trainers-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trainers-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.carousel-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.trainer-slide {
    width: 33.333%;
    height: 100%;
    position: relative;
}

.trainer-slide.active {
    /* Active slide styling handled by transform */
}

.trainer-image-large {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trainer-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trainer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: #fff;
    text-align: center;
}

.trainer-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.trainer-overlay p {
    color: #FF4444;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF4444;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 184, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-image {
        width: 50%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .about-content {
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .trainers-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .trainers-left,
    .trainers-right {
        max-width: 100%;
    }
    
    .trainers-text {
        padding-right: 0;
        text-align: center;
    }
    
    .carousel-container {
        height: 500px;
    }
}

/* Hard Work Section */
.hard-work {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.hard-work h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hard-work h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FF4444;
    text-transform: uppercase;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(rgb(0 0 0 / 15%), rgb(0 0 0 / 47%)), url(assets/smoke-image-2.jpg);
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    position: relative;
}

.testimonials-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 600px;
}

.testimonials-left {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-text-testimonials {
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    color: rgb(255 184 0 / 33%);
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 0.9;
    z-index: 1;
    text-align: center;
    white-space: nowrap;
}

.girl-image-testimonials {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.testimonials-right {
    flex: 1;
    padding-left: 2rem;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    padding: 2rem 0;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-video {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 360px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.testimonial-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-video:hover .video-overlay {
    opacity: 1;
}

.testimonial-video .play-btn,
.testimonial-video .sound-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF4444, #DC2626);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(255, 68, 68, 0.3);
}

.testimonial-video .play-btn:hover,
.testimonial-video .sound-btn:hover {
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(255, 68, 68, 0.4);
}

.testimonial-info {
    text-align: center;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.testimonial-info span {
    color: #FF4444;
    font-weight: 500;
    font-size: 1rem;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #FF4444;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: #DC2626;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .testimonials-left {
        order: 2;
    }
    
    .testimonials-right {
        order: 1;
        padding-left: 0;
    }
    
    .testimonials-header {
        text-align: center;
    }
    
    .testimonial-video-content {
        text-align: center;
    }
    
    .testimonial-video {
        max-width: 200px;
        height: 300px;
    }
    
    .testimonial-video .play-btn,
    .testimonial-video .sound-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .background-text-testimonials {
        font-size: 3rem;
    }
    
    .testimonials-image {
        height: 550px;
    }
    
    .testimonials-slider {
        height: 350px;
    }
}

/* Pricing Section */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

/* .packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/smoke-overlays-21-AE77V6.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
} */

.packages .container {
    position: relative;
    z-index: 2;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Pricing Carousel Wrapper */
.packages-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.packages-carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.packages-carousel-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.packages-card {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(40, 40, 40, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 184, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    min-width: calc((100vw - 200px) / 3 - 1.33rem);
    flex-shrink: 0;
}

.packages-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 184, 0, 0.08) 0%, 
        rgba(255, 68, 68, 0.05) 50%, 
        rgba(255, 184, 0, 0.08) 100%);
    z-index: 1;
}

.packages-card > * {
    position: relative;
    z-index: 2;
}

.packages-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 184, 0, 0.5);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.2);
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.95) 0%, 
        rgba(60, 60, 60, 0.9) 50%, 
        rgba(40, 40, 40, 0.95) 100%);
}

.packages-card:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 184, 0, 0.12) 0%, 
        rgba(255, 68, 68, 0.08) 50%, 
        rgba(255, 184, 0, 0.12) 100%);
}

/* 
=== RED GRADIENT OPTIONS FOR PRICING CARDS ===

OPTION 1: Deep Crimson to Bright Scarlet (45-degree linear)
- Colors: #DC143C → #E91E63 → #FF2400 → #FF4444 → #DC143C
- Angle: 45deg for dynamic diagonal flow
- Contrast Ratio: 4.8:1 (meets WCAG AA standards)
- Best for: Modern, energetic feel

OPTION 2: Radial gradient with warm red tones
- Colors: #FF2400 → #DC143C → #B91C1C → #7F1D1D (center to edge)
- Type: Radial ellipse for center focus
- Contrast Ratio: 5.2:1 (exceeds WCAG AA standards)
- Best for: Dynamic, attention-grabbing effect

OPTION 3: Multi-stop burgundy to coral progression (CURRENT)
- Colors: #800020 → #A0002A → #DC143C → #FF2400 → #FF6B47 → #FF7F7F
- Angle: 135deg for elegant diagonal flow
- Contrast Ratio: 4.6:1 (meets WCAG AA standards)
- Best for: Sophisticated, premium feel

All options maintain:
- Brand consistency with red color family
- Proper contrast ratios (4.5:1+ for accessibility)
- Responsive design compatibility
- Smooth hover transitions
*/

/* Option 3: Multi-stop linear gradient with burgundy to coral progression */
.packages-card.popular {
    background: linear-gradient(135deg, 
        #800020 0%,     /* Burgundy */
        #A0002A 20%,    /* Deep burgundy */
        #DC143C 40%,    /* Crimson */
        #FF2400 60%,    /* Scarlet */
        #FF6B47 80%,    /* Coral red */
        #FF7F7F 100%);  /* Light coral */
    /* transform: scale(1.08); */
    border: 2px solid #DC143C;
    box-shadow: 0 20px 60px rgba(220, 20, 60, 0.4);
    padding-top: 2.4rem; /* room for badge inside card */
}

.packages-card.popular::before {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(255, 255, 255, 0.05) 30%, 
        rgba(0, 0, 0, 0.1) 70%, 
        rgba(255, 255, 255, 0.08) 100%);
}

.packages-card.popular:hover {
    transform: scale(1.08) translateY(-15px);
    box-shadow: 0 25px 80px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, 
        #A0002A 0%,     /* Deep burgundy */
        #DC143C 20%,    /* Crimson */
        #FF2400 40%,    /* Scarlet */
        #FF4444 60%,    /* Bright red */
        #FF6B47 80%,    /* Coral red */
        #FF8A80 100%);  /* Light coral */
}

.popular-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #FF4444;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #FF4444;
    z-index: 3;
}

.packages-header-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packages-card.popular .packages-header-card h4 {
    color: #fff;
}

.packages-header-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.packages-card.popular .packages-header-card p {
    color: rgba(255, 255, 255, 0.85);
}

.packages-price {
    margin-bottom: 2rem;
    padding: 0.8rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: #FF4444;
    display: block;
    line-height: 1;
}

.packages-card.popular .price {
    color: #fff;
}

.period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packages-card.popular .period {
    color: rgba(255, 255, 255, 0.85);
}

.packages-features h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packages-card.popular .packages-features h5 {
    color: #fff;
}

.packages-features ul {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.packages-features li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
    font-size: 0.9rem;
    position: relative;
}

.packages-card.popular .packages-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.packages-features li:last-child {
    border-bottom: none;
}

.packages-btn {
    background: linear-gradient(45deg, #FF4444, #DC2626);
    color: #fff;
    padding: 12px 34px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

.packages-card.popular .packages-btn {
    background: #000;
    color: #fff;
    border: 2px solid #FF4444;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.packages-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.packages-card.popular .packages-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: #FF4444;
    color: #fff;
}

/* Pricing Carousel Navigation */
.packages-carousel-wrapper .carousel-btn {
    background: rgba(255, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.packages-carousel-wrapper .carousel-btn:hover {
    background: #FF4444;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.packages-carousel-wrapper .carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Pricing Indicators */
.packages-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.packages-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.packages-dot.active {
    background: #FF4444;
    transform: scale(1.2);
}

.packages-dot:hover {
    background: rgba(255, 68, 68, 0.7);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 20px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* gap: 3rem; */
    margin-bottom: 2rem;
}

.footer-section .footer-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-section h3 {
    color: #FF4444;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF4444;
}

.footer-bottom {
    text-align: center;
    /* padding-top: 2rem; */
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 10px;
        width: 100%;
    }

    section {
        width: 100%;
        overflow-x: hidden;
    }

    .scroll-to-top {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        height: 100vh;
        padding: 80px 0 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: 85px;
        transform: none;
        width: 100%;
        height: auto;
        justify-content: center;
        order: -1;
    }

    .hero-image img {
        max-height: 40vh;
        width: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about, .features, .machines, .stats, .trainers, .packages, .contact {
        padding: 60px 0;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .section-subtitle {
        font-size: 1.9rem;
        /* margin-bottom: 3rem; */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        text-align: center;
        padding: 2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trainer-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .packages-carousel-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .packages-carousel-wrapper .carousel-btn {
        display: none;
    }

    .packages-carousel-container {
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-padding-left: calc((100vw - min(100vw - 40px, 350px)) / 2);
        scroll-padding-right: calc((100vw - min(100vw - 40px, 350px)) / 2);
    }

    .packages-carousel-slider {
        gap: 1rem;
        padding: 0 20px;
    }

    .packages-card {
        min-width: calc(100vw - 40px);
        scroll-snap-align: center;
        margin: 0 auto;
        max-width: 350px;
    }

    .packages-card.popular {
        transform: none;
        margin-top: 0;
    }

    .packages-indicators {
        margin-top: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Mobile 2x2 grid for contact info */
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: stretch;
        align-items: stretch;
    }

    .contact-item {
        height: 100%;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .testimonials-slider
    {
        height: 480px;
    }

    .hero {
        padding: 70px 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        background-color: #b71213;
        padding: 10px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-image img {
        max-height: 55vh;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about, .features, .machines, .stats, .trainers, .packages, .contact {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .feature-item {
        padding: 1.5rem 0.5rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-content {
        justify-items: center;
        text-align: center;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: stretch;
        align-items: stretch;
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        height: 100%;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Contact V2 Styles */
.contact-old {
    display: none !important;
}

.contact-v2 {
    padding: 80px 0;
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-v2-card {
    position: relative;
    background: rgba(20, 20, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-watermark {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    pointer-events: none;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #dc2626;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.contact-tag .accent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f54e4e;
}

.contact-tag .tag-text {
    font-size: 0.95rem;
}

.contact-v2-title {
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0.5rem 0 1.5rem;
    color: #fff;
}

.contact-v2-title .accent {
    color: #ff4444;
}

.contact-v2-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.2rem 0;
}

.contact-v2-item .icon {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.contact-v2-item .text p,
.contact-v2-item .text a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-decoration: none;
}

.contact-v2-item .text a:hover {
    color: #FFD84D;
}

.contact-v2-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
a
{
    text-decoration: none;
}
.social-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.25s ease;
    background: transparent;
}

.social-btn:hover {
    background: #dc2626;
    color: #e3dcdc;
    border-color: #ad9c9c;
    transform: translateY(-2px);
}

.contact-v2-map {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
    background: rgba(20, 20, 22, 0.6);
}

.contact-v2-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-v2 {
        padding: 50px 0;
    }
    .contact-v2-grid {
        grid-template-columns: 1fr;
    }
    .contact-watermark {
        font-size: clamp(2rem, 12vw, 4rem);
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: calc(-60px + env(safe-area-inset-right));
    bottom: calc(300px + env(safe-area-inset-bottom));
    transform: rotate(270deg);
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 60%, #128C7E 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}

.floating-btn i {
    font-size: 1.25rem;
}

.floating-btn .label {
    white-space: nowrap;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.floating-btn:active {
    transform: translateY(0);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #1ebe57 60%, #128C7E 100%);
}

@media (max-width: 768px) {
    .floating-actions {
        right: calc(-60px + env(safe-area-inset-right));
        bottom: calc(80px + env(safe-area-inset-bottom));
        transform: rotate(270deg);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/smoke-overlays-21-AE77V6.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 184, 0, 0.2);
    height: 400px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item.large img {
    min-height: 400px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(255, 184, 0, 0.3) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 184, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 184, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item.large img {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 10px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-content h4 {
        font-size: 1.2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
}

/* Gallery Cards Functionality */
.gallery-card {
    transition: all 0.5s ease;
}

.gallery-hidden {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.gallery-hidden.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    margin: initial;
    padding: initial;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* View More Button */
.gallery-view-more {
    text-align: center;
}

/* Gallery carousel layout */
.gallery-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gallery-carousel-slider {
    display: flex;
    gap: 24px;
    align-items: stretch;
    will-change: transform;
    transition: transform 0.6s ease;
}

.gallery-carousel-container .gallery-card {
    min-width: 300px;
    max-width: 380px;
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    /* Mobile: horizontal scroll-snap, one image per screen */
    .gallery-carousel-container {
        height: 60vh;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .gallery-carousel-slider {
        flex-direction: row;
        gap: 0; /* avoid peeking of next image */
    }
    .gallery-carousel-container .gallery-card {
        width: 100%;
        min-width: 100%;
        max-width: none;
        height: 60vh; /* match container */
        flex: 0 0 100%;
        scroll-snap-align: start;
        border-radius: 12px;
    }
    .gallery-carousel-container .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* fills width, keeps aspect ratio */
        object-position: center; /* keep subject centered */
        display: block; /* remove inline gap */
    }
    /* Prevent hover zoom on mobile to keep image crisp */
    .gallery-item:hover img { transform: none; }
}

.view-more-btn {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFB800 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

.view-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.view-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.view-more-btn:active {
    transform: translateY(0);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/smoke-image-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 184, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF4444, #DC2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #000;
}

.contact-details h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Arial', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF4444;
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(45deg, #FF4444, #DC2626);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
    background: linear-gradient(45deg, #DC2626, #FF4444);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 2rem;
        justify-items: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }
    
    .submit-btn {
         padding: 12px 25px;
         font-size: 0.9rem;
     }
 }

/* Form Loader Overlay */
.form-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-loader.show {
    display: flex;
    opacity: 1;
}

.loader-content {
    text-align: center;
    color: #fff;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 68, 68, 0.3);
    border-top: 4px solid #FF4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 184, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.success-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
}

.modal-header i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    display: block;
    animation: checkmark 0.6s ease-in-out;
}

.modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body {
    padding: 1.5rem 2rem;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-btn {
    background: linear-gradient(45deg, #FF4444, #DC2626);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 68, 0.4);
    background: linear-gradient(45deg, #DC2626, #FF4444);
}

.modal-btn:active {
    transform: translateY(0);
}

.modal-btn i {
    font-size: 0.9rem;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header i {
        font-size: 3rem;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .modal-btn {
         padding: 10px 25px;
         font-size: 0.9rem;
     }
 }

/* Error Modal */
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-modal.show {
    display: flex;
    opacity: 1;
}

.error-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 82, 82, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.error-modal.show .modal-content {
    transform: scale(1);
}

.error-modal .modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 82, 82, 0.2);
}

.error-modal .modal-header i {
    font-size: 4rem;
    color: #ff5252;
    margin-bottom: 1rem;
    display: block;
    animation: errorShake 0.6s ease-in-out;
}

.error-modal .modal-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}
.features
{
    content-visibility: visible !important;
}