:root {
    --primary-color: #c5a47e; /* Gold-Beige */
    --primary-dark: #b8962e;
    --text-color: #000;
    --text-light: #fff;
    --bg-light: #FBF6F1; /* Warm Beige */
    --bg-dark: #121212;
    --bg-darker: #000;
    --accent-grey: #f4f4f4;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --spacing-unit: 1rem;
    --gold-gradient: linear-gradient(135deg, #C6A67D 0%, #A6855E 100%);
}

/* ===== SCROLL ANIMATIONS ===== */

/* Prevent horizontal overflow from animations and hide element scrollbars */
section,
#site-footer,
.container,
.feature-row,
.about-content,
.grid-photos,
.accordion,
.footer-grid,
.transformation-slider,
.slider-container {
    overflow-x: hidden !important;
    max-width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

section::-webkit-scrollbar,
#site-footer::-webkit-scrollbar,
.container::-webkit-scrollbar,
.feature-row::-webkit-scrollbar,
.about-content::-webkit-scrollbar,
.grid-photos::-webkit-scrollbar,
.accordion::-webkit-scrollbar,
.footer-grid::-webkit-scrollbar,
.transformation-slider::-webkit-scrollbar,
.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Hide horizontal scrollbar completely on body/html */
body,
html {
    overflow-x: hidden !important;
}

/* Fly in from Left */
.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fly in from Right */
.animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Up */
.animate-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom In */
.animate-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-zoom.animated {
    opacity: 1;
    transform: scale(1);
}

/* Zoom on Scroll - for images */
.scroll-zoom {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ===== END SCROLL ANIMATIONS ===== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    scrollbar-width: auto; /* Firefox - show scrollbar */
    scrollbar-color: var(--primary-color) #FBF6F1; /* Firefox thumb and track colors */
    -ms-overflow-style: auto; /* IE/Edge - show scrollbar */
}

html::-webkit-scrollbar {
    width: 10px;
}

html::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #FBF6F1 0%, #f4f4f4 100%);
}

html::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    border: 2px solid #FBF6F1;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 4px; /* Slightly rounded */
}

.btn-primary {
    background-color: var(--primary-color); /* Fallback */
    background: linear-gradient(to right, #D4AF37, #E5C568);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Smaller button variant */
.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Header */
#site-header {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav .nav-link {
    margin-right: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-nav .nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

.main-nav .nav-link:hover {
    color: #fff;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 40px;
    border-radius: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    font-size: 0.9rem;
}
/* Hero Section */
/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://placehold.co/1920x1080/1a1a1a/FFF?text=Gym+Background') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-top: 80px; /* Offset for header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(1.5rem, 8vw, 5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: clamp(2px, 1vw, 10px);
    pointer-events: none;
    z-index: 1;
    padding: 0 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 200px;
    position: relative;
    z-index: 2;
}

.hero-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-card {
    background: #fff;
    color: #333;
    padding: 40px;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: left;
}

.handwritten {
    font-family: 'Brush Script MT', cursive;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: block;
    margin-bottom: -10px;
}

.hero-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #555;
}

.hero-card .cta-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-phone-mockup img {
    max-height: 500px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Tell Me About Section */
#tell-me-about {
    padding: 80px 0;
    background-color: #fff;
}

.tell-me-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.tell-me-content {
    padding-right: 30px;
}

.handwritten-title {
    font-family: 'Brush Script MT', cursive;
    color: var(--primary-color);
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.section-heading-large {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-gold {
    color: var(--primary-color);
}

.tell-me-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
}

.cta-text {
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-gradient-gold {
    background: var(--gold-gradient);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-gradient-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(198, 166, 125, 0.4);
}

.tell-me-image {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.tell-me-image img {
    border-radius: 20px;
}

.phone-mockup-composition {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.phone-main {
    z-index: 2;
}

.phone-secondary {
    position: absolute;
    right: -80px;
    top: 40px;
    z-index: 1;
}

.phone-icons {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Transformations Section */
#transformations {
    padding: 80px 0;
    background-color: #fff;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.transformation-slider {
    display: flex;
    justify-content: center;
    overflow: hidden;
    max-width: 900px;
}

.transformation-card {
    display: none;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    gap: 30px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease;
}

.transformation-card.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.before-image,
.after-image {
    flex-shrink: 0;
    text-align: center;
}

.before-image img,
.after-image img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.before-image .label,
.after-image .label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.card-content-center {
    flex: 1;
    text-align: center;
    max-width: 400px;
}

.client-photo-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.card-content-center h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-content-center p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.client-photo {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.social-handle {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

.before-after {
    display: flex;
    gap: 10px;
}

.before-after img {
    border-radius: 10px;
    width: 120px;
    height: 160px;
    object-fit: cover;
}

.before-placeholder,
.after-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Features Video Section */
#features-video {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder {
    position: relative;
}

.video-overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 60px;
    gap: 40px;
}

.video-text-left,
.video-text-right {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.video-big-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.play-button-large i {
    margin-left: 4px;
}

.play-button-large:hover {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.center-btn {
    text-align: center;
}

/* Detailed Features Section */
#features-grid {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    overflow: hidden;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feature-header h2 {
    margin-bottom: 0;
}

.feature-badge {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.feature-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-text .light-text {
    font-weight: 300;
    color: #555;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.feature-list li i {
    background: #333;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.muscle-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.muscle-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.muscle-icon i {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
}

.muscle-icon span {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.feature-image-stack {
    position: relative;
}

/* Join CTA */
#join-cta {
    background-color: #222;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

#join-cta h2 {
    margin-bottom: 30px;
    color: #fff;
}

#join-cta p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #ccc;
}

#join-cta strong {
    color: #fff;
}

.transformation-grid-small {
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}

.transformation-grid-small img {
    border-radius: 10px;
}

/* Pricing Section */
#pricing {
    background-color: #111;
    color: #fff;
    padding: 80px 0;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap; /* Keep all 3 cards in one row on desktop */
    overflow: visible !important; /* Allow badges to show */
    padding-top: 20px; /* Space for badges */
}

.pricing-card {
    background: #1f1f1f;
    padding: 40px 25px 30px;
    border-radius: 15px;
    text-align: center;
    width: 280px;
    min-height: 320px;
    position: relative;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px; /* Space for badge */
    flex-shrink: 0;
}

.pricing-card.popular {
    background: #000;
    border: 2px solid var(--primary-color);
    z-index: 2;
    box-shadow: 0 0 30px rgba(197, 164, 126, 0.3);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.pricing-card.popular .card-badge {
    background: var(--gold-gradient);
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-card .subtitle {
    color: #888;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.pricing-card .btn {
    margin-top: auto;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #333;
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #ff8a00, #e52e71); /* Example gradient */
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* About Section */
#about-trainer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    overflow: hidden;
}

.trainer-photo img {
    border-radius: 20px;
    opacity: 0.8;
}

.trainer-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
}

.trainer-text strong {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
}

/* Mission Grid */
#mission-grid {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.grid-photos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
    overflow: hidden;
}

.grid-photos img,
.grid-photos .placeholder-box {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Placeholder Box Styling */
.placeholder-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* FAQ */
#faq {
    padding: 80px 0 120px;
    position: relative;
    background: linear-gradient(135deg, rgba(244, 244, 244, 0.95) 0%, rgba(251, 246, 241, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.faq h2 {
    color: #fff; /* Assuming dark bg overlay */
}

.center-text {
    text-align: center;
    margin-bottom: 40px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background: rgba(0,0,0,0.8);
}

.accordion-button i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-button {
    border-radius: 5px 5px 0 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.5);
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    padding: 20px;
}

.accordion-content p {
    color: #ddd;
    line-height: 1.7;
}

/* Footer */
#site-footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    overflow: hidden;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-col ul li a i {
    font-size: 0.7rem;
}

.center-col {
    text-align: center;
}

.footer-logo img {
    margin: 0 auto 20px;
    filter: invert(1);
    border-radius: 10px;
}

.footer-tagline {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #000;
}

.guide-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    width: 100%;
    max-width: 350px;
}

.btn-guide {
    background: var(--primary-color, #c5a47e);
    color: #111;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin: 0;
}
.btn-guide i {
    margin-left: 12px;
    font-size: 1.2em;
}
.btn-guide:hover {
    background: var(--primary-dark, #b8962e);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

.guide-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.guide-support-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .header-container {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 10px 0;
    }

    .mobile-menu-btn {
        display: flex;
        order: 1;
        z-index: 1001;
    }

    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 35px;
        max-width: 80px;
    }

    .header-actions {
        order: 3;
        gap: 10px;
    }

    .header-actions .btn-outline {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 5px;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav .nav-link {
        margin: 0;
        padding: 18px 20px;
        border-bottom: 1px solid #333;
        font-size: 1rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content .hero-title {
        font-size: 2.5rem;
        top: 50%;
        transform: translate(-50%, -50%);
        white-space: normal;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 120px;
        letter-spacing: 2px;
    }

    .hero-card-container {
        flex-direction: column;
        gap: 30px;
    }

    .tell-me-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tell-me-content {
        padding-right: 0;
        text-align: center;
    }

    .tell-me-image {
        order: 2;
    }

    .tell-me-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .phone-mockup-composition {
        justify-content: center;
    }

    .phone-secondary {
        right: -40px;
    }

    .phone-icons {
        display: none;
    }

    .slider-container {
        flex-direction: row;
        gap: 10px;
        padding: 0 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .transformation-slider {
        max-width: 100%;
    }

    .transformation-card {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 30px 25px;
        gap: 20px;
        justify-content: center;
        align-items: flex-start;
    }

    .transformation-card.active {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .transformation-card .before-image,
    .transformation-card .after-image {
        flex: 0 0 auto;
        order: initial;
    }

    .transformation-card .before-image {
        order: 1;
    }

    .transformation-card .card-content-center {
        flex: 1 1 100%;
        order: 2;
        max-width: 100%;
    }

    .transformation-card .after-image {
        order: 3;
    }

    .before-image img,
    .after-image img {
        width: 120px !important;
        height: 160px !important;
    }

    .before-image .placeholder-box,
    .after-image .placeholder-box {
        width: 120px !important;
        height: 160px !important;
    }

    .video-overlay-content {
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .video-big-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .play-button-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }

    .feature-header {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .feature-text h2 {
        font-size: 1.6rem;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .feature-image {
        width: 100%;
    }

    .feature-image-stack {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    /* Fix absolute positioned overlays on feature images */
    .feature-image-stack .phone-overlay-placeholder,
    .feature-image-stack .meal-phone-placeholder {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin-left: -30px;
        margin-top: 20px;
    }

    .feature-image-stack .laptop-placeholder,
    .feature-image-stack .workout-placeholder,
    .feature-image-stack .meal-placeholder,
    .feature-image-stack .results-placeholder {
        width: 280px !important;
        height: auto !important;
        min-height: 200px;
    }

    .muscle-icons {
        justify-content: center;
    }

    .grid-photos {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .trainer-photo .placeholder-box {
        width: 250px !important;
        height: 320px !important;
        margin: 0 auto;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        padding-top: 15px;
    }

    .pricing-card {
        width: 220px;
        min-height: 280px;
        padding: 35px 15px 25px;
    }

    .pricing-card h3 {
        font-size: 1.2rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    #join-cta p {
        padding: 0 20px;
        font-size: 1rem;
    }

    .transformation-grid-small {
        flex-wrap: wrap;
        gap: 15px;
    }

    .transformation-grid-small .placeholder-box {
        width: 150px !important;
        height: 200px !important;
    }

    .accordion {
        padding: 0 10px;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 18px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col h3 {
        font-size: 1rem;
    }

    .center-col {
        grid-column: span 2;
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    * {
        max-width: 100%;
    }

    .container {
        width: 100%;
        padding: 0 15px;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    /* Header Mobile Fixes */
    #site-header {
        padding: 10px 0;
    }

    .header-container {
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        height: 30px;
        max-width: 70px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .cart-icon {
        font-size: 0.85rem;
        padding: 5px;
    }

    .main-nav {
        padding: 70px 15px 20px;
    }

    .main-nav .nav-link {
        padding: 15px;
        font-size: 0.95rem;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 1.8rem !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        letter-spacing: 3px;
        white-space: normal !important;
        line-height: 1.3;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-top: 80px;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    #hero {
        min-height: 350px;
        height: auto;
        padding: 80px 0 50px;
    }

    /* Tell Me Section Mobile */
    #tell-me-about {
        padding: 50px 0;
    }

    .section-heading-large {
        font-size: 1.5rem;
    }

    .handwritten-title {
        font-size: 1.5rem;
    }

    .tell-me-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .tell-me-image {
        display: none;
    }

    .btn-gradient-gold {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Transformations Mobile */
    #transformations {
        padding: 50px 0;
    }

    .slider-container {
        flex-direction: column;
        gap: 15px;
    }

    .slider-btn {
        display: none;
    }

    .transformation-card {
        padding: 20px 15px;
        gap: 15px;
    }

    .transformation-card.active {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .before-image,
    .after-image {
        flex: 0 0 auto;
    }

    .before-image img,
    .after-image img {
        width: 100px !important;
        height: 130px !important;
    }

    .before-image .placeholder-box,
    .after-image .placeholder-box {
        width: 90px !important;
        height: 120px !important;
    }

    .card-content-center {
        flex: 1 1 100%;
        order: 3;
        max-width: 100%;
        padding: 10px 0;
    }

    .card-content-center h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .card-content-center p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .client-photo-small {
        width: 60px;
        height: 60px;
    }

    .social-handle {
        font-size: 0.8rem;
    }

    .slider-dots {
        margin-top: 20px;
    }

    /* Video Section Mobile */
    #features-video {
        padding: 40px 0;
    }

    .video-wrapper {
        margin: 0 auto 30px;
        border-radius: 15px;
    }

    .video-wrapper .placeholder-box {
        height: 200px !important;
        border-radius: 15px !important;
    }

    .video-text-left,
    .video-text-right {
        display: none;
    }

    .play-button-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Features Grid Mobile */
    #features-grid {
        padding: 40px 0;
    }

    .feature-row {
        margin-bottom: 50px;
        gap: 25px;
    }

    .feature-header {
        flex-direction: column;
        gap: 15px;
    }

    .feature-text h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .feature-text p {
        font-size: 0.9rem;
        text-align: center;
    }

    .feature-badge {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .feature-list {
        max-width: 100%;
    }

    .feature-list li {
        font-size: 0.9rem;
        gap: 12px;
        margin-bottom: 12px;
    }

    .feature-list li i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .feature-image-stack {
        flex-direction: column;
        align-items: center;
    }

    .feature-image-stack .placeholder-box {
        width: 220px !important;
        height: 180px !important;
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
    }

    .feature-image-stack .phone-overlay-placeholder,
    .feature-image-stack .meal-phone-placeholder {
        width: 100px !important;
        height: 160px !important;
        margin-top: 15px !important;
        margin-left: 0 !important;
    }

    .muscle-icons {
        gap: 15px;
    }

    .muscle-icon i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .muscle-icon span {
        font-size: 0.65rem;
    }

    /* Join CTA Mobile */
    #join-cta {
        padding: 50px 0;
    }

    #join-cta h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    #join-cta p {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .transformation-grid-small {
        gap: 10px;
    }

    .transformation-grid-small .placeholder-box {
        width: 130px !important;
        height: 170px !important;
    }

    /* Pricing Mobile */
    #pricing {
        padding: 50px 0;
    }

    .pricing-cards {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        gap: 30px;
        padding: 15px 10px 0;
        overflow: visible;
    }

    .pricing-card {
        width: 100%;
        max-width: 340px;
        min-height: auto;
        padding: 40px 25px 30px;
        margin-top: 10px;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .pricing-card .price {
        font-size: 2rem;
    }

    .pricing-card .subtitle {
        font-size: 0.85rem;
    }

    /* About Section Mobile */
    #about-trainer {
        padding: 50px 0;
    }

    .trainer-photo .placeholder-box {
        width: 220px !important;
        height: 280px !important;
    }

    .trainer-text p {
        font-size: 0.9rem;
        text-align: center;
    }

    /* Mission Grid Mobile */
    #mission-grid {
        padding: 40px 0;
    }

    .grid-photos {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .grid-photos .placeholder-box {
        height: 100px !important;
    }

    /* FAQ Mobile */
    #faq {
        padding: 50px 0 80px;
    }

    .center-text {
        font-size: 0.9rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .accordion {
        padding: 0;
    }

    .accordion-item {
        margin-bottom: 10px;
    }

    .accordion-button {
        font-size: 0.8rem;
        padding: 15px 12px;
        line-height: 1.4;
    }

    .accordion-button i {
        font-size: 0.7rem;
        margin-left: 10px;
        flex-shrink: 0;
    }

    .accordion-content p {
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    #site-footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-col h3 {
        margin-bottom: 15px;
    }

    .footer-col ul {
        margin-bottom: 15px;
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .center-col {
        grid-column: span 1;
        order: -1;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    .guide-buttons {
        align-items: center;
    }

    .btn-guide {
        width: 100%;
        max-width: 220px;
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .section-title {
        font-size: 1.2rem;
    }

    .section-heading-large {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px;
    }

    .before-image .placeholder-box,
    .after-image .placeholder-box {
        width: 75px !important;
        height: 100px !important;
    }

    .card-content-center h3 {
        font-size: 1.1rem;
    }

    .feature-text h2 {
        font-size: 1.2rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 0.75rem;
        padding: 12px 10px;
    }

    .transformation-grid-small .placeholder-box {
        width: 110px !important;
        height: 140px !important;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 15px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Button Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 12px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 12px;
        right: 10px;
        font-size: 20px;
    }
}

@media (max-width: 360px) {
    .whatsapp-float {
        width: 42px;
        height: 42px;
        bottom: 10px;
        right: 8px;
        font-size: 18px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
#about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Our Journey Section */
#our-journey {
    padding: 100px 0;
    background: #fff;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.journey-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.journey-content strong {
    color: var(--primary-color);
}

/* Our Values Section */
#our-values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    overflow: hidden;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Meet Trainer Section */
#meet-trainer {
    padding: 100px 0;
    background: #fff;
}

.trainer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
}

.trainer-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.trainer-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.credential {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.credential i {
    color: var(--primary-color);
}

/* Stats Section */
#stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.stat-item {
    padding: 30px;
    overflow: hidden;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Why Choose Section */
#why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    overflow: hidden;
}

.choose-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.choose-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.choose-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(197, 164, 126, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
}

.choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.choose-card p {
    color: #666;
    line-height: 1.7;
    position: relative;
}

/* About CTA Section */
#about-cta {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-outline-dark {
    border: 2px solid #333;
    color: #333;
    background: transparent;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #333;
    color: #fff;
}

/* Light variant for dark backgrounds */
#services-cta .btn-outline-dark {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

#services-cta .btn-outline-dark:hover {
    background: #fff;
    color: #333;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
#contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1?w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Info Section */
#contact-info {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

.contact-form-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full {
    width: 100%;
}

/* Contact Details Card */
.contact-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card > p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
    overflow: hidden;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-text a,
.contact-text p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 3px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-note {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

.social-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.social-contact h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Quick Contact Section */
#quick-contact {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow: hidden;
}

.quick-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quick-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.consultation-icon {
    background: var(--gold-gradient);
}

.email-icon {
    background: linear-gradient(135deg, #333, #555);
}

.quick-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.quick-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Contact FAQ Section */
#contact-faq {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(244, 244, 244, 0.95) 0%, rgba(251, 246, 241, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* ===== ABOUT & CONTACT PAGE RESPONSIVE ===== */

@media (max-width: 992px) {
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .journey-grid,
    .trainer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-image,
    .trainer-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 12px;
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    #about-hero,
    #contact-hero {
        height: 40vh;
        min-height: 300px;
    }

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .about-hero-content p,
    .contact-hero-content p {
        font-size: 1rem;
    }

    #our-journey,
    #our-values,
    #meet-trainer,
    #why-choose,
    #about-cta,
    #contact-info,
    #quick-contact,
    #contact-faq {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-item {
        padding: 15px 10px;
        text-align: center;
    }

    .stat-number {
        font-size: 1.6rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        word-break: break-word;
    }

    .trainer-credentials {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px;
        border-radius: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .contact-card {
        padding: 25px 18px;
        border-radius: 15px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        gap: 12px;
        flex-wrap: wrap;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .contact-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .contact-text h4 {
        font-size: 0.85rem;
    }

    .contact-text a,
    .contact-text p {
        font-size: 0.8rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-note {
        font-size: 0.7rem;
    }

    .social-contact {
        margin-top: 30px;
        padding-top: 20px;
    }

    .social-links-contact a {
        width: 40px;
        height: 40px;
    }

    .quick-card {
        padding: 30px 20px;
    }

    .quick-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .whatsapp-float {
        width: 48px !important;
        height: 48px !important;
        bottom: 15px !important;
        right: 12px !important;
        font-size: 22px !important;
        position: fixed !important;
        z-index: 99999 !important;
    }
}

/* ===== EXTRA SMALL SCREENS FIX ===== */
@media (max-width: 380px) {
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0;
    }

    .stat-item {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0;
    }

    .contact-form {
        padding: 15px 12px;
    }

    .contact-card {
        padding: 20px 12px;
    }

    .contact-item {
        gap: 10px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .contact-text a,
    .contact-text p {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.85rem;
    }

    .whatsapp-float {
        width: 44px !important;
        height: 44px !important;
        bottom: 12px !important;
        right: 10px !important;
        font-size: 20px !important;
    }

    .quick-card {
        padding: 25px 15px;
    }

    .quick-card h3 {
        font-size: 1.1rem;
    }

    .quick-card p {
        font-size: 0.85rem;
    }

    .btn-whatsapp,
    .btn-gradient-gold,
    .btn-outline-dark {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
#services-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 1;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Services Overview Section */
#services-overview {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    margin-top: -20px;
}

.section-subtitle.light {
    color: #aaa;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.service-card > p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    width: 100%;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.service-price {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    margin-top: auto;
}

.service-price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Training Programs Section */
#training-programs {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 0;
    margin-top: 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-content h3 i {
    color: var(--primary-color);
}

.program-content > p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.program-content ul {
    margin-bottom: 20px;
}

.program-content ul li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-content ul li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.program-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Pricing Features in Services Page */
.pricing-features {
    text-align: left;
    margin-bottom: 25px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.pricing-features li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Payment Section */
.payment-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid #333;
}

.payment-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.payment-section > p {
    color: #888;
    margin-bottom: 30px;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qr-code {
    display: block;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(197, 164, 126, 0.3);
}

.qr-code #upiQrCode {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code #upiQrCode svg {
    border-radius: 10px;
}

.qr-code p {
    font-weight: 600;
    color: #111;
    font-size: 0.9rem;
    margin-top: 10px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.payment-method-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(197, 164, 126, 0.1);
    border: 1px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.payment-method-item:hover {
    background: var(--primary-color);
    color: #1a1a1a;
}

.payment-method-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.payment-method-item:hover i {
    color: #1a1a1a;
}

.payment-method-item span {
    font-weight: 500;
}

.upi-id {
    display: block;
    margin-top: 25px;
    color: #888;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.upi-id:hover {
    color: var(--primary-color);
}

.upi-id strong {
    color: var(--primary-color);
}

/* How It Works Section */
#how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 30px 25px;
    position: relative;
    background: var(--bg-light);
    border-radius: 20px;
    flex: 1;
    max-width: 260px;
}

/* Arrow between cards on desktop */
.step-card::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -28px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--primary-color);
    z-index: 100;
    background: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-card:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 5px;
}

.step-content p {
    margin: 0;
}

/* Services CTA Section */
#services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
}

#services-cta .cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#services-cta .cta-content p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Terms Hero Section */
#terms-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.terms-hero-content {
    position: relative;
    z-index: 1;
}

.terms-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.terms-hero-content p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Terms Content Section */
#terms-content {
    padding: 80px 0;
    background: #fff;
}

.terms-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.terms-toc {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.terms-toc h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.terms-toc ul li {
    margin-bottom: 10px;
}

.terms-toc ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.terms-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.terms-section:last-of-type {
    border-bottom: none;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-section h2 i {
    color: var(--primary-color);
}

.terms-section h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: #333;
}

.terms-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.terms-section ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.terms-contact {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.terms-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.terms-contact > p {
    color: #666;
    margin-bottom: 25px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.terms-contact .small-text {
    font-size: 0.85rem;
    color: #888;
}

/* ===== SERVICES PAGE RESPONSIVE ===== */

@media (max-width: 992px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

    .step-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 20px;
        background: var(--bg-light);
        border-radius: 15px;
        max-width: none;
        position: relative;
    }

    /* Hide arrows on tablet */
    .step-card::after {
        display: none !important;
    }

    .step-card .step-content {
        flex: 1;
    }
}

@media (max-width: 768px) {
    #services-hero {
        height: 40vh;
        min-height: 300px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    #services-overview,
    #training-programs,
    #how-it-works,
    #services-cta {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .program-image {
        height: 180px;
    }

    .program-content {
        padding: 25px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        position: relative;
    }

    .step-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 20px;
        background: var(--bg-light);
        border-radius: 15px;
        max-width: none;
        position: relative;
    }

    /* Hide arrows on mobile */
    .step-card::after {
        display: none !important;
    }

    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #333;
    }

    .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    .step-card .step-content {
        flex: 1;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-card h4,
    .step-card p {
        margin: 0;
    }

    .step-card h4 {
        margin-bottom: 5px;
    }

    .qr-container {
        flex-direction: column;
        gap: 30px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .payment-method-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .payment-section {
        padding: 30px 20px;
    }

    #services-cta .cta-content h2 {
        font-size: 1.8rem;
    }

    #terms-hero {
        height: 35vh;
        min-height: 250px;
    }

    .terms-hero-content h1 {
        font-size: 2rem;
    }

    #terms-content {
        padding: 50px 0;
    }

    .terms-toc,
    .terms-contact {
        padding: 20px;
    }

    .terms-section h2 {
        font-size: 1.4rem;
    }

    .terms-section h3 {
        font-size: 1.1rem;
    }

    .contact-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }

    .program-content h3 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .payment-method-item {
        padding: 12px 20px;
        justify-content: center;
    }

    .terms-hero-content h1 {
        font-size: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (min-width: 601px) and (max-width: 992px) {
    .transformation-card.active {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
    }
    
    .transformation-card .before-image {
        order: 1;
    }
    
    .transformation-card .after-image {
        order: 2;
    }
    
    .transformation-card .card-content-center {
        order: 3;
        flex-basis: 100%;
        margin-top: 20px;
    }
    
    .before-image img,
    .after-image img {
        width: 140px !important;
        height: 180px !important;
    }
}

/* ===== NEW COMPONENTS STYLES ===== */

/* Tell Me About Buttons */
.tell-me-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.btn-outline-dark:hover {
    background: var(--text-color);
    color: #fff;
}

/* Video Section */
#features-video {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

#features-video .video-wrapper {
    max-width: 900px;
    margin: 0 auto 30px;
}

#features-video .video-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

#features-video .video-container iframe {
    display: block;
}

@media (max-width: 768px) {
    #features-video .video-container iframe {
        height: 300px;
    }
}

/* Access Features Grid (What You Will Get) */
#features-access {
    padding: 80px 0;
    background: var(--bg-light);
}

.access-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.access-feature {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.access-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.access-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
}

.access-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.access-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Mission Section */
#our-mission {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mission-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mission-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.8rem;
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mission-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Policy Highlight Box */
.policy-highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.policy-highlight p {
    margin: 0;
    font-size: 1.1rem;
}

.policy-highlight i {
    margin-right: 10px;
}

/* Center Button */
.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* Services Grid - 5 columns support */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
    .tell-me-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .tell-me-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .access-features-grid {
        grid-template-columns: 1fr;
    }

    .access-feature {
        padding: 30px 20px;
    }

    .access-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .policy-highlight {
        padding: 15px 20px;
    }

    .policy-highlight p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .access-feature h3 {
        font-size: 1.1rem;
    }

    .mission-card h3 {
        font-size: 1.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}
