:root {
    --bg-dark: #030712;
    --text-light: #f9fafb;
    --text-muted: #9ca3af;
    --accent: #2bbbed;
    --accent-hover: #1e8ab1;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-dark);
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 800; letter-spacing: -0.5px; }

/* Global Background */
#vanta-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
}

/* Original Canvas Cursor */
#cursor-canvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 99999; pointer-events: none;
    transition: opacity 0.2s ease;
    mix-blend-mode: difference;
}

/* Section Glassmorphism */
.section { padding: 100px 5%; position: relative; }
.glass-section { background: rgba(3, 7, 18, 0.4); backdrop-filter: blur(8px); border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.glass-section-darker { background: rgba(3, 7, 18, 0.7); backdrop-filter: blur(12px); border-top: 1px solid rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
.content { max-width: 1200px; margin: 0 auto; }

/* Navbar */
.navbar { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: linear-gradient(180deg, rgba(3,7,18,0.9), transparent); }
.logo-img { height: 45px; object-fit: contain; transition: transform 0.3s; }
.lang-switch { display: flex; gap: 10px; }
.lang-switch button { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--text-light); padding: 8px 18px; border-radius: 30px; font-weight: 600; backdrop-filter: blur(10px); transition: all 0.3s; }
.lang-switch button.active, .lang-switch button:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-dark); }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { max-width: 900px; z-index: 10; }
.glow-text { font-size: 5rem; line-height: 1.1; margin-bottom: 30px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.glow-text span { color: var(--accent); }
.hero p { font-size: 1.4rem; color: var(--text-muted); margin-bottom: 40px; }
.btn { background: var(--text-light); color: var(--bg-dark); border: none; padding: 18px 45px; font-size: 1.1rem; font-weight: 800; border-radius: 50px; transition: transform 0.3s, box-shadow 0.3s; }
.btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(43, 187, 237, 0.3); }

/* Decorative & Cards */
.fancy-box { background: rgba(255, 255, 255, 0.05); padding: 60px; border-radius: 20px; text-align: center; box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.1); }
.fancy-box i { font-size: 5rem; color: var(--accent); margin-bottom: 20px; }
.fancy-box h3 { font-size: 2rem; color: #fff; }

.service-item { display: flex; align-items: center; gap: 40px; padding: 40px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; }
.service-number { font-size: 4rem; font-weight: 800; color: var(--text-muted); opacity: 0.3; }
.service-item h3 { font-size: 1.8rem; margin-bottom: 10px; }
.service-item p { color: var(--text-muted); font-size: 1.1rem; }

.feature-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 50px 30px; border-radius: 20px; }
.feature-card i { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 15px; word-wrap: break-word; hyphens: auto; }
.feature-card p { color: var(--text-muted); }

.stat-box { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 20px; }
.stat-num { font-size: 5rem; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.stat-text { font-size: 1.2rem; color: var(--text-muted); }

/* Layout Grids */
.about h2 { font-size: 3.5rem; margin-bottom: 30px; }
.about p { font-size: 1.25rem; color: var(--text-muted); line-height: 1.8; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.services h2 { font-size: 3.5rem; margin-bottom: 50px; }
.services-list { display: flex; flex-direction: column; gap: 30px; }

.features h2 { font-size: 3.5rem; margin-bottom: 60px; text-align: center; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center; }
.centered { text-align: center; margin-bottom: 60px; font-size: 3rem; }

/* Contact Section Redesign (New Block) */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-left h2 { font-size: 3rem; margin-bottom: 15px; color: var(--text-light); }
.contact-left p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; line-height: 1.6; }
.contact-info-list { display: flex; flex-direction: column; gap: 30px; }
.contact-info-item { display: flex; align-items: center; gap: 20px; }
.contact-info-item i { font-size: 1.8rem; color: var(--accent); }
.contact-info-item span { font-size: 1.15rem; color: var(--text-light); line-height: 1.4; }
.contact-info-item .highlight { font-weight: 800; color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: inherit;
    transition: background 0.3s, border-color 0.3s;
}
.contact-form textarea { height: 160px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}
.submit-btn {
    background: linear-gradient(135deg, #1aa2d1, #13dc88);
    color: #fff;
    width: 100%;
    margin-top: 10px;
    border-radius: 15px;
    border: none;
    font-size: 1.1rem;
    padding: 20px;
    font-weight: 800;
}

/* Footer elements */
.flex-footer { display: flex; justify-content: space-between; align-items: center; }

/* Animations */
.reveal { opacity: 0; transform: translateY(60px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal-fast { opacity: 0; transform: translateY(-30px); transition: all 1s ease; }
.reveal.active, .reveal-fast.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    .grid-2, .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .contact-card { grid-template-columns: 1fr; padding: 30px; }
    .flex-footer { flex-direction: column; gap: 20px; text-align: center; }
    #cursor-canvas { display: none; }
    * { cursor: auto !important; }
}
