/* common.css
   Version: 1.0.6
   - FIXED: Horizontal scroll ONLY on mobile (Concern 1)
   - FIXED: Mobile page overflow (Concern 3)
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* <-- FIX for Concern 3 */
    background: #fff;
}

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

/* --- Header Styles --- */
.header {
    background: #ffffff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid #f0f0f0;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.logo-icon {
    width: 50px;
    height: 50px;
    background: #fbc108;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 20px;
}
.logo-text-section {
    display: flex;
    flex-direction: column;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}
.logo-subtext {
    font-size: 11px;
    color: #666;
    letter-spacing: 2px;
    margin-top: -3px;
}
.header-nav {
    display: flex;
    gap: 25px;
}
.header-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 10px 0;
    border-bottom: 3px solid transparent;
}
.header-nav a:hover,
.header-nav a.active {
    color: #fbc108;
    border-bottom: 3px solid #fbc108;
}
.header-cta {
    background: #fbc108;
    color: #000;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.header-cta:hover {
    background: #e6b007;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 193, 8, 0.3);
}

/* --- Sticky CTA Button --- */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sticky-btn {
    padding: 14px 24px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    text-decoration: none;
}
.sticky-form-btn {
    background: #fbc108;
    color: #000;
}
.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 20px 80px 20px;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: stretch; 
}
.hero-text {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}
.hero-text h1 .highlight {
    color: #fbc108;
}
.hero-text h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #555;
}
.hero-text p {
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: #666;
}
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    min-width: 120px;
}
.trust-number {
    font-size: 32px;
    font-weight: 700;
    color: #fbc108;
    line-height: 1;
}
.trust-label {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* --- Hero Form --- */
.hero-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}
.form-header {
    text-align: center;
    margin-bottom: 25px;
}
.form-header h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}
.form-header p {
    font-size: 14px;
    color: #666;
}
.form-header .offer-badge {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid #fbc108;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbc108;
    box-shadow: 0 0 0 3px rgba(251, 193, 8, 0.1);
}
.submit-btn {
    width: 100%;
    background: #fbc108;
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.submit-btn:hover {
    background: #e6b007;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(251, 193, 8, 0.3);
}
.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #999;
}
.form-footer i {
    color: #25D366;
    margin-right: 5px;
}
.iti { width: 100%; }

/* --- About Expert Section --- */
.about-expert {
    padding: 80px 20px;
    background: #ffffff;
}
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}
.expert-image-container {
    position: relative;
}
.expert-image {
    width: 100%;
    height: 500px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(251, 193, 8, 0.2);
    position: relative;
    overflow: hidden;
}
.expert-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fbc108;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    white-space: nowrap;
}
.expert-info h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}
.expert-title {
    font-size: 20px;
    color: #fbc108;
    margin-bottom: 25px;
    font-weight: 600;
}
.expert-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}
.credentials-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.credentials-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.credentials-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    background: #fbc108;
    border-radius: 50%;
}
.credentials-list li:after {
    content: '✓';
    position: absolute;
    left: 6px;
    top: 13px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.expertise-tag {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

/* --- Section Styles for Grids --- */
/* Sections containing grids that scroll on mobile */
.problem-section,
.services-section,
.transformation-section,
.testimonials-section,
.how-it-works-section,
.trust-badges-section {
    padding: 80px 0;
    overflow: hidden; /* Fixes mobile overflow */
}

/* Alternating background colors */
.problem-section,
.testimonials-section,
.bmi-calculator-section,
.faq-section {
    background: #f8f9fa;
}
.services-section,
.transformation-section,
.how-it-works-section,
.trust-badges-section,
.whatsapp-proof-section,
.about-expert {
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
    padding: 0 20px;
}
.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* --- DESKTOP Grid Styles (Fix for Concern 1) --- */
/* These are the base styles, active on desktop */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding: 0 20px; /* Desktop padding */
    max-width: 1200px; /* Container width */
    margin-left: auto;
    margin-right: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.transformation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Card Styles (Unchanged) --- */
.problem-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border-left: 4px solid #fbc108;
}
.problem-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.problem-icon { font-size: 42px; color: #fbc108; margin-bottom: 18px; }
.problem-card h3 { font-size: 20px; margin-bottom: 12px; color: #1a1a1a; font-weight: 600; }
.problem-card p { color: #666; line-height: 1.7; font-size: 15px; }

.service-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}
.service-card:hover { background: #fff; border-color: #fbc108; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.service-icon { font-size: 48px; color: #fbc108; margin-bottom: 20px; }
.service-card h3 { font-size: 22px; margin-bottom: 15px; color: #1a1a1a; font-weight: 600; }
.service-card ul { list-style: none; padding: 0; }
.service-card li { padding: 10px 0; padding-left: 28px; position: relative; color: #555; font-size: 15px; }
.service-card li:before { content: '✓'; position: absolute; left: 0; color: #fbc108; font-weight: bold; font-size: 16px; }

.transformation-card { background: #f8f9fa; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s; }
.transformation-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.before-after-container { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.image-placeholder { width: 100%; height: 250px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; background-color: #ddd; }
.image-placeholder span { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.6); color: white; padding: 3px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.transformation-info { padding: 25px; }
.transformation-info h4 { font-size: 20px; color: #1a1a1a; margin-bottom: 10px; font-weight: 600; }
.transformation-info .result { color: #333; font-weight: 600; margin-bottom: 8px; font-size: 16px; }
.transformation-info .testimonial { color: #666; font-size: 14px; font-style: italic; line-height: 1.6; }

.cta-center { text-align: center; margin-top: 50px; padding: 0 20px; }
.cta-button { background: #fbc108; color: #000; padding: 16px 45px; border: none; border-radius: 6px; font-size: 18px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: inline-block; text-decoration: none; }
.cta-button:hover { background: #e6b007; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(251, 193, 8, 0.4); }

.video-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s; aspect-ratio: 9 / 16; position: relative; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.video-card .testimonial-video { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; top: 0; left: 0; z-index: 1; }
.video-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity 0.3s ease; z-index: 2; background-color: #ddd; }
.video-placeholder::after { content: '\f144'; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 64px; color: white; text-shadow: 0 0 15px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.video-card:hover .video-placeholder::after { transform: scale(1.1); }
.video-card.video-loaded .video-placeholder { opacity: 0; pointer-events: none; }
.video-card .unmute-button { position: absolute; top: 15px; right: 15px; z-index: 4; background: rgba(0, 0, 0, 0.5); color: white; border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 14px; cursor: pointer; display: none; align-items: center; justify-content: center; }
.video-card.video-loaded .unmute-button { display: flex; }
.video-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); color: white; z-index: 3; pointer-events: none; }
.video-info h4 { font-size: 18px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.video-info p { color: #eee; font-size: 14px; margin-bottom: 10px; }
.rating { color: #fbc108; }
.rating i { font-size: 14px; margin-right: 2px; }

.step-card { text-align: center; padding: 40px 25px; background: #f8f9fa; border-radius: 12px; position: relative; transition: all 0.3s; }
.step-card:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: #fbc108; color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; box-shadow: 0 4px 15px rgba(251, 193, 8, 0.3); }
.step-icon { font-size: 48px; color: #fbc108; margin: 30px 0 20px 0; }
.step-card h3 { font-size: 20px; color: #1a1a1a; margin-bottom: 12px; font-weight: 600; }
.step-card p { color: #666; font-size: 15px; line-height: 1.6; }

.trust-badge-item { text-align: center; padding: 30px 20px; }
.trust-badge-item i { font-size: 48px; color: #fbc108; margin-bottom: 15px; }
.trust-badge-item h4 { font-size: 18px; color: #1a1a1a; margin-bottom: 8px; font-weight: 600; }
.trust-badge-item p { font-size: 14px; color: #666; }

/* --- Auto-scroll Testimonial Section --- */
.whatsapp-proof-section {
    padding: 80px 0;
    overflow: hidden; /* Fixes mobile overflow */
}
.testimonial-scroller {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    max-width: 100%; /* Fixes mobile overflow */
}
.whatsapp-grid { display: flex; width: fit-content; gap: 25px; animation: scroll 40s linear infinite; }
.testimonial-scroller:hover .whatsapp-grid { animation-play-state: paused; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.whatsapp-card { background: #f8f9fa; border-radius: 12px; padding: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); display: flex; flex-direction: column; width: 300px; flex-shrink: 0; }
.whatsapp-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: #1a1a1a; font-weight: 600; }
.whatsapp-header i { font-size: 20px; color: #fbc108; }
.message-bubble { background: #fff; padding: 15px; border-radius: 8px; position: relative; box-shadow: 0 2px 5px rgba(0,0,0,0.05); flex-grow: 1; }
.message-bubble p { color: #333; font-size: 14px; line-height: 1.6; margin-bottom: 0; }

/* --- BMI Calculator Section --- */
.bmi-calculator-section {
    padding: 80px 20px;
}
.bmi-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; margin-top: 50px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.bmi-calculator { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.calculator-inputs { margin-bottom: 30px; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.input-group-bmi label { display: block; margin-bottom: 8px; color: #333; font-weight: 600; font-size: 15px; }
.input-group-bmi input { width: 100%; padding: 12px 15px; border: 2px solid #ddd; border-radius: 8px; font-size: 16px; transition: all 0.3s; }
.input-group-bmi input:focus { outline: none; border-color: #fbc108; }
.calculate-btn { width: 100%; background: #fbc108; color: #000; padding: 15px; border: none; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.calculate-btn:hover { background: #e6b007; transform: translateY(-2px); }
.bmi-result { text-align: center; padding: 30px; background: #f8f9fa; border-radius: 12px; }
.bmi-value h3 { font-size: 18px; color: #666; margin-bottom: 15px; }
.bmi-number { font-size: 64px; font-weight: 700; color: #fbc108; margin-bottom: 20px; }
.bmi-category { font-size: 24px; font-weight: 600; margin-bottom: 15px; padding: 10px 20px; border-radius: 25px; display: inline-block; }
.bmi-message { color: #666; margin-bottom: 25px; line-height: 1.6; }
.bmi-chart { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.bmi-chart h3 { font-size: 20px; color: #1a1a1a; margin-bottom: 25px; font-weight: 600; }
.bmi-ranges { display: flex; flex-direction: column; gap: 15px; }
.bmi-range { padding: 15px 20px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.bmi-range.underweight { background: #e3f2fd; color: #1976d2; }
.bmi-range.normal { background: #e8f5e9; color: #388e3c; }
.bmi-range.overweight { background: #fff3e0; color: #f57c00; }
.bmi-range.obese { background: #ffebee; color: #d32f2f; }

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 20px;
}
.faq-container { max-width: 900px; margin: 50px auto 0; }
.faq-item { background: #fff; margin-bottom: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-question { padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: all 0.3s; }
.faq-question:hover { background: #f8f9fa; }
.faq-question h4 { font-size: 17px; color: #1a1a1a; font-weight: 600; margin: 0; }
.faq-question i { color: #fbc108; transition: transform 0.3s; font-size: 14px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 25px 20px 25px; color: #666; line-height: 1.8; font-size: 15px; }

/* --- Final CTA Section --- */
.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}
.final-cta-content { text-align: center; max-width: 800px; margin: 0 auto; }
.final-cta-content h2 { font-size: 38px; margin-bottom: 20px; font-weight: 700; }
.final-cta-content > p { font-size: 18px; color: #ddd; margin-bottom: 35px; }
.cta-benefits { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 16px; }
.benefit-item i { color: #25D366; font-size: 20px; }
.cta-button-large { background: #fbc108; color: #000; padding: 20px 50px; border: none; border-radius: 8px; font-size: 20px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: inline-block; }
.cta-button-large:hover { background: #e6b007; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(251, 193, 8, 0.5); }
.cta-note { margin-top: 20px; font-size: 14px; color: #fbc108; font-weight: 600; }

/* --- Footer Styles --- */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #fff;
    padding: 60px 20px 20px 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}
.footer-column h3 { font-size: 18px; color: #fbc108; margin-bottom: 20px; font-weight: 600; }
.footer-logo-section { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-icon { width: 45px; height: 45px; background: #fbc108; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #000; font-size: 16px; }
.footer-brand { font-size: 20px; font-weight: bold; color: #fff; letter-spacing: 1px; }
.footer-tagline { font-size: 10px; color: #999; letter-spacing: 2px; margin-top: -3px; }
.footer-description { color: #ccc; line-height: 1.7; font-size: 14px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; background: rgba(251, 193, 8, 0.1); border: 1px solid rgba(251, 193, 8, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fbc108; transition: all 0.3s; text-decoration: none; }
.footer-social a:hover { background: #fbc108; color: #000; transform: translateY(-3px); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ccc; text-decoration: none; font-size: 14px; transition: all 0.3s; }
.footer-links a:hover { color: #fbc108; padding-left: 5px; }
.footer-contact { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item i { font-size: 18px; color: #fbc108; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 3px; }
.contact-item strong { color: #fff; font-size: 13px; font-weight: 600; }
.contact-item a, .contact-item span { color: #ccc; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.contact-item a:hover { color: #fbc108; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; }
.footer-bottom-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { color: #999; font-size: 14px; margin: 0; }
.footer-legal { display: flex; gap: 15px; align-items: center; }
.footer-legal a { color: #ccc; text-decoration: none; font-size: 13px; transition: color 0.3s; cursor: pointer; }
.footer-legal a:hover { color: #fbc108; }
.footer-legal span { color: #666; }

/* --- Legal Modal Styles --- */
.modal { position: fixed; z-index: 1001; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center; }
.modal.active { display: flex; opacity: 1; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content { background-color: #fefefe; margin: auto; padding: 30px 40px; border: 1px solid #888; width: 90%; max-width: 800px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.2); position: relative; animation: modalopen 0.4s ease; }
@keyframes modalopen { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.modal .close { color: #aaa; position: absolute; top: 15px; right: 25px; font-size: 28px; font-weight: bold; cursor: pointer; transition: color 0.3s; }
.modal .close:hover, .modal .close:focus { color: #000; text-decoration: none; }
.legal-modal-content { max-height: 80vh; overflow-y: auto; }
#legalContent { padding: 20px 0; }
#legalContent h2 { color: #1a1a1a; font-size: 28px; margin-bottom: 20px; }
#legalContent h3 { color: #333; font-size: 20px; margin-top: 25px; margin-bottom: 12px; }
#legalContent p { color: #666; line-height: 1.8; margin-bottom: 15px; font-size: 15px; }
#legalContent ul { color: #666; line-height: 1.8; margin-bottom: 15px; padding-left: 25px; }

/* --- Mobile Header & Nav Styles --- */
.mobile-controls { display: none; align-items: center; gap: 15px; }
.hamburger-menu { background: none; border: none; font-size: 24px; color: #333; cursor: pointer; padding: 5px; }
.mobile-cta { padding: 8px 16px; font-size: 14px; font-weight: 600; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; position: fixed; top: 79px; left: 0; width: 100%; height: calc(100vh - 79px); background: white; z-index: 999; opacity: 0; pointer-events: none; transform: translateY(-100%); transition: opacity 0.3s ease, transform 0.3s ease; }
.mobile-nav.is-nav-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav a { text-decoration: none; color: #333; font-size: 24px; font-weight: 600; padding: 10px; }
.mobile-nav .header-cta { font-size: 18px; padding: 12px 30px; }


/* --- Mobile Responsive Styles --- */
@media (max-width: 968px) {
    /* --- Mobile Header Fix --- */
    .header-nav,
    .desktop-cta {
        display: none;
    }
    .mobile-controls {
        display: flex;
    }
    
    /* --- Sticky CTA Fix --- */
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    /* --- General Layout Fixes --- */
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-text { justify-content: flex-start; }
    .hero-text h1 { font-size: 34px; }
    .section-title { font-size: 32px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .expert-image { height: 400px; }
    .bmi-container { grid-template-columns: 1fr; }
    .input-row { grid-template-columns: 1fr; }
    .final-cta-content h2 { font-size: 28px; }
    .cta-benefits { flex-direction: column; align-items: center; gap: 15px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-bottom-content { flex-direction: column; text-align: center; }

    /* --- *** THIS IS THE FIX for Concern 1 (Desktop Scroll) *** --- */
    /* --- Horizontal Scroll Container (MOBILE ONLY) --- */
    .horizontal-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: 100%;
    }
    .horizontal-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    /* Target all grids that should scroll */
    .horizontal-scroll-wrapper > .problem-grid,
    .horizontal-scroll-wrapper > .services-grid,
    .horizontal-scroll-wrapper > .transformation-grid,
    .horizontal-scroll-wrapper > .video-grid,
    .horizontal-scroll-wrapper > .steps-grid,
    .horizontal-scroll-wrapper > .trust-badges-grid {
        display: flex;
        width: fit-content;
        gap: 20px;
        scroll-snap-type: x mandatory;
        grid-template-columns: none; /* Reset grid */
        margin-top: 20px;
        padding: 0; /* Reset desktop padding */
    }

    /* Target all cards inside those grids */
    .horizontal-scroll-wrapper > * > .problem-card,
    .horizontal-scroll-wrapper > * > .service-card,
    .horizontal-scroll-wrapper > * > .transformation-card,
    .horizontal-scroll-wrapper > * > .video-card,
    .horizontal-scroll-wrapper > * > .step-card,
    .horizontal-scroll-wrapper > * > .trust-badge-item {
        flex: 0 0 80vw;
        max-width: 320px;
        scroll-snap-align: start;
        width: 80vw;
        margin-bottom: 0;
    }
    .video-card {
        aspect-ratio: 9 / 14;
    }

    /* Add padding to the start and end of the scroll */
    .horizontal-scroll-wrapper > * > *:first-child {
        margin-left: 20px;
    }
    .horizontal-scroll-wrapper > * > *:last-child {
        margin-right: 20px;
    }
    /* --- End of Scroll Fix --- */
    
    /* Fix for auto-scroller (it doesn't use the wrapper) */
    .testimonial-scroller {
        padding: 20px 0;
    }
    .whatsapp-grid {
        padding: 0;
    }
    .whatsapp-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: row; 
        justify-content: space-between;
        gap: 15px;
    }
    .logo-section {
        flex: 0 1 auto;
        /* Make logo smaller on mobile */
        transform: scale(0.9);
        transform-origin: left;
    }
    .mobile-nav {
        top: 79px; /* This should match your header height */
        height: calc(100vh - 79px);
    }
    
    .hero-text h1 { font-size: 28px; }
    .hero-form { padding: 25px 20px; }
    .trust-indicators { gap: 20px; justify-content: center; }
    .sticky-btn { padding: 10px 16px; font-size: 13px; }
    .transformation-info { padding: 20px 15px; }
    .bmi-calculator { padding: 25px 20px; }
    .cta-button-large { padding: 16px 35px; font-size: 18px; }
    .footer-content { grid-template-columns: 1fr; }
}

/* --- ADD THESE STYLES TO THE END OF common.css --- */

/* --- Contact Page Specific Styles --- */
.contact-page-section {
    padding: 80px 20px;
    background: #f8f9fa; /* Matches FAQ section background */
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
    align-items: flex-start;
}

/* Re-use hero-form style for the contact form */
#contactFormWrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}

.contact-details {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border-top: 5px solid #fbc108;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-details h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-details p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-details .footer-contact {
    gap: 25px; /* More spacing */
}

.contact-details .contact-item a,
.contact-details .contact-item span {
    color: #333; /* Darker text for contact page */
    font-size: 15px;
}

.contact-details .contact-item strong {
    color: #1a1a1a;
}

/* --- Mobile styles for Contact Page --- */
@media (max-width: 968px) {
    .contact-page-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
}

/* --- ADD THESE STYLES TO THE END OF common.css --- */

/* --- Legal/Static Page Styles (Privacy, Terms, etc.) --- */
.legal-page-section {
    padding: 80px 20px;
    background: #f8f9fa; /* Matches FAQ section background */
}

.legal-page-content {
    max-width: 800px; /* Good for reading */
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.legal-page-content h2 {
    font-size: 28px; 
    color: #1a1a1a;
    margin-bottom: 20px;
}

.legal-page-content h3 {
    font-size: 20px; 
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-page-content p {
    color: #666;
    line-height: 1.8; 
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-page-content ul {
    color: #666;
    line-height: 1.8; 
    margin-bottom: 15px;
    padding-left: 25px; /* Indent list */
}

/* --- Mobile styles for Legal Page --- */
@media (max-width: 968px) {
    .legal-page-content {
        padding: 30px 25px;
    }
}