/* CSS Variables */
:root {
    --primary: #e50914; 
    --gold: #FFD700;
    --silver: #C0C0C0;
    --vip: #00BFFF;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #ffffff;
    --font-en: 'Montserrat', sans-serif;
    --font-ar: 'Cairo', sans-serif;
    --active-theme: #FFD700;
}

/* Reset & Base Styles */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    max-width: 100vw; /* Prevent horizontal scroll */
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-en);
    position: relative;
    scroll-behavior: smooth;
}

/* Arabic Language Styles - FIXED: Center alignment for Arabic */
html[lang="ar"] body,
html[lang="ar"] .section-title,
html[lang="ar"] .feature-card h3,
html[lang="ar"] .cert-item,
html[lang="ar"] .step-card h3,
html[lang="ar"] .review-card p,
html[lang="ar"] .faq-question,
html[lang="ar"] .price-card h3,
html[lang="ar"] .payment-card h3,
html[lang="ar"] .input-group label,
html[lang="ar"] .coach-info {
    font-family: var(--font-ar) !important;
    text-align: center !important; /* Changed from right to center */
}

/* Container for all content stays LTR */
html[lang="ar"] .container,
html[lang="ar"] .stats-grid,
html[lang="ar"] .features-grid,
html[lang="ar"] .pricing-grid,
html[lang="ar"] .steps-grid,
html[lang="ar"] .reviews-grid,
html[lang="ar"] .payment-grid {
    direction: ltr !important;
}

/* Text content CENTER for Arabic */
html[lang="ar"] .feature-card,
html[lang="ar"] .stat-card,
html[lang="ar"] .price-card,
html[lang="ar"] .review-card,
html[lang="ar"] .payment-card {
    text-align: center !important; /* Changed from right to center */
}

/* Icon adjustments for Arabic */
html[lang="ar"] .cert-item i,
html[lang="ar"] .features li i {
    margin-right: 0 !important;
    margin-left: 10px !important;
}

/* Form adjustments */
html[lang="ar"] input,
html[lang="ar"] textarea {
    text-align: center !important; /* Changed from right to center */
}

/* Utility Classes */
.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.highlight { 
    color: var(--primary); 
}

.section-title { 
    text-align: center; 
    font-size: 2.5rem; 
    margin-bottom: 40px; 
    font-weight: 900; 
    color: #fff; 
}

/* Navigation */
.navbar {
    position: absolute; 
    top: 0; 
    width: 100%; 
    z-index: 100;
    padding: 15px 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-decoration: none; 
}

.logo img { 
    height: 60px; 
    margin-bottom: 5px; 
}

.logo-text { 
    color: #fff; 
    font-size: 0.8rem; 
    letter-spacing: 2px; 
    font-weight: 700; 
}

.header-social { 
    display: flex; 
    gap: 15px; 
}

.header-social a { 
    color: #fff; 
    font-size: 1.2rem; 
    transition: 0.3s; 
    text-decoration: none; 
}

.header-social a:hover { 
    color: var(--primary); 
}

.lang-switch { 
    display: flex; 
    gap: 10px; 
}

.lang-btn {
    background: rgba(0,0,0,0.5); 
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 5px; 
    cursor: pointer;
    display: flex; 
    align-items: center; 
    gap: 5px; 
    font-weight: bold;
}

.lang-btn.active { 
    border-color: var(--primary); 
    background: var(--primary); 
}

.lang-btn img { 
    width: 18px; 
}

/* Hero Section */
.hero-section { 
    position: relative; 
    height: 100vh; 
    width: 100%; 
    display: flex; 
    flex-direction: column; 
}

.hero-image-container {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-image-container .overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5);
}

.hero-bar {
    margin-top: auto; 
    min-height: 150px; 
    background: #000; 
    border-top: 4px solid var(--primary);
    position: relative; 
    display: flex; 
    align-items: center; 
    z-index: 2;
}

.bar-content { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    position: relative; 
}

.coach-img-wrapper { 
    position: absolute; 
    left: -50px; 
    bottom: 100%; 
    height: 250%; 
    z-index: 10; 
    pointer-events: none; 
}

.floating-coach { 
    height: 100%; 
    width: auto; 
    object-fit: contain; 
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.8)); 
}

.coach-info { 
    width: 100%; 
    text-align: right; 
    padding-right: 50px; 
}

.coach-info h1 { 
    font-size: 3rem; 
    font-weight: 900; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

.coach-info p { 
    color: #ccc; 
    font-size: 1.2rem; 
    margin-bottom: 20px; 
}

.cta-btn {
    background: var(--primary); 
    color: #fff; 
    padding: 12px 35px; 
    border: none; 
    font-weight: 800; 
    cursor: pointer; 
    border-radius: 50px;
    text-decoration: none; 
    display: inline-block; 
    transition: 0.3s;
}

.cta-btn:hover { 
    background: #b0060e; 
    transform: scale(1.05); 
}

/* Stats Section */
.stats-section { 
    padding: 40px 0; 
    background: linear-gradient(180deg, #000 0%, #151515 100%); 
    border-bottom: 1px solid #222; 
}

.stats-grid { 
    display: flex; 
    justify-content: center; 
    text-align: center; 
    flex-wrap: wrap; 
    gap: 30px; 
}

.stat-card {
    background: linear-gradient(145deg, #101010, #000); 
    padding: 30px; 
    border-radius: 10px; 
    width: 280px;
    border: 1px solid #222; 
    transition: 0.3s;
}

.stat-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--gold); 
}

.stat-num { 
    font-size: 3rem; 
    color: var(--gold); 
    font-weight: 900; 
    margin-bottom: 10px; 
}

.stat-label { 
    font-size: 1.2rem; 
    color: #fff; 
    font-weight: bold; 
}

/* Scroll Animation */
.scroll-card { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    border-color: var(--primary) !important; 
}

.scroll-icon { 
    width: 20px; 
    height: 35px; 
    border: 2px solid #fff; 
    border-radius: 25px; 
    position: relative; 
}

.wheel { 
    width: 4px; 
    height: 8px; 
    background: var(--primary); 
    border-radius: 2px; 
    position: absolute; 
    top: 5px; 
    left: 50%; 
    transform: translateX(-50%); 
    animation: scroll 1.5s infinite; 
}

@keyframes scroll { 
    0% { top: 5px; opacity: 1; } 
    100% { top: 20px; opacity: 0; } 
}

/* Features Section */
.features-section { 
    padding: 80px 0; 
    background: #1a1a1a; 
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}

.feature-card {
    background: #fff; 
    color: #000; 
    padding: 40px 20px; 
    border-radius: 20px;
    text-align: center; 
    transition: 0.3s; 
    position: relative; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-card:hover { 
    transform: translateY(-10px) scale(1.02); 
    box-shadow: 0 20px 40px rgba(229, 9, 20, 0.2); 
}

.feature-icon {
    font-size: 3rem; 
    color: var(--primary); 
    margin-bottom: 20px;
    background: #f0f0f0; 
    width: 80px; 
    height: 80px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-left: auto; 
    margin-right: auto;
}

.feature-card h3 { 
    font-size: 1.5rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
}

.feature-card p { 
    font-size: 0.95rem; 
    color: #555; 
    line-height: 1.6; 
}

/* About Section */
.about-section { 
    padding: 80px 0; 
    background: var(--dark-bg); 
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 50px; 
    align-items: center; 
}

.certs-list { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.cert-item { 
    background: #252525; 
    padding: 15px 20px; 
    border-radius: 8px; 
    border-left: 4px solid var(--primary); 
    color: #ddd; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    transition: 0.3s;
}

.cert-item:hover { 
    background: #333; 
    transform: translateX(10px); 
}

.cert-item i { 
    color: var(--gold); 
    font-size: 1.2rem; 
    width: 25px; 
    text-align: center; 
}

.about-image { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.spin-logo { 
    width: 100%; 
    max-width: 350px; 
    animation: floatLogo 3s ease-in-out infinite; 
}

@keyframes floatLogo { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-20px); } 
}

/* How It Works */
.how-it-works { 
    padding: 80px 0; 
    background: #151515; 
    text-align: center; 
}

.steps-grid { 
    display: grid; 
    grid-template-columns: 1fr 350px 1fr; 
    grid-template-rows: auto auto; 
    gap: 30px; 
    align-items: center; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.steps-image { 
    grid-column: 2; 
    grid-row: 1 / 3; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.steps-image img { 
    height: 550px; 
    object-fit: contain; 
    filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.3)); 
}

.step-1 { 
    grid-column: 1; 
    grid-row: 1; 
    text-align: right; 
}

.step-3 { 
    grid-column: 1; 
    grid-row: 2; 
    text-align: right; 
}

.step-2 { 
    grid-column: 3; 
    grid-row: 1; 
    text-align: left; 
}

.step-4 { 
    grid-column: 3; 
    grid-row: 2; 
    text-align: left; 
}

.step-card { 
    background: linear-gradient(145deg, #1f1f1f, #121212); 
    padding: 25px; 
    border-radius: 15px; 
    border: 1px solid #333; 
}

.step-num { 
    background: var(--primary); 
    width: 35px; 
    height: 35px; 
    margin-bottom: 10px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold; 
    margin-left: auto; 
}

.step-2 .step-num, 
.step-4 .step-num { 
    margin-left: 0; 
    margin-right: auto; 
}

/* Transformations Slider - FIXED */
.transformations { 
    padding: 80px 0; 
    background: var(--dark-bg); 
    text-align: center; 
}

.slider-container { 
    position: relative; 
    max-width: 800px; 
    margin: 0 auto; 
    overflow: hidden; 
    border-radius: 15px;
    min-height: 500px; /* Prevent layout shift */
}

.slider-wrapper { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    width: 100%;
    height: 100%;
}

.slide { 
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Black background for consistency */
}

.image-container {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

.transformation-img { 
    width: auto !important;
    max-width: 90% !important;
    height: auto !important;
    max-height: 480px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 10px !important;
}

.slider-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0,0,0,0.7); 
    color: #fff; 
    border: none; 
    font-size: 2rem; 
    padding: 15px; 
    cursor: pointer; 
    z-index: 10; 
    border-radius: 5px;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
}

.prev { 
    left: 10px; 
}

.next { 
    right: 10px; 
}

/* Reviews */
.reviews-section { 
    padding: 80px 0; 
    background: #1a1a1a; 
    text-align: center; 
}

.reviews-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
    margin-top: 40px; 
}

.review-card { 
    background: #252525; 
    padding: 25px; 
    border-radius: 10px; 
    width: 300px; 
    text-align: left; 
    border-left: 4px solid var(--primary); 
}

.review-card .stars { 
    color: var(--gold); 
    margin-bottom: 15px; 
}

.review-card h4 { 
    color: #fff; 
    font-weight: bold; 
    text-align: right; 
}

/* BMI Calculator */
.bmi-section { 
    padding: 80px 0; 
    background: #000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 600px; 
    background-image: url('assets/coach2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bmi-container-center { 
    display: flex; 
    justify-content: center; 
    width: 100%; 
}

.bmi-card {
    background: rgba(17, 17, 17, 0.9);
    width: 100%; 
    max-width: 900px; 
    padding: 50px;
    border-radius: 20px; 
    border: 2px solid var(--primary); 
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.2);
    text-align: center;
}

.bmi-layout { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 40px; 
    justify-content: center; 
    align-items: center; 
    margin-top: 30px; 
}

.bmi-inputs-area { 
    flex: 1; 
    min-width: 300px; 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.bmi-inputs-area label { 
    text-align: left; 
    display: block; 
    margin-bottom: 5px; 
    color: var(--primary); 
    font-weight: bold; 
}

.bmi-inputs-area input { 
    width: 100%; 
    padding: 15px; 
    background: #222; 
    border: 1px solid #444; 
    color: #fff; 
    border-radius: 5px; 
    font-size: 1.2rem; 
}

.calc-btn-pro { 
    background: var(--primary); 
    color: #fff; 
    padding: 15px; 
    border: none; 
    font-weight: 900; 
    font-size: 1.2rem; 
    cursor: pointer; 
    border-radius: 5px; 
    transition: 0.3s; 
}

.calc-btn-pro:hover { 
    background: #fff; 
    color: var(--primary); 
}

.bmi-result-area { 
    flex: 1; 
    min-width: 300px; 
    min-height: 200px; 
    background: #1a1a1a; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px dashed #444; 
    flex-direction: column; 
    padding: 20px;
}

/* Pricing Section */
.pricing-section { 
    padding: 100px 0; 
    background: #000; 
}

.currency-tabs { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 30px; 
}

.curr-btn { 
    background: #333; 
    color: #fff; 
    border: none; 
    padding: 10px 20px; 
    cursor: pointer; 
    border-radius: 5px; 
    transition: 0.3s; 
    font-family: var(--font-en);
}

.curr-btn.active { 
    background: var(--primary); 
}

html[lang="ar"] .curr-btn {
    font-family: var(--font-ar) !important;
}

.duration-container { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-bottom: 50px; 
}

.duration-btn { 
    background: transparent; 
    border: 2px solid var(--active-theme); 
    color: var(--active-theme); 
    padding: 10px 25px; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: bold; 
    transition: 0.3s; 
    font-family: var(--font-en);
}

.duration-btn:hover, 
.duration-btn.active { 
    background: var(--active-theme); 
    color: #000; 
    box-shadow: 0 0 15px var(--active-theme); 
}

html[lang="ar"] .duration-btn {
    font-family: var(--font-ar) !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: #151515; 
    padding: 40px 20px; 
    border-radius: 15px; 
    text-align: center; 
    position: relative; 
    transition: 0.4s ease; 
    display: flex; 
    flex-direction: column; 
    cursor: pointer; 
    border: 1px solid #333;
}

.price-card:hover { 
    transform: translateY(-15px); 
}

/* Silver Card */
.silver-3d { 
    border: 2px solid #C0C0C0; 
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.1); 
}

.silver-3d i { 
    color: #C0C0C0; 
    font-size: 2rem; 
    margin-bottom: 10px; 
}

.silver-3d .select-btn { 
    background: linear-gradient(45deg, var(--primary), #ff4757) !important;
}

/* Gold Card */
.gold-3d { 
    border: 2px solid #FFD700; 
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2); 
    transform: scale(1.05); 
    z-index: 2; 
}

.gold-3d:hover { 
    transform: scale(1.08) translateY(-10px); 
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5); 
}

.gold-3d h3 { 
    background: linear-gradient(to bottom, #FFD700, #FDB931); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 900; 
}

.gold-3d i { 
    color: #FFD700; 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
    filter: drop-shadow(0 0 5px #FFD700); 
}

.badge { 
    background: linear-gradient(45deg, #FFD700, #FDB931); 
    color: #000; 
    padding: 8px 20px; 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    border-radius: 20px; 
    font-weight: bold; 
    box-shadow: 0 0 15px #FFD700; 
}

/* Diamond VIP Card */
.diamond-3d { 
    border: 2px solid #00BFFF; 
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.2); 
}

.diamond-3d:hover { 
    box-shadow: 0 0 40px rgba(0, 191, 255, 0.6); 
    border-color: #fff; 
}

.diamond-3d h3 { 
    background: linear-gradient(to bottom, #00BFFF, #fff); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-weight: 900; 
}

.diamond-3d i { 
    color: #00BFFF; 
    font-size: 2rem; 
    margin-bottom: 10px; 
    filter: drop-shadow(0 0 8px #00BFFF); 
}

/* Enhanced Subscribe Buttons */
.select-btn {
    background: linear-gradient(45deg, var(--primary), #ff4757) !important;
    color: white !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 25px !important;
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.select-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6) !important;
    background: linear-gradient(45deg, #ff4757, var(--primary)) !important;
}

.select-btn::after {
    content: '→' !important;
    font-size: 1.2rem !important;
    transition: transform 0.3s ease !important;
}

.select-btn:hover::after {
    transform: translateX(5px) !important;
}

/* Gold button special */
.gold-3d .select-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

.gold-3d .select-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6) !important;
}

/* Diamond button special */
.diamond-3d .select-btn {
    background: linear-gradient(45deg, #00BFFF, #1e90ff) !important;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4) !important;
}

.diamond-3d .select-btn:hover {
    background: linear-gradient(45deg, #1e90ff, #00BFFF) !important;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.6) !important;
}

.price-tag { 
    font-size: 2.5rem; 
    margin: 20px 0; 
    font-weight: 700; 
    color: #fff; 
}

.features { 
    list-style: none; 
    text-align: left; 
    margin: 20px 0; 
    flex-grow: 1; 
    padding: 0 10px; 
    color: #ccc; 
}

.features li { 
    margin-bottom: 15px; 
    font-size: 0.9rem; 
    line-height: 1.4;
}

/* Payment Section - FIXED SPACING */
.payment-section { 
    padding: 80px 0; 
    background: #1a1a1a; 
    text-align: center; 
}

.payment-grid { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    flex-wrap: wrap; 
    margin-top: 40px; 
}

.payment-card {
    background: #252525; 
    padding: 40px 30px; /* Increased padding */
    border-radius: 15px; 
    width: 320px; /* Slightly wider */
    text-align: center; 
    transition: 0.3s; 
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Added gap between elements */
}

.payment-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--primary); 
}

.payment-card h3 { 
    color: #fff; 
    margin-bottom: 10px; 
    font-size: 1.5rem; 
    line-height: 1.3;
}

.payment-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 40px;
}

.payment-icon { 
    width: 100px; 
    height: 100px; 
    margin: 0 auto 20px; /* More margin */
}

.payment-icon img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
}

.payment-details { 
    font-size: 0.9rem; 
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Added gap */
    margin-top: 10px;
}

.payment-number {
    font-size: 0.85rem; /* Smaller font size */
    font-weight: bold;
    color: #fff;
    margin: 10px 0;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    word-break: keep-all; /* Prevent breaking into multiple lines */
    white-space: nowrap; /* Keep on one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-details .copy-btn {
    background: var(--primary); 
    color: #fff; 
    border: none; 
    padding: 12px 20px; /* More padding */
    border-radius: 5px; 
    margin-top: 10px; 
    cursor: pointer; 
    transition: 0.3s;
    font-size: 0.9rem; 
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 100%;
}

.payment-details .copy-btn:hover { 
    background: #fff; 
    color: var(--primary); 
}

/* InstaPay button specific - CHANGED TO RED */
.instapay-btn {
    background: var(--primary) !important; /* Changed from #25d366 to red */
}

.instapay-btn:hover {
    background: #b0060e !important; /* Darker red on hover */
}

/* Join Section */
.join-section { 
    padding: 80px 0; 
    background: #1a1a1a; 
    text-align: center; 
    scroll-margin-top: 100px; 
}

.join-banner img { 
    width: 100%; 
    max-width: 800px; 
    border-radius: 10px; 
    margin-bottom: 30px; 
}

.form-wrapper { 
    max-width: 600px; 
    margin: 0 auto; 
    background: #252525; 
    padding: 40px; 
    border-radius: 15px; 
    border: 1px solid #333; 
}

.input-group input { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px; 
    background: #333; 
    border: 1px solid #444; 
    color: #fff; 
    border-radius: 5px; 
    font-size: 1rem;
}

.submit-btn-full { 
    width: 100%; 
    padding: 15px; 
    background: var(--primary); 
    color: #fff; 
    border: none; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 5px; 
    font-size: 1.1rem;
    margin-top: 10px;
}

/* FAQ Section */
.faq-section { 
    padding: 80px 0; 
}

.accordion { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item { 
    border-bottom: 1px solid #333; 
    margin-bottom: 10px; 
}

.faq-question { 
    width: 100%; 
    text-align: left; 
    background: none; 
    border: none; 
    color: #fff; 
    padding: 20px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 1.1rem; 
    font-weight: bold;
}

.faq-question i { 
    transition: transform 0.3s ease; 
}

.faq-question.active i { 
    transform: rotate(45deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.4s ease; 
    padding: 0 20px; 
    color: #aaa; 
    background: rgba(255,255,255,0.05);
}

.faq-answer.active { 
    max-height: 1000px; 
    padding: 15px 20px; 
}

.faq-answer p { 
    margin: 0; 
    line-height: 1.6; 
}

/* Footer */
.main-footer { 
    background: #111; 
    padding: 60px 0; 
    border-top: 1px solid #222; 
    margin-top: 50px; 
}

.footer-grid { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    text-align: center; 
    gap: 30px; 
}

.footer-brand { 
    font-size: 2rem; 
    font-weight: 900; 
    letter-spacing: 3px; 
    color: #fff; 
}

.footer-brand span { 
    color: var(--primary); 
}

.footer-social { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    margin-top: 15px; 
}

.footer-social a { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    border: 1px solid #444; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    text-decoration: none; 
    transition: 0.3s; 
}

.footer-social a:hover { 
    background: var(--primary); 
    border-color: var(--primary); 
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    background-color: #25d366; 
    color: #fff;
    width: 60px; 
    height: 60px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 35px; 
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
    z-index: 1000; 
    transition: 0.3s; 
    border: none;
    text-decoration: none;
}

.whatsapp-float:hover { 
    transform: scale(1.1); 
    background-color: #128c7e; 
}

/* Accessibility Improvements */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    /* General */
    .container { width: 95%; }
    .section-title { font-size: 1.8rem; margin-bottom: 30px; }
    
    /* Navbar */
    .nav-container { padding: 0 10px; flex-direction: row; flex-wrap: wrap; }
    .logo img { height: 40px; }
    .lang-switch { transform: scale(0.8); position: absolute; top: 10px; right: 10px; }
    
    /* Social Icons */
    .header-social { 
        position: static; 
        order: 3; 
        width: 100%; 
        justify-content: center; 
        margin-top: 10px; 
        background: transparent; 
        padding: 0; 
    }
    
    /* Hero Section */
    .hero-section { justify-content: flex-end; padding-top: 60px; overflow: hidden; }
    .hero-bar { background: linear-gradient(to top, #000 90%, transparent); padding: 10px 0; min-height: auto; }
    .bar-content { flex-direction: row; align-items: flex-end; padding: 0 10px; }
    .coach-img-wrapper { position: relative; left: auto; bottom: 0; width: 40%; height: 200px; }
    .floating-coach { width: auto; height: 100%; max-height: 300px; }
    .coach-info { width: 55%; padding-right: 15px; }
    .coach-info h1 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 5px; } 
    .coach-info p { font-size: 0.9rem; margin-bottom: 15px; }
    .cta-btn { padding: 10px 25px; font-size: 0.9rem; width: auto; }
    
    /* Stats */
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 10px; width: 100%; }
    .stat-card { width: 100%; padding: 10px; min-height: 80px; }
    .stat-num { font-size: 1.5rem; margin-bottom: 5px; }
    .stat-label { font-size: 0.7rem; }
    
    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 10px; width: 100%; }
    .feature-card { padding: 15px 5px; min-height: 160px; }
    .feature-icon { width: 40px; height: 40px; font-size: 1.2rem; margin-bottom: 10px; }
    .feature-card h3 { font-size: 0.8rem; margin-bottom: 5px; }
    .feature-card p { font-size: 0.6rem; }
    
    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image { order: -1; }
    .spin-logo { max-width: 200px; }
    
    /* How It Works */
    .how-it-works { padding: 40px 0; }
    .steps-grid { display: flex; flex-direction: column; gap: 10px; padding: 0 10px; }
    .steps-image { order: 3; display: flex !important; justify-content: center; align-items: center; width: 100%; height: auto; opacity: 1; position: relative; transform: none; margin: 20px 0; }
    .steps-image img { height: 250px; width: auto; object-fit: contain; filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.3)); }
    .step-card { text-align: center !important; padding: 15px 5px; background: rgba(20, 20, 20, 0.85); width: 100%; }
    .step-1 { order: 1; }
    .step-2 { order: 2; }
    .step-3 { order: 4; }
    .step-4 { order: 5; }
    .step-num { margin: 0 auto 10px !important; width: 25px; height: 25px; font-size: 0.8rem; }
    .step-card h3 { font-size: 0.8rem; margin-bottom: 5px; }
    .step-card p { font-size: 0.6rem; }
    
    /* Slider - Fixed for mobile */
    .slider-container { min-height: 300px; }
    .image-container { height: 300px !important; }
    .transformation-img { max-height: 280px !important; }
    
    /* Pricing */
    .pricing-grid { padding: 0 10px; width: 100%; grid-template-columns: 1fr; }
    .price-card, .gold-3d { transform: none !important; }
    .gold-3d:hover { transform: none !important; }
    
    /* Payment - Fixed spacing for mobile */
    .payment-grid { flex-direction: column; align-items: center; gap: 20px; }
    .payment-card { width: 100%; max-width: 350px; padding: 25px 20px; }
    .payment-icon { width: 70px; height: 70px; margin-bottom: 15px; }
    .payment-card h3 { font-size: 1.3rem; }
    .payment-card p { font-size: 0.9rem; }
    .payment-number { font-size: 0.8rem; white-space: normal; word-break: break-word; }
    
    /* Footer */
    .main-footer { margin-top: 30px; }
    .footer-grid { flex-direction: column; gap: 20px; width: 100%; }
    .footer-left, .footer-center, .footer-right { width: 100%; }
    .footer-left { order: 2; }
    .footer-center { order: 1; }
    .footer-right { order: 3; }
    .footer-social { justify-content: center; }
    
    /* WhatsApp Button */
    .whatsapp-float { width: 50px; height: 50px; font-size: 28px; bottom: 20px; right: 20px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .section-title { font-size: 1.5rem; }
    .coach-info h1 { font-size: 1.2rem; }
    .coach-info p { font-size: 0.8rem; }
    .cta-btn { padding: 8px 15px; font-size: 0.8rem; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .bmi-layout { flex-direction: column; }
    .payment-card { width: 100%; padding: 20px 15px; }
    .image-container { height: 250px !important; }
    .transformation-img { max-height: 230px !important; }
}