/* Reset & Variables */
:root {
    --sc-primary: #0d6efd;
    /* Professional Blue */
    --sc-secondary: #6c757d;
    /* Neutral Gray */
    --sc-dark: #0f172a;
    /* Deep Navy Background */
    --sc-light: #f8f9fa;
    /* Off-white Background */
    --sc-success: #25D366;
    /* WhatsApp Green */
    --sc-text-main: #212529;
    --sc-text-muted: #64748b;
    --sc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.sc-wrapper {
    font-family: var(--sc-font);
    line-height: 1.6;
    color: var(--sc-text-main);
}

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

/* SECTION 1: HERO */
.sc-hero {
    background-color: var(--sc-dark);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.sc-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.sc-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sc-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    /* Light gray text */
    margin-bottom: 30px;
}

.sc-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.sc-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.sc-btn:hover {
    transform: translateY(-2px);
}

.sc-btn-whatsapp {
    background-color: var(--sc-success);
    color: white;
}

.sc-btn-outline {
    border: 2px solid white;
    color: white;
}

/* Replace the old .sc-hero-image-placeholder block with this */
.sc-hero-image-wrapper {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    /* Stops it from getting too wide on huge screens */
    height: 400px;
    /* Forces a fixed height so layout doesn't jump */
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    overflow: hidden;
    /* Cuts off anything that spills out */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
}

.sc-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* THE MAGIC FIX: Crops image to fill box without stretching */
    object-position: center;
    /* Centers the focal point */
    display: block;
}

/* Optional: Adjust height for mobile so it doesn't take up the whole phone screen */
@media (max-width: 768px) {
    .sc-hero-image-wrapper {
        height: 250px;
    }
}

/* SECTION 2: BENEFITS */
.sc-benefits {
    padding: 80px 0;
    background-color: white;
}

.sc-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sc-benefits-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--sc-dark);
}

.sc-check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sc-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--sc-text-main);
}

/* CSS-only Checkmark Icon */
.sc-check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--sc-primary);
    font-weight: bold;
}

/* SECTION 3: GRID (Services) */
.sc-services {
    padding: 80px 0;
    background-color: var(--sc-light);
}

.sc-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sc-services-grid {
    display: grid;
    /* Auto-fit creates as many columns as fit, min 250px wide */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.sc-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    border-top: 4px solid var(--sc-primary);
}

.sc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.sc-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--sc-dark);
}

.sc-card p {
    font-size: 0.95rem;
    color: var(--sc-text-muted);
    margin: 0;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .sc-hero h1 {
        font-size: 2rem;
    }

    .sc-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sc-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .sc-btn {
        width: 100%;
        text-align: center;
    }
}

/* SECTION 4: PACKAGES */
.sc-packages {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.sc-packages-grid {
    display: grid;
    /* Creates a responsive grid where cards are at least 280px wide */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
    /* Makes all cards equal height */
}

.sc-pkg-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.sc-pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--sc-primary);
}

/* Highlight style for the "Most Popular" card */
.sc-pkg-popular {
    border: 2px solid var(--sc-primary);
    background-color: #f0f7ff;
    /* Very light blue tint */
    transform: scale(1.02);
    /* Make it slightly bigger */
    z-index: 2;
    /* Put it above others if they overlap */
}

.sc-pkg-popular:hover {
    transform: scale(1.04) translateY(-5px);
}

.sc-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--sc-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-pkg-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sc-dark);
}

.sc-pkg-duration {
    display: inline-block;
    background: #f1f5f9;
    color: var(--sc-text-muted);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sc-pkg-desc {
    font-size: 0.95rem;
    color: var(--sc-text-main);
}

/* SECTION 5: WHO THIS IS FOR */
.sc-target {
    padding: 80px 0;
    background-color: var(--sc-dark);
    color: white;
    text-align: center;
}

.sc-target h2 {
    color: white;
    margin-bottom: 40px;
}

.sc-target-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.sc-target-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.sc-target-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

/* Green checkmark for the target items */
.sc-target-icon {
    color: var(--sc-success);
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sc-pkg-popular {
        transform: scale(1);
        /* Reset scale on mobile so it fits nicely */
    }

    .sc-target-item {
        width: 100%;
        /* Full width tags on mobile */
        justify-content: center;
    }
}

/* SECTION 6: WHY CHOOSE US */
.sc-why {
    padding: 80px 0;
    background-color: white;
    /* Contrast against the previous dark section */
}

.sc-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.sc-feature {
    text-align: left;
}

.sc-feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    background: #e0f2fe;
    /* Light blue circle */
    color: var(--sc-primary);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
}

.sc-feature h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--sc-dark);
}

/* SECTION 7: SUCCESS STORIES */
.sc-results {
    padding: 80px 0;
    background-color: var(--sc-light);
    /* Light gray background */
}

.sc-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* 2 columns on desktop usually */
    gap: 30px;
}

.sc-result-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--sc-success);
    /* Green border indicating success */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sc-result-highlight {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sc-success);
    display: block;
    margin-bottom: 5px;
}

.sc-result-text {
    font-size: 1.1rem;
    color: var(--sc-dark);
    font-weight: 500;
}

.sc-result-sub {
    font-size: 0.9rem;
    color: var(--sc-text-muted);
    margin-top: 5px;
    display: block;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .sc-feature {
        text-align: center;
    }

    /* Center align features on phone */
    .sc-results-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION 8: HOW IT WORKS */
.sc-steps {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.sc-steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

/* The connection line behind the steps (Desktop only) */
.sc-steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    /* Aligns with the middle of the circle */
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.sc-step-item {
    flex: 1;
    position: relative;
    z-index: 1;
    /* Sits on top of the line */
    background: white;
    /* Hides the line behind the text */
    padding: 0 10px;
}

.sc-step-num {
    width: 50px;
    height: 50px;
    background: var(--sc-dark);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 50px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 0 0 8px white;
    /* White halo to mask the line */
}

.sc-step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--sc-dark);
}

/* SECTION 9: FAQ (No-JS Accordion) */
.sc-faq {
    padding: 80px 0;
    background-color: var(--sc-light);
}

.sc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

details.sc-faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

summary.sc-faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--sc-dark);
    list-style: none;
    /* Hides default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Plus/Minus Icon */
summary.sc-faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--sc-primary);
    font-weight: bold;
}

details[open] summary.sc-faq-question::after {
    content: '−';
    /* Minus sign when open */
}

.sc-faq-answer {
    padding: 0 20px 20px 20px;
    color: var(--sc-text-main);
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    margin-top: 10px;
    padding-top: 15px;
}

/* SECTION 10: FINAL CTA */
.sc-final-cta {
    padding: 100px 0;
    background-color: var(--sc-dark);
    color: white;
    text-align: center;
}

.sc-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sc-final-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* MOBILE RESPONSIVE TWEAKS */
@media (max-width: 768px) {

    /* Stack steps vertically */
    .sc-steps-container {
        flex-direction: column;
        gap: 40px;
    }

    /* Hide the horizontal line on mobile */
    .sc-steps-container::before {
        display: none;
    }

    .sc-final-cta h2 {
        font-size: 2rem;
    }
}