
:root {
    /* --- PALETTE: CYBER-LUXURY PURPLE/PINK --- */
    --bg-deep: #0f0514; /* Darkest purple/black */
    --accent-purple: #7c3aed;
    --accent-pink: #f43f5e;
    --accent-gold: #fbbf24;
    
    /* The new gradient definition */
    --aurora-gradient: conic-gradient(
        from 0deg at 50% 50%,
        #0f0514 0deg,
        #4c1d95 60deg, /* Deep Violet */
        #be123c 120deg, /* Rich Magenta */
        #fbbf24 180deg, /* Gold pop */
        #be123c 240deg,
        #4c1d95 300deg,
        #0f0514 360deg
    );

    /* Glass Vars */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shine: rgba(255, 255, 255, 0.3);
    
    --text-main: #ffffff;
    --text-muted: #c4b5fd; /* Soft lavender text */
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy feel */
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- DYNAMIC AURORA BACKGROUND --- */
body::before {
    content: '';
    position: fixed;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: var(--aurora-gradient);
    filter: blur(120px); /* Extreme blur for soft aurora effect */
    opacity: 0.4;
    animation: spinAurora 25s linear infinite;
    z-index: -1;
}

@keyframes spinAurora {
    100% { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3, h4 { letter-spacing: -0.03em; line-height: 1.1; color: white; }
h1 { 
    font-size: 4.5rem; font-weight: 800; 
    /* Subtle glow on main text */
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}
h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.1rem; }
a { text-decoration: none; transition: 0.3s ease; color: white; }

/* Gradient Text Effect */
.text-glow {
    background: linear-gradient(to right, var(--accent-pink), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* --- ULTRA GLASS CARD --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.5s var(--ease-elastic);
    position: relative;
    overflow: hidden;
}

/* The "Shine" effect crossing the card on hover */
.glass-panel::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.7s ease;
}

.glass-panel:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--glass-shine);
    background: rgba(255, 255, 255, 0.08);
    /* Colorful glow shadow on hover */
    box-shadow: 
        0 30px 60px -15px rgba(244, 63, 94, 0.3), /* Pink shadow */
        0 0 30px rgba(124, 58, 237, 0.2) inset; /* Purple inner glow */
}

.glass-panel:hover::after { left: 150%; }

/* --- HEADER --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000; padding: 15px 0;
    background: rgba(15, 5, 20, 0.6); /* Darker transparent header */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 1.5rem; font-weight: 900; display: flex; align-items: center; gap: 10px; color: white; letter-spacing: -1px; }
.nav-links { display: flex; gap: 30px; background: rgba(255,255,255,0.05); padding: 10px 30px; border-radius: 50px; border: 1px solid var(--glass-border); }
.nav-links a { font-weight: 600; font-size: 0.9rem; opacity: 0.7; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent-pink); }

/* --- CREATIVE BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; 
    border-radius: 100px; font-weight: 700; cursor: pointer; transition: 0.4s var(--ease-elastic);
    font-size: 0.95rem; position: relative; overflow: hidden;
}

.btn-gold { 
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-gold));
    color: white; border: none;
    box-shadow: 0 10px 30px -10px rgba(244, 63, 94, 0.5);
}
.btn-gold:hover { 
    transform: scale(1.05); 
    box-shadow: 0 20px 40px -10px rgba(251, 191, 36, 0.6);
}

.btn-glass {
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--glass-border);
    color: white;
}
.btn-glass:hover { border-color: var(--accent-pink); color: var(--accent-pink); background: rgba(255,255,255,0.1); }

/* --- DYNAMIC HERO --- */
.hero { padding: 180px 0 100px 0; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Kicker with glowing line */
.kicker { 
    color: var(--accent-gold); text-transform: uppercase; letter-spacing: 3px; 
    font-size: 0.8rem; font-weight: 800; margin-bottom: 25px; 
    display: flex; align-items: center; gap: 15px;
}
.kicker::before { 
    content: ''; width: 40px; height: 3px; 
    background: linear-gradient(to right, var(--accent-pink), var(--accent-gold));
    border-radius: 10px;
}

/* 3D Image with more intense float and glow */
.hero-img-container { position: relative; height: 650px; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.hero-img { 
    max-width: 120%; 
    /* Purple/Pink drop shadow glow */
    filter: drop-shadow(0 40px 80px rgba(124, 58, 237, 0.4));
    animation: floatCreative 10s ease-in-out infinite;
}
@keyframes floatCreative {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(2deg) scale(1.02); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* --- CREATIVE LAYOUTS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.section { padding: 140px 0; position: relative; }

/* Decorative separator line */
.section::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
}

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

/* MASONRY / STAGGERED GRID for Services */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}
/* Make the second column shifted down for dynamic feel */
.masonry-grid > div:nth-child(even) {
    margin-top: 60px;
}

.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }

/* Glowing Icons */
.glow-icon {
    font-size: 48px; margin-bottom: 25px;
    background: linear-gradient(to bottom right, var(--accent-pink), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(244, 63, 94, 0.3));
}

/* Check Lists */
.check-list li { margin-bottom: 15px; display: flex; gap: 15px; align-items: center; font-weight: 500; }
.check-icon-box { 
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: bold; box-shadow: 0 5px 15px rgba(244, 63, 94, 0.3);
}

/* --- FOOTER --- */
footer { padding: 100px 0 40px 0; margin-top: 60px; background: rgba(15, 5, 20, 0.8); }
footer a:hover { color: var(--accent-pink); text-shadow: 0 0 10px var(--accent-pink); }
footer h4 { margin-bottom: 25px; color: white; }
footer ul li { margin-bottom: 12px; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    .hero-grid, .grid-3, .grid-2, .masonry-grid { grid-template-columns: 1fr; }
    .masonry-grid > div:nth-child(even) { margin-top: 0; } /* Reset masonry on mobile */
    .hero-img { max-width: 90%; margin-top: 40px; height:auto; }
    .hero-img-container { height: auto; }
    .nav-links { display: none; }
    .glass-panel { padding: 30px; }
}
