@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

.landing-page {
    /* Light Futuristic Theme */
    --accent: #2563eb;
    /* Blue 600 */
    --accent-glow: rgba(37, 99, 235, 0.3);
    --accent-2: #4f46e5;
    /* Indigo 600 */
    --bg-white: #ffffff;
    --bg-alt: #f8fafc;
    /* Slate 50 */
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.8);
    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #64748b;
    /* Slate 500 */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    background: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Utilities --- */
.landing-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-page .glass-panel {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.landing-page .glass-panel:hover {
    border-color: var(--accent);
    background: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Hero Section --- */
.landing-page #hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    /* Light gradient background */
    background: radial-gradient(circle at top right, #f1f5f9, #ffffff);
    text-align: center;
    overflow: hidden;
}

/* Hero Canvas Animation */
.landing-page #hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content */
    pointer-events: none;
}

.landing-page #hero::before {
    content: none;
}

.landing-page .hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
    /* Above canvas */
}

.landing-page .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    /* Removed text shadow for better readability on light bg */
}

.landing-page .hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.landing-page .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 10px 15px -3px var(--accent-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.landing-page .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px var(--accent-glow);
    color: white;
}

/* --- Navbar --- */
.landing-page nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

.landing-page .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.landing-page .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    background: linear-gradient(135deg, var(--text-main), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .top-menu-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    margin-left: 24px;
}

.landing-page .top-menu-link:hover {
    color: var(--accent);
}

/* --- Services --- */
.landing-page #services {
    padding: 100px 20px;
    background: var(--bg-white);
}

.landing-page .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    text-decoration: none;
    background: var(--glass);
    /* Use glass variable which is light now */
}

.landing-page .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    object-fit: contain;
}

.landing-page .service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.landing-page .service-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.landing-page .service-link {
    color: var(--accent);
    font-weight: 700;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-page .badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.landing-page .badge.warning-chip {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: none;
}

/* --- Why Us Section --- */
.landing-page .why-us {
    padding: 100px 20px;
    background: var(--bg-alt);
    position: relative;
}

.landing-page .why-us::before {
    content: none;
}

.landing-page .why-card {
    padding: 40px;
    border: none;
    background: none;
    box-shadow: none;
}

.landing-page .why-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.landing-page .why-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.landing-page .why-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.05);
}

.landing-page .why-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    text-shadow: none;
}

.landing-page .why-text {
    font-weight: 600;
    color: var(--text-main);
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.landing-page .animate-float {
    animation: float 6s ease-in-out infinite;
}

/* --- Showcase Section --- */
.landing-page #showcase {
    padding: 100px 0;
    position: relative;
}

.landing-page .showcase-img-container {
    padding: 10px;
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}

.landing-page .showcase-img-container:hover {
    transform: scale(1.02);
}

.landing-page .showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.landing-page .showcase-content .display-4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-page .text-white-50 {
    color: var(--text-muted) !important;
}

.landing-page .text-white {
    color: var(--text-main) !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .landing-page .section-title {
        font-size: 3rem;
    }

    .landing-page .showcase-content {
        text-align: center !important;
    }

    .landing-page .showcase-content ul {
        display: inline-block;
        text-align: left;
    }
}