/* ======================================================== */
/* FILE: style.css (Save in Root Folder)                    */
/* ======================================================== */

:root {
    /* SkillarCode Official Brand Tokens */
    --sc-primary: #007bff;
    --sc-primary-hover: #0056b3;
    --sc-accent: #fec107;
    --sc-text-main: #555555;
    --sc-text-heading: #333333;
    --sc-bg-light: #f8f9fa;
    --sc-white: #ffffff;
    --sc-border: #eeeeee;
    --sc-shadow: 0 4px 6px rgba(0,0,0,0.05);
    
    /* Footer Specific Tokens */
    --sc-footer-bg: #1a1a1a;
    --sc-footer-text: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.sc-body {
    font-family: 'Poppins', sans-serif;
    color: var(--sc-text-main);
    background-color: var(--sc-white);
    line-height: 1.6;
    padding-top: 80px; 
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.sc-btn-primary {
    background: var(--sc-primary);
    color: var(--sc-white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sc-btn-primary:hover {
    background: var(--sc-primary-hover);
    transform: translateY(-2px);
    color: var(--sc-white);
}

/* ================= LOGO DESIGN (1:1 Ratio + Curved) ================= */
.sc-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-logo-img {
    width: 45px;
    height: 45px; /* 1:1 Ratio */
    border-radius: 12px; /* Curved corners */
    object-fit: contain;
    background: transparent;
}

.sc-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--sc-primary);
    letter-spacing: 0.5px;
}

/* ================= COMPONENT: HEADER ================= */
.sc-header {
    background: var(--sc-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--sc-shadow);
    border-bottom: 1px solid var(--sc-border);
}

.sc-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.sc-nav-links {
    display: flex;
    gap: 30px;
}

.sc-nav-link {
    font-weight: 500;
    color: var(--sc-text-heading);
    font-size: 15px;
}

.sc-nav-link:hover {
    color: var(--sc-primary);
}

.sc-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--sc-text-heading);
    cursor: pointer;
}

.sc-mobile-action {
    display: none;
}

/* ================= COMPONENT: FOOTER ================= */
.sc-footer {
    background-color: var(--sc-footer-bg);
    color: var(--sc-white);
    padding-top: 60px;
}

.sc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Footer Logo specific styling */
.sc-footer-logo-link {
    margin-bottom: 15px;
    display: inline-flex;
}

.sc-footer-img {
    background: var(--sc-white); /* White bg inside footer for contrast if transparent */
    padding: 2px;
}

.sc-footer .sc-logo-text {
    color: var(--sc-white); /* White text in footer */
}

.sc-footer-tagline {
    color: var(--sc-accent);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sc-footer-desc {
    color: var(--sc-footer-text);
    font-size: 14px;
    line-height: 1.8;
}

.sc-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--sc-white);
}

.sc-footer-links li {
    margin-bottom: 12px;
}

.sc-footer-links a {
    color: var(--sc-footer-text);
    font-size: 14px;
}

.sc-footer-links a:hover {
    color: var(--sc-accent);
    padding-left: 5px;
}

.sc-social-icons {
    display: flex;
    gap: 15px;
}

.sc-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--sc-white);
    border-radius: 5px;
    font-size: 18px;
}

.sc-social-icons a:hover {
    background: var(--sc-primary);
    transform: translateY(-3px);
}

.sc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background-color: #111111;
}

.sc-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--sc-footer-text);
}

/* Clickable SkillarMedia Link */
a.sc-highlight-text {
    color: var(--sc-accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.sc-highlight-text:hover {
    color: var(--sc-white);
    text-decoration: underline;
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 992px) {
    .sc-desktop-only { display: none; }
    .sc-menu-toggle { display: block; }
    
    .sc-nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--sc-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--sc-shadow);
        transition: left 0.3s ease;
    }

    .sc-nav-menu.sc-active { left: 0; }
    
    .sc-nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .sc-mobile-action {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sc-footer-grid {
        grid-template-columns: 1fr 1fr; 
        gap: 30px;
    }
    .sc-brand-col {
        grid-column: span 2; 
    }
    .sc-social-col {
        grid-column: span 2; 
    }
    .sc-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* ======================================================== */
/* HERO SECTION STYLES                                      */
/* ======================================================== */

.sc-hero-section {
    background: linear-gradient(135deg, var(--sc-white) 0%, var(--sc-bg-light) 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

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

/* --- Left Content Styles --- */
.sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--sc-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.sc-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--sc-text-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.sc-highlight-text {
    color: var(--sc-primary);
}

.sc-hero-subtitle {
    font-size: 18px;
    color: var(--sc-text-main);
    margin-bottom: 35px;
    max-width: 90%;
    line-height: 1.7;
}

.sc-hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.sc-btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 8px;
}

.sc-btn-outline {
    background: transparent;
    color: var(--sc-primary);
    border: 2px solid var(--sc-primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sc-btn-outline:hover {
    background: var(--sc-primary);
    color: var(--sc-white);
}

/* --- Updated Stats Section --- */
.sc-hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--sc-border);
    padding-top: 25px;
}

.sc-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sc-stat-icon {
    font-size: 24px;
    color: var(--sc-accent);
    background: rgba(254, 193, 7, 0.15);
    padding: 14px;
    border-radius: 50%;
}

.sc-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--sc-text-heading);
    line-height: 1.1;
}

.sc-stat-text {
    font-size: 14px;
    color: var(--sc-text-main);
    font-weight: 500;
}

/* --- Right Visual / Mockup Styles --- */
.sc-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.sc-mockup-wrapper {
    position: relative;
    width: 300px;
    height: 580px;
}

.sc-phone-frame {
    width: 100%;
    height: 100%;
    background: var(--sc-text-heading);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.sc-phone-screen {
    background: var(--sc-bg-light);
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px 0;
    text-align: center;
    overflow: hidden; /* Hide anything outside screen */
}

.sc-pin-bounce {
    font-size: 50px;
    color: var(--sc-primary);
    margin-bottom: 15px;
    animation: scBounce 2s infinite ease-in-out;
}

.sc-phone-screen h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--sc-text-heading);
}

/* --- Seamless Auto-Scroll Marquee Logic --- */
.sc-marquee-wrapper {
    width: 100%;
    flex-grow: 1; /* Takes remaining height */
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent); /* Fade effect top & bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.sc-marquee-track {
    animation: scVerticalScroll 25s linear infinite;
}

.sc-marquee-wrapper:hover .sc-marquee-track {
    animation-play-state: paused; /* Pause on hover */
}

.sc-marquee-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 12px;
}

.sc-service-pill {
    background: var(--sc-white);
    width: 100%;
    padding: 14px 15px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--sc-text-heading);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

/* --- Floating Circular Icons --- */
.sc-floating-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--sc-white);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 3;
    animation: scFloat 3s infinite ease-in-out alternate;
}

.sc-fc-1 { 
    top: 15%; 
    left: -30px; 
    color: var(--sc-primary); 
    animation-delay: 0s; 
}
.sc-fc-2 { 
    bottom: 25%; 
    right: -25px; 
    color: var(--sc-accent); 
    animation-delay: 1s; 
}
.sc-fc-3 { 
    top: 50%; 
    left: -20px; 
    color: #28a745; /* Trust Green */
    animation-delay: 1.5s; 
    width: 50px;
    height: 50px;
    font-size: 20px;
}

/* --- Animations --- */
@keyframes scBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

@keyframes scVerticalScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Scrolls exactly one list height to loop seamlessly */
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 992px) {
    .sc-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sc-hero-subtitle {
        margin: 0 auto 35px;
    }
    .sc-hero-actions {
        justify-content: center;
    }
    .sc-hero-stats {
        justify-content: center;
        margin-bottom: 50px;
    }
}

/* --- Mobile Fix for Side-by-Side Stats --- */
@media (max-width: 480px) {
    .sc-hero-section {
        padding: 40px 0 60px;
    }
    .sc-hero-title {
        font-size: 32px;
    }
    .sc-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .sc-btn-large, .sc-btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Fixed Stats Layout for Mobile (Left & Right) */
    .sc-hero-stats {
        flex-direction: row; /* Keep horizontal */
        justify-content: space-between; /* Push to left and right */
        gap: 10px;
        width: 100%;
        padding: 20px 10px 0;
    }
    
    .sc-stat {
        flex-direction: row; /* Icon and text side by side */
        align-items: center;
        text-align: left;
        gap: 10px;
    }
    
    .sc-stat-icon {
        padding: 10px;
        font-size: 18px;
    }
    
    .sc-stat-number {
        font-size: 18px; /* Slightly smaller for mobile */
    }
    
    .sc-stat-text {
        font-size: 12px;
    }

    /* Mockup adjustment */
    .sc-mockup-wrapper {
        width: 100%;
        max-width: 280px;
        height: 520px;
    }
    .sc-fc-1 { left: -10px; }
    .sc-fc-2 { right: -10px; }
    .sc-fc-3 { display: none; /* Hide 3rd circle on small mobile for clean UI */ }
}





/* ======================================================== */
/* HOW IT WORKS SECTION STYLES                              */
/* ======================================================== */

.sc-how-it-works {
    background-color: var(--sc-white);
    padding: 80px 0;
    overflow: hidden;
}

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

.sc-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--sc-text-heading);
    margin-bottom: 15px;
}

.sc-text-primary {
    color: var(--sc-primary);
}

.sc-section-subtitle {
    font-size: 16px;
    color: var(--sc-text-main);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Grid & Cards --- */
.sc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Connecting Line for Desktop */
.sc-steps-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: dashed 2px var(--sc-border);
    z-index: 1;
}

.sc-step-card {
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 10px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: var(--sc-shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    opacity: 1; /* FIXED: Always visible now */
    transform: translateY(0);
}

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

/* --- Icons & Numbers --- */
.sc-step-icon-box {
    width: 90px;
    height: 90px;
    background: var(--sc-bg-light);
    color: var(--sc-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    position: relative;
    border: 5px solid var(--sc-white);
    box-shadow: var(--sc-shadow);
    transition: all 0.3s ease;
}

.sc-step-card:hover .sc-step-icon-box {
    background: var(--sc-primary);
    color: var(--sc-white);
}

.sc-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--sc-accent);
    color: var(--sc-text-heading);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--sc-white);
}

.sc-step-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--sc-text-heading);
    margin-bottom: 12px;
}

.sc-step-text {
    font-size: 15px;
    color: var(--sc-text-main);
    line-height: 1.6;
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 992px) {
    .sc-steps-grid::before {
        display: none; /* Hide connector line on smaller screens */
    }
}

@media (max-width: 768px) {
    .sc-how-it-works {
        padding: 60px 0;
    }
    
    .sc-section-title {
        font-size: 28px;
    }

    .sc-steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sc-step-card {
        padding: 30px 20px;
    }
}


/* ======================================================== */
/* EXPLORE CATEGORIES STYLES                                */
/* ======================================================== */

.sc-categories-section {
    background-color: var(--sc-bg-light); /* Light Grey Background for contrast */
    padding: 80px 0;
}

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

.sc-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--sc-text-heading);
    margin-bottom: 15px;
}

.sc-text-primary {
    color: var(--sc-primary);
}

.sc-section-subtitle {
    font-size: 16px;
    color: var(--sc-text-main);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- CSS Grid Layout --- */
.sc-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* --- Category Card Styles --- */
.sc-category-card {
    background-color: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--sc-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sc-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
}

/* --- Icon Wrapper & Icon --- */
.sc-cat-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 123, 255, 0.08); /* Light Blue Tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.sc-cat-icon {
    font-size: 28px;
    color: var(--sc-primary);
    transition: all 0.3s ease;
}

/* Hover effect for Icon */
.sc-category-card:hover .sc-cat-icon-wrapper {
    background-color: var(--sc-primary);
}

.sc-category-card:hover .sc-cat-icon {
    color: var(--sc-white);
    transform: scale(1.1);
}

/* --- Typography inside Card --- */
.sc-cat-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--sc-text-heading);
    transition: color 0.3s ease;
}

.sc-category-card:hover .sc-cat-title {
    color: var(--sc-primary);
}

/* --- Bottom CTA Area --- */
.sc-categories-cta {
    text-align: center;
    background: var(--sc-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed var(--sc-primary);
    box-shadow: var(--sc-shadow);
}

.sc-categories-cta p {
    font-size: 16px;
    color: var(--sc-text-heading);
    margin-bottom: 20px;
}

.sc-btn-large {
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 8px;
}

/* ================= MEDIA QUERIES ================= */

/* Tablet View (3 Columns) */
@media (max-width: 992px) {
    .sc-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Large Mobile View (2 Columns) */
@media (max-width: 768px) {
    .sc-categories-section {
        padding: 60px 0;
    }
    .sc-section-title {
        font-size: 28px;
    }
    .sc-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .sc-category-card {
        padding: 20px 15px;
    }
    .sc-cat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    .sc-cat-icon {
        font-size: 24px;
    }
    .sc-cat-title {
        font-size: 15px;
    }
}

/* Small Mobile View Adjustments */
@media (max-width: 480px) {
    .sc-categories-grid {
        gap: 12px;
    }
    .sc-category-card {
        padding: 15px 10px;
    }
    .sc-cat-title {
        font-size: 14px;
    }
    .sc-categories-cta {
        padding: 20px 15px;
    }
    .sc-btn-large {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}


/* ======================================================== */
/* WHY CHOOSE US & CTA SECTION STYLES                       */
/* ======================================================== */

.sc-why-us-section {
    background-color: var(--sc-white);
    padding: 80px 0;
}

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

.sc-section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--sc-text-heading);
    margin-bottom: 15px;
}

.sc-text-primary {
    color: var(--sc-primary);
}

.sc-section-subtitle {
    font-size: 16px;
    color: var(--sc-text-main);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.sc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sc-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--sc-white);
    border: 1px solid var(--sc-border);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--sc-shadow);
    transition: all 0.3s ease;
    opacity: 1; /* FIXED: Always visible */
    transform: translateY(0);
}

.sc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sc-shadow-lg);
    border-color: rgba(0,123,255,0.2);
}

.sc-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(0,123,255,0.1);
    color: var(--sc-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.sc-feature-card:hover .sc-feature-icon {
    background: var(--sc-primary);
    color: var(--sc-white);
}

.sc-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--sc-text-heading);
    margin-bottom: 10px;
}

.sc-feature-desc {
    font-size: 15px;
    color: var(--sc-text-main);
    line-height: 1.6;
}

/* --- Provider CTA Banner --- */
.sc-cta-section {
    padding: 20px 0 80px;
    background-color: var(--sc-white);
}

.sc-cta-box {
    background: linear-gradient(135deg, var(--sc-primary) 0%, #004494 100%);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sc-shadow-lg);
    opacity: 1; /* FIXED: Always visible */
    transform: translateY(0);
}

.sc-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.sc-cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: var(--sc-white);
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc-cta-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--sc-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.sc-text-accent {
    color: var(--sc-accent);
}

.sc-cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.sc-cta-buttons {
    display: flex;
    gap: 15px;
}

.sc-btn-accent {
    background: var(--sc-accent);
    color: var(--sc-text-heading);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sc-btn-accent:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.sc-btn-outline-white {
    background: transparent;
    color: var(--sc-white);
    border: 2px solid var(--sc-white);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sc-btn-outline-white:hover {
    background: var(--sc-white);
    color: var(--sc-primary);
}

.sc-cta-visual {
    position: absolute;
    right: -20px;
    bottom: -40px;
    z-index: 1;
    opacity: 0.1;
}

.sc-cta-bg-icon {
    font-size: 250px;
    color: var(--sc-white);
}

/* ================= MEDIA QUERIES ================= */

@media (max-width: 992px) {
    .sc-cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .sc-why-us-section {
        padding: 60px 0;
    }
    
    .sc-section-title {
        font-size: 28px;
    }

    .sc-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-feature-card {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sc-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .sc-cta-title {
        font-size: 26px;
    }

    .sc-cta-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .sc-btn-accent, .sc-btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .sc-cta-visual {
        display: none;
    }
}


/* ======================================================== */
/* CONTACT FORM & TOAST STYLES                              */
/* ======================================================== */

.sc-contact-section {
    background-color: var(--sc-bg-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

/* --- Left Info Styles --- */
.sc-badge {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: var(--sc-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.sc-contact-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--sc-text-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.sc-text-accent {
    color: var(--sc-primary);
}

.sc-contact-desc {
    font-size: 16px;
    color: var(--sc-text-main);
    line-height: 1.7;
    margin-bottom: 30px;
}

.sc-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sc-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--sc-text-heading);
    font-weight: 500;
}

.sc-info-list i {
    color: #28a745;
    font-size: 20px;
}

/* --- Right Form Styles --- */
.sc-contact-form-wrapper {
    background: var(--sc-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--sc-shadow);
    border: 1px solid var(--sc-border);
}

.sc-form-group {
    margin-bottom: 20px;
}

.sc-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--sc-text-heading);
    margin-bottom: 8px;
}

.sc-input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.sc-input-icon {
    position: absolute;
    left: 15px;
    color: #888888;
    font-size: 16px;
}

.sc-form input,
.sc-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px; /* Padding left for icon */
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--sc-text-heading);
    background: var(--sc-white);
    transition: all 0.3s ease;
    outline: none;
}

.sc-form textarea {
    padding-left: 15px; /* No icon for textarea */
    resize: vertical;
}

.sc-form input:focus,
.sc-form textarea:focus {
    border-color: var(--sc-primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* --- Button & Spinner --- */
.sc-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.sc-submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.sc-spinner {
    display: none;
    font-size: 18px;
    animation: scSpin 1s linear infinite;
}

@keyframes scSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Show spinner logic via JS class */
.sc-submit-btn.sc-loading .sc-btn-text { display: none; }
.sc-submit-btn.sc-loading .sc-spinner { display: block; }

/* --- Toast Notification --- */
.sc-toast {
    position: fixed;
    bottom: 30px;
    right: -400px; /* Hidden initially */
    background: var(--sc-white);
    border-left: 5px solid #28a745;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sc-toast.sc-show {
    right: 30px; /* Slides in */
}

.sc-toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sc-toast-icon {
    font-size: 24px;
    color: #28a745;
}

.sc-toast-message {
    display: flex;
    flex-direction: column;
}

.sc-toast-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--sc-text-heading);
}

.sc-toast-desc {
    font-size: 14px;
    color: var(--sc-text-main);
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 992px) {
    .sc-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sc-contact-info {
        text-align: center;
    }
    .sc-info-list {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .sc-contact-section { padding: 60px 0; }
    .sc-contact-title { font-size: 30px; }
    .sc-contact-form-wrapper { padding: 25px 20px; }
    
    .sc-toast {
        width: 90%;
        left: 5%;
        right: auto;
        bottom: -100px;
        transition: bottom 0.5s ease;
    }
    .sc-toast.sc-show {
        bottom: 20px;
        right: auto;
    }
}


/* ======================================================== */
/* FAQ SECTION STYLES (NATIVE HTML5 & PREMIUM UI)           */
/* ======================================================== */

.sc-faq-section {
    background: linear-gradient(180deg, var(--sc-bg-light) 0%, #eef5ff 100%);
    padding: 90px 0;
}

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

.sc-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--sc-text-heading);
    margin-bottom: 15px;
}

.sc-text-primary {
    color: var(--sc-primary);
}

.sc-section-subtitle {
    font-size: 16px;
    color: var(--sc-text-main);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.sc-faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* --- Native Details Item --- */
.sc-faq-item {
    background-color: var(--sc-white);
    border: 1px solid var(--sc-border);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sc-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.08);
}

/* --- Native Summary (The Clickable Area) --- */
.sc-faq-question {
    list-style: none; /* Removes default triangle */
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    outline: none;
    user-select: none;
}

/* Fallback to hide default arrow in older webkit browsers */
.sc-faq-question::-webkit-details-marker {
    display: none;
}

.sc-faq-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--sc-text-heading);
    transition: color 0.3s ease;
}

.sc-faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--sc-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 15px;
    transition: all 0.3s ease;
}

/* --- The Answer Content --- */
.sc-faq-answer {
    padding: 0 25px 25px 25px;
    animation: scFadeIn 0.4s ease-in-out;
}

.sc-faq-answer p {
    font-size: 15px;
    color: var(--sc-text-main);
    line-height: 1.7;
    margin: 0;
}

@keyframes scFadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- ACTIVE STATE (Targeting the 'open' attribute of native details) --- */
details[open].sc-faq-item {
    border-left-color: var(--sc-primary);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
}

details[open] .sc-faq-text {
    color: var(--sc-primary);
}

details[open] .sc-faq-icon {
    background: var(--sc-primary);
    color: var(--sc-white);
    transform: rotate(135deg); /* Turns the Plus into an X */
}

/* --- FAQ Footer / Support Link --- */
.sc-faq-footer {
    text-align: center;
    margin-top: 45px;
    font-size: 16px;
    color: var(--sc-text-heading);
}

.sc-faq-footer a {
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-faq-footer a:hover {
    text-decoration: underline;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
    .sc-faq-section {
        padding: 60px 0;
    }
    .sc-section-title {
        font-size: 28px;
    }
    .sc-faq-question {
        padding: 18px 20px;
    }
    .sc-faq-text {
        font-size: 15px;
    }
    .sc-faq-answer {
        padding: 0 20px 20px 20px;
    }
}