:root {
    --primary-bg: #0a0b1e;
    --primary-text: #ffffff;
    --secondary-text: #b0b0b0;
    --accent-gold: #ffd700;
    --accent-amethyst: #bf40bf;
    --accent-teal: #00f2ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: 0.3s ease;
}

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

body {
    background: var(--primary-bg);
    color: var(--primary-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo-text {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Background & Particle Container */
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/background.png') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.6);
}

#particle-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05), transparent 70%);
    pointer-events: none;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 15px 40px;
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
}

.logo {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-text);
}

.nav-links a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--accent-gold);
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-gold), #ffbf00);
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 5px;
}

/* Hero */
.hero {
    text-align: center;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero .magical {
    background: linear-gradient(-45deg, #00f2ff, #bf40bf, #ffd700);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientText 10s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(45deg, var(--accent-amethyst), #ff00ff);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(191, 64, 191, 0.4);
}

.secondary-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--secondary-text);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Glass Cards */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

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

.about-card {
    text-align: center;
}

.about-card i {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 20px;
}

/* Services */
.services-wrapper {
    display: flex;
    gap: 30px;
}

.service-block {
    flex: 1;
    position: relative;
    padding: 60px 30px;
    transition: var(--transition);
}

.service-block:hover {
    transform: translateY(-10px);
    border-color: var(--accent-teal);
}

.service-block.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.block-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.1;
}

/* Contact Form */
.contact-box {
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.input-group textarea {
    height: 150px;
    resize: none;
}

.pulse:hover {
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(191, 64, 191, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(191, 64, 191, 0); }
    100% { box-shadow: 0 0 0 0 rgba(191, 64, 191, 0); }
}

/* Footer */
footer {
    padding: 50px 10%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.socials i {
    font-size: 1.5rem;
    color: var(--secondary-text);
}

.socials a:hover i {
    color: var(--accent-gold);
    transform: scale(1.2);
}

/* Particles */
.particle {
    position: absolute;
    background: var(--accent-gold);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glass-nav {
        padding: 10px 20px;
    }
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .services-wrapper {
        flex-direction: column;
    }
}
