/* Hero Section */
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1596178060810-72f53ce9a65c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--pure-white);
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: var(--pure-white);
        animation: fadeIn 1s ease-out;
    }
    
    .hero-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 30px;
        animation: fadeIn 1.2s ease-out;
    }
    
    /* Section Styles */
    .section {
        padding: 80px 0;
    }
    
    .section-light {
        background-color: var(--pure-white);
    }
    
    .section-dark {
        background-color: var(--almond-milk);
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 36px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .section-header h2:after {
        content: '';
        position: absolute;
        width: 60px;
        height: 3px;
        background-color: var(--shea-butter);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-header p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--neutral-dark);
    }
    
    /* Before/After Gallery */
    .before-after-section {
        background-color: var(--pure-white);
    }
    
    .before-after-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .before-after-card {
        position: relative;
        height: 400px;
        perspective: 1000px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px var(--light-shadow);
    }
    
    .before-after-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.8s;
        transform-style: preserve-3d;
    }
    
    .before-after-card:hover .before-after-inner {
        transform: rotateY(180deg);
    }
    
    .before-image, .after-image {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .before-image img, .after-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .after-image {
        transform: rotateY(180deg);
    }
    
    .image-label {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background-color: var(--shea-butter);
        color: var(--pure-white);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 500;
        font-size: 14px;
    }
    
    /* Client Spotlights */
    .client-spotlights-section {
        background-color: var(--almond-milk);
    }
    
    .spotlight-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .spotlight-card {
        background-color: var(--pure-white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px var(--light-shadow);
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .spotlight-card.fade-in {
        opacity: 1;
        transform: translateY(0);
    }
    
    .spotlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px var(--medium-shadow);
    }
    
    .spotlight-image {
        height: 300px;
        overflow: hidden;
    }
    
    .spotlight-image img {
        width: 100%;
        height: 100%;
        object-fit:cover;
        transition: transform 0.5s ease;
    }
    
    .spotlight-card:hover .spotlight-image img {
        transform: scale(1.05);
    }
    
    .spotlight-content {
        padding: 25px;
    }
    
    .spotlight-name {
        font-size: 22px;
        margin-bottom: 10px;
        color: var(--cocoa-brown);
    }
    
    .spotlight-title {
        font-size: 14px;
        color: var(--shea-butter);
        margin-bottom: 15px;
        font-weight: 500;
    }
    
    .spotlight-quote {
        font-style: italic;
        margin-bottom: 20px;
        color: var(--neutral-dark);
    }
    
    .spotlight-stats {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid var(--neutral-light);
        padding-top: 15px;
    }
    
    .spotlight-stat {
        text-align: center;
    }
    
    .stat-number {
        font-size: 18px;
        font-weight: 600;
        color: var(--shea-butter);
    }
    
    .stat-label {
        font-size: 12px;
        color: var(--neutral-dark);
    }
    
    /* Monthly Challenges */
    .challenges-section {
        background-color: var(--pure-white);
    }
    
    .challenges-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .challenge-card {
        display: flex;
        flex-wrap: wrap;
        background-color: var(--almond-milk);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px var(--light-shadow);
    }
    
    .challenge-image {
        flex: 1;
        min-width: 300px;
    }
    
    .challenge-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .challenge-content {
        flex: 1;
        min-width: 300px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .challenge-badge {
        width: 80px;
        height: 80px;
        background-color: var(--shea-butter);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--pure-white);
        font-size: 30px;
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    .challenge-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .challenge-description {
        margin-bottom: 20px;
    }
    
    .challenge-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .challenge-meta-item {
        display: flex;
        align-items: center;
    }
    
    .challenge-meta-item i {
        color: var(--shea-butter);
        margin-right: 8px;
    }
    
    .challenge-participants {
        display: flex;
        margin-bottom: 20px;
    }
    
    .participant {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--pure-white);
        overflow: hidden;
        margin-left: -10px;
    }
    
    .participant:first-child {
        margin-left: 0;
    }
    
    .participant img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .participant-count {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--honey-gold);
        color: var(--pure-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        margin-left: -10px;
    }
    
    /* Social Media Section */
    .social-section {
        background-color: var(--almond-milk);
    }
    
    .social-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--neutral-medium);
    }
    
    .social-tab {
        padding: 10px 20px;
        margin: 0 10px;
        cursor: pointer;
        position: relative;
        font-weight: 500;
    }
    
    .social-tab:after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -1px;
        left: 0;
        background-color: var(--shea-butter);
        transition: width 0.3s ease;
    }
    
    .social-tab.active {
        color: var(--shea-butter);
    }
    
    .social-tab.active:after {
        width: 100%;
    }
    
    .social-content {
        display: none;
    }
    
    .social-content.active {
        display: block;
    }
    
    .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .social-card {
        background-color: var(--pure-white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px var(--light-shadow);
        transition: all 0.3s ease;
    }
    
    .social-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px var(--medium-shadow);
    }
    
    .social-video {
        position: relative;
        padding-bottom: 100%; /* Square aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .social-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .social-info {
        padding: 15px;
        border-top: 1px solid var(--neutral-light);
    }
    
    .social-platform {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .social-platform i {
        margin-right: 8px;
        color: var(--shea-butter);
    }
    
    .social-caption {
        font-size: 14px;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .social-meta {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--neutral-dark);
    }
    
    .social-meta-item {
        display: flex;
        align-items: center;
    }
    
    .social-meta-item i {
        margin-right: 5px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 80px 0;
        background:var(--olive-green);
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        text-align: center;
        color: var(--pure-white);
    }
    
    .cta-content h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: var(--pure-white);
    }
    
    .cta-content p {
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
    }
    
    @keyframes heartbeat {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero-content h1 {
            font-size: 36px;
        }
        
        .challenge-card {
            flex-direction: column;
        }
        
        .challenge-image {
            height: 300px;
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            height: 60vh;
        }

        .hero-content{
            padding: 3px;
        }
        
        .hero-content h1 {
            font-size: 32px;
        }
        
        .section-header h2 {
            font-size: 28px;
        }
        
        .spotlight-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }
        
        .social-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }