:root {
    --primary: #00e5ff;
    /* Vibrant Cyan */
    --secondary: #ff4081;
    /* Hot Pink */
    --accent: #ff0055;
    --bg-dark: #05080d;
    --card-bg: rgba(0, 229, 255, 0.05);
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 64, 129, 0.2);
}

/* Subtle Film Grain Texture for a 'Human' Feel */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Glassmorphism with Cyan/Pink tint */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(255, 64, 129, 0.1);
}

/* Header */
header {
    padding: 1.5rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 13, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

nav a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

/* Hero Section with Vibrant Polish */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    /* Account for fixed header */
    background: linear-gradient(rgba(5, 8, 13, 0.85), rgba(255, 64, 129, 0.1)),
        url('https://images.unsplash.com/photo-1632759162403-12ce893bc5bc?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 50px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
    /* Refined drop shadow */
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-bottom: 3.5rem;
    color: var(--text-light);
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.cta-button {
    background: var(--secondary);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border-radius: 6px;
    /* Slightly sharper */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 25px rgba(255, 64, 129, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.6);
    border-color: rgba(0, 229, 255, 0.3);
}

/* Sections */
section {
    padding: 120px 10%;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 64, 129, 0.1);
}

.service-card:hover {
    background: rgba(255, 64, 129, 0.05);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1.5rem;
}

/* Images */
.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
}

/* FAQ */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.faq-item {
    padding: 30px;
}

/* Footer */
footer {
    padding: 80px 10%;
    background: #020406;
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    header {
        padding: 1rem 5%;
    }

    nav {
        display: none;
    }

    section {
        padding: 80px 5%;
    }
}