/* MODERN CSS FOR FLUXA - AUTOMATION & FLOW */
:root {
    --bg-color: #05070a;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --primary-color: #00f2fe; /* Cyan */
    --secondary-color: #4facfe; /* Blue */
    --accent-color: #7c3aed; /* Violet */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --glass-blur: blur(16px);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background animated orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: drift 25s infinite alternate ease-in-out;
}

.orb-1 { width: 500px; height: 500px; background: var(--primary-color); top: -200px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--accent-color); bottom: -100px; right: -100px; animation-delay: -7s; }
.orb-3 { width: 450px; height: 450px; background: var(--secondary-color); top: 30%; right: 20%; animation-delay: -12s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Utility Classes */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Header & Logos */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo-container-top {
    height: 60px;
    background: #fff; /* White background as requested */
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.logo-container-top img {
    height: 40px;
    width: auto;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.1);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.2);
}

/* Services */
.service-icon {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-card:hover .service-icon img {
    transform: scale(1.1);
}

/* 24/7 Availability Section */
.availability-banner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 242, 254, 0.1));
    border: 1px solid var(--primary-color);
    padding: 60px;
    border-radius: 40px;
    margin: 100px 0;
    text-align: center;
}

/* Chat Widget */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.4);
    transition: transform 0.3s ease;
}

.chat-bubble:hover { transform: scale(1.1); }

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    display: none;
    flex-direction: column;
}

.chat-window.active { display: flex; }

.chat-header {
    padding: 20px;
    background: var(--primary-color);
    color: #000;
    border-radius: 20px 20px 0 0;
    font-weight: 700;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.95);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 85%;
    font-size: 0.9rem;
}

.message.bot { background: rgba(255,255,255,0.1); align-self: flex-start; }
.message.user { background: var(--secondary-color); color: #fff; align-self: flex-end; }
.message.system { background: rgba(124, 58, 237, 0.2); align-self: center; text-align: center; font-size: 0.8rem; border: 1px solid var(--accent-color); }

.chat-input-area {
    padding: 15px;
    background: #0f172a;
    display: flex;
    gap: 10px;
    border-radius: 0 0 20px 20px;
}

.chat-input-area input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.chat-input-area button {
    background: var(--primary-color);
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid var(--glass-border);
}

.footer-logo-bottom {
    max-width: 150px;
    margin-bottom: 30px;
}

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

.footer-legal-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-text p { margin: 0 auto 30px; }
    .hero-image { order: -1; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo-bottom { margin: 0 auto 30px; }
}