/* ===================================
   HEENA WELLNESS COACH - MAIN STYLES
   =================================== */

/* COLOR SCHEME */
:root {
    --primary-color: #6CC093; /* Soft Green */
    --secondary-color: #87CEEB; /* Sky Blue */
    --accent-color: #FFB6C1; /* Light Pink */
    --dark-color: #2C3E50;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
    --text-color: #333333;
    --border-color: #E0E0E0;
    --success-color: #27AE60;
    --warning-color: #F39C12;
}

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* TYPOGRAPHY */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #666;
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 2rem;
    text-align: center;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5DB07D 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 192, 147, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #5F9DD7 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(135, 206, 235, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.text-center {
    text-align: center;
}

/* NAVIGATION */
.navbar {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
}

.nav-logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.btn-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5DB07D 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-link.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 192, 147, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* HERO SECTION */
.hero,
.page-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero {
    height: 40vh;
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* TRUST SECTION */
.trust-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #777;
    margin: 0;
}

/* ABOUT PREVIEW SECTION */
.about-preview {
    padding: 4rem 1rem;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-preview-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-preview-text p {
    text-align: left;
}

.about-preview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* PROGRAMS SECTION */
.programs-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.program-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.program-card h3 {
    margin-bottom: 1rem;
}

.program-card p {
    color: #777;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    margin-right: 5px;
}

/* TRANSFORMATIONS SECTION */
.transformations-section {
    padding: 4rem 1rem;
}

.transformation-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.transformation-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.transformation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.transformation-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.transformation-info {
    padding: 1.5rem;
    background: white;
    text-align: center;
}

.transformation-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.transformation-info p {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #999;
}

/* COMMUNITY SECTION */
.community-section {
    padding: 4rem 1rem;
}

.community-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.community-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.community-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.community-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.community-item h3 {
    margin-bottom: 0.75rem;
}

/* LEAD MAGNET SECTION */
.lead-magnet-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.lead-magnet-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.lead-magnet-card h2 {
    color: var(--primary-color);
    text-align: center;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.lead-magnet-form input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 192, 147, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* SOCIAL PROOF SECTION */
.social-proof-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.instagram-item {
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FINAL CTA SECTION */
.final-cta-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    color: white;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(108, 192, 147, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .programs-grid,
    .transformation-gallery,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .trust-section,
    .programs-section,
    .transformations-section,
    .testimonials-section,
    .community-section,
    .lead-magnet-section,
    .social-proof-section,
    .final-cta-section {
        padding: 2rem 0.5rem;
    }

    .benefit-card,
    .program-card,
    .testimonial-card,
    .community-item {
        padding: 1.5rem;
    }

    .lead-magnet-card {
        padding: 2rem 1rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-section {
    padding: 4rem 1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text p {
    text-align: left;
    color: #666;
}

.story-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.story-timeline {
    max-width: 800px;
    margin: 3rem auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
    box-shadow: 0 0 0 5px rgba(108, 192, 147, 0.1);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 30px;
    width: 2px;
    height: 100px;
    background: var(--border-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content h3 {
    color: var(--primary-color);
}

.mission-section {
    padding: 4rem 1rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card ul {
    list-style: none;
}

.mission-card li {
    margin-bottom: 0.75rem;
    color: #666;
}

.approach-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.approach-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5DB07D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.credentials-section {
    padding: 4rem 1rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.credential-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-heena-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(108, 192, 147, 0.1) 0%, rgba(135, 206, 235, 0.1) 100%);
}

.why-heena-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-section {
    padding: 4rem 1rem;
}

.vision-content {
    max-width: 700px;
    margin: 0 auto;
}

.vision-list {
    list-style: none;
    margin: 2rem 0;
}

.vision-list li {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #666;
    padding-left: 2rem;
    position: relative;
}

.vision-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ===== PROGRAMS PAGE STYLES ===== */
.program-detail-section {
    padding: 4rem 1rem;
}

.program-detail-section.alternate {
    background: var(--gray-color);
}

.program-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.program-detail-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-detail-content h2 {
    text-align: left;
}

.program-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.program-features {
    list-style: none;
    margin: 1.5rem 0;
}

.program-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.program-cta {
    margin-top: 2rem;
}

.comparison-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:hover {
    background: var(--gray-color);
}

/* ===== TRANSFORMATIONS PAGE STYLES ===== */
.full-transformation-section {
    padding: 4rem 1rem;
}

.transformation-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
}

.transformation-card-full:nth-child(even) {
    direction: rtl;
}

.transformation-card-full:nth-child(even) > * {
    direction: ltr;
}

.transformation-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.before-image,
.after-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.before-image img,
.after-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.transformation-story h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.transformation-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.85rem;
    color: #999;
}

.transformation-quote {
    font-style: italic;
    color: #666;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.transformation-details p {
    color: #666;
    margin-bottom: 0.75rem;
}

.results-highlights {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.results-highlights h2 {
    color: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.big-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.transformation-benefits {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.benefits-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-full-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-full-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.video-testimonials {
    padding: 4rem 1rem;
}

.video-placeholder {
    background: var(--gray-color);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== COMMUNITY PAGE STYLES ===== */
.community-pillars-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: #666;
}

.impact-section {
    padding: 4rem 1rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-stat {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5DB07D 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.impact-stat h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.members-testimonials {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.quote {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.how-it-works-section {
    padding: 4rem 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--gray-color);
    border-radius: 15px;
    position: relative;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5DB07D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community-rules {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(108, 192, 147, 0.1) 0%, rgba(135, 206, 235, 0.1) 100%);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rule-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rule-card h3 {
    color: var(--primary-color);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-methods {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 4rem 1rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 192, 147, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.success-message {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.quick-response-section {
    padding: 4rem 1rem;
    background: var(--gray-color);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.response-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.social-contact-section {
    padding: 4rem 1rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.social-link i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.social-link:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.urgency-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    color: white;
}

.urgency-section h2 {
    color: white;
}

.urgency-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

/* RESPONSIVE FOR DETAIL PAGES */
@media (max-width: 768px) {
    .about-content,
    .program-detail,
    .transformation-card-full,
    .about-preview-content {
        grid-template-columns: 1fr;
    }

    .transformation-card-full:nth-child(even) {
        direction: ltr;
    }

    .transformation-image-split {
        grid-template-columns: 1fr;
    }

    .transformation-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}
