/* style.css — Landing page specific styles
   Shared styles (navbar, footer, etc.) are in shared.css */

section {
    scroll-margin-top: 80px;
}

/* --- UPDATED: HERO SECTION --- */
.hero {
    /* This creates a soft spotlight effect behind the logo */
    background: radial-gradient(circle at 75% 50%, #4c6d91 0%, var(--bg-slate) 80%);
    padding: 8rem 8% 6rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    /* Tighter letter spacing looks more modern */
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Pushes the logo to the right */
    align-items: center;
}

.hero-logo {
    max-width: 60%;
    /* Reduced size for a smaller hero logo */
    height: auto;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Gives the logo a 3D pop off the page */
}

/* The 'Eyebrow' text above the title */
.kicker {
    display: inline-block;
    color: var(--bg-cream);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Section-specific kicker colors (eliminating HTML inline styles) */
.about .kicker,
.impact .kicker,
.reviews .kicker,
.contact-card .kicker {
    color: var(--bg-slate);
}

.services .kicker {
    color: var(--text-dark);
}

/* Button Layout */
.cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Makes the hover effect smooth */
}

/* The Solid Button */
.btn-primary {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    /* Button lifts up slightly when hovered */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* The Outline Button */
.btn-outline {
    border: 2px solid var(--bg-cream);
    color: var(--bg-cream);
}

.btn-outline:hover {
    background-color: rgba(244, 242, 234, 0.1);
    /* Subtle white flash */
    transform: translateY(-3px);
}

/* --- ABOUT / IDENTITY SECTION --- */
.about {
    background-color: var(--bg-cream);
    padding: 6rem 8%;
    color: var(--text-dark);
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.story-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* --- PART 1: Origin Story --- */
.story-header h2,
.mission-headline h2,
.partner-headline h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--bg-slate);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 1.2rem;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid #d1d5db;
}

.timeline-item {
    position: relative;
    padding: 0 0 2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.85rem;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: 3px solid var(--bg-cream);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.timeline-dot.active-dot {
    background-color: var(--bg-slate);
    box-shadow: 0 0 0 4px rgba(55, 71, 95, 0.15);
}

.timeline-content strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* --- PART 2: Mission Block --- */
.mission-block {
    background-color: var(--bg-slate);
    border-radius: 20px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.mission-headline h2 {
    color: white;
    font-size: 2rem;
}

.mission-headline .kicker {
    color: rgba(244, 242, 234, 0.65) !important;
}

.mission-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(244, 242, 234, 0.85);
    margin-bottom: 1.2rem;
}

.mission-body p em {
    color: var(--bg-cream);
    font-style: italic;
}


/* --- PART 3: Partner / Pillars --- */
.partner-headline {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.partner-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #555;
    margin-top: 1rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-slate);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 1.4rem;
    color: var(--bg-cream);
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}



/* --- SERVICES SECTION --- */
.services {
    background-color: #ffffff;
    /* Fresh white background for the grid */
    padding: 4rem 8%;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    /* This tells the grid: "Try to be 320px, but if the screen is smaller, just take 100% width" */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    /* Very subtle outline */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Soft, premium drop-shadow instead of hard black */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    /* Keeps the top border neat */
}

.service-card:hover {
    transform: translateY(-8px);
    /* Gentle lift */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Shadow deepens slightly */
}

/* Card Colors */
.card-green {
    border-top: 5px solid #10b981;
}

/* Emerald Green */
.card-orange {
    border-top: 5px solid #f59e0b;
}

/* Amber */
.card-pink {
    border-top: 5px solid #db2777;
}

/* Deep Pink */

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    /* Dark gray, much softer on the eyes than pure black */
    line-height: 1.3;
    margin: 0;
    max-width: 60%;
}

.price-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    white-space: nowrap;
}

.service-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    padding: 0;
}

.service-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-btn {
    display: block;
    text-align: center;
    background: #111;
    /* Keeps the high-conversion contrast */
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background: #374151;
    /* Fades to dark gray instead of becoming transparent */
}

/* --- CONTACT SECTION --- */
.contact {
    background-color: var(--bg-slate);
    padding: 8rem 8%;
    display: flex;
    justify-content: center;
}

.contact-card {
    background-color: var(--bg-cream);
    /* Remove hard borders and shadows */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    /* Soft, deep shadow for elevation */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--bg-slate);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--bg-slate);
}

/* WhatsApp Button Styling */
.contact-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.wa-btn,
.ig-btn {
    width: 100%;
    max-width: 280px;
    text-decoration: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    /* Remove the thick black border */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    /* Soften the button shadow */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ig-btn {
    background-color: #fbcfe8;
    /* The pink from your IG post */
    color: #111;
}

.wa-btn {
    background-color: #25D366;
    color: white;
}

.wa-btn:hover,
.ig-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.response-time {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
}



/* --- IMPACT & STATISTICS SECTION --- */
.impact {
    background-color: #ffffff;
    padding: 6rem 8%;
}

.impact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact .section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--bg-slate);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--bg-cream);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--bg-slate);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.impact-charts {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.chart-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    width: 100%;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--bg-slate);
}

.chart-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: -1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    display: block;
}

.chart-wide {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .impact {
        padding: 4rem 5%;
    }

    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .impact-charts {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.5rem;
    }

    .chart-container {
        padding: 1.5rem 1rem;
    }
}

/* --- REVIEWS SECTION (Professional Minimalist) --- */
.reviews {
    background-color: var(--bg-cream);
    /* Keeps the flow bright and clean */
    padding: 6rem 8%;
}

.reviews .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews .section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--bg-slate);
}

/* --- INFINITE SCROLLING REVIEWS --- */

/* 1. The Container hides anything outside of its width */
.reviews-marquee {
    width: 100%;
    overflow-x: auto;
    /* Enables native scrolling/swiping */
    overflow-y: hidden;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    cursor: grab;
    /* Shows the 'hand' icon so users know they can drag */
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-cream) 0%, transparent 100%);
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-cream) 0%, transparent 100%);
}

.reviews-marquee::-webkit-scrollbar {
    display: none;
}

.reviews-marquee {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* When the user clicks and drags */
.reviews-marquee:active {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    /* NOTICE: We completely removed the 'animation' rule from here! */
}

/* 4. Ensure cards don't shrink or stretch horizontally */
.review-card {
    width: 320px;
    /* Fixed width is required for horizontal carousels */
    max-width: 85%;
    flex-shrink: 0;
    /* Prevents flexbox from squeezing them */

    /* Keep all your previous premium styling below: */
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* 5-Star Rating */
.stars {
    color: #f59e0b;
    /* A professional, muted gold/amber */
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 4px;
}

/* The Quote */
.review-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* This ensures the names align at the bottom even if quotes are different lengths */
}

/* Client Info Separator */
.client-info {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.2rem;
}

.client-name {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.client-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #444;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rating-badge strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.rating-badge i {
    color: #f59e0b;
}



/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {

    .navbar {
        /* DELETE: flex-direction: column; */
        /* ADD THESE INSTEAD: */
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 5%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5%;
        gap: 4rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-image-container {
        justify-content: center;
    }

    .hero-logo {
        max-width: 90%;
    }

    .about-wrapper {
        gap: 3.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-text p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .mission-block {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.75rem;
        gap: 2rem;
    }

    .mission-headline h2 {
        font-size: 1.7rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-header h2,
    .partner-headline h2 {
        font-size: 1.9rem;
    }

    .partner-headline {
        text-align: left;
        margin: 0 0 2rem;
    }

    /* --- CONTACT SECTION --- */
    .contact {
        background-color: var(--bg-slate);
        padding: 8rem 8%;
        display: flex;
        justify-content: center;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        /* Reduced padding for smaller screens */
        text-align: center;

        /* Matching the new clean theme */
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .contact-details {
        align-items: center;
        margin-bottom: 2rem;
    }

    .contact-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wa-btn,
    .ig-btn {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: none;
    }

}