:root {
    --primary: #9333EA; /* Electric Purple */
    --accent: #F472B6; /* Neon Pink highlight */
    --midnight: #000000; /* Midnight Black */
    --slate-night: #0F172A;
    --text-white: #FFFFFF;
    --font-heading: 'Unbounded', sans-serif;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { background: var(--midnight); color: var(--text-white); font-family: var(--font-main); overflow-x: hidden; line-height: 1.6; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.section-pad { padding: 10rem 0; }

/* NAV */
#prestige-nav { position: fixed; width:100%; top:0; z-index:1000; padding: 2.5rem 0; transition: all 0.4s; }
.nav-box { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-white); text-decoration: none; font-weight: 900; letter-spacing: -2px; }
.logo span { color: var(--primary); }
.nav-links a { color: var(--text-white); text-decoration: none; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; margin-left: 3.5rem; letter-spacing: 2px; }
.nav-cta { background: var(--primary); color: white !important; padding: 0.8rem 2rem; border-radius: 2px; box-shadow: 0 0 30px rgba(147,51,234,0.3); border-right: 5px solid white; }

/* HERO (Zero-Shade) */
.hero-sec { height: 100vh; display: flex; align-items: center; position: relative; background: #050505; border-bottom: 1px solid #111; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-family: var(--font-heading); font-size: 5rem; line-height: 1; margin-bottom: 2.5rem; color: white; text-transform: uppercase; letter-spacing: -4px; }
.hero-content p { font-size: 1.2rem; color: #aaa; max-width: 500px; padding-left: 2rem; border-left: 4px solid var(--primary); }
.hero-img { height: 80vh; background: var(--slate-night); border-radius: 4px; border: 1px solid #222; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.2) contrast(1.1); }

/* SERVICE CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.ev-card { background: #0A0A0A; padding: 4.5rem; border: 1px solid #111; transition: 0.4s; position: relative; }
.ev-card:hover { transform: translateY(-10px); border-color: var(--primary); background: #0F0F0F; }
.ev-card::after { content: ''; position: absolute; top:0; left:0; width:100%; height:4px; background: var(--primary); transform: scaleX(0); transition: 0.4s; }
.ev-card:hover::after { transform: scaleX(1); }
.ev-icon { font-size: 3.5rem; margin-bottom: 2rem; display: block; filter: drop-shadow(0 0 15px var(--primary)); }
.ev-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1.5rem; line-height: 1; text-transform: uppercase; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.price-card { background: #0A0A0A; padding: 4rem 3rem; border: 1px solid #111; position: relative; }
.price-card.featured { border-color: var(--primary); }
.price-card h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 1rem; color: var(--primary); text-transform: uppercase; }
.price-card .amount { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 2rem; letter-spacing: -2px; }

/* PROMINENT CTA */
.prominent-cta { background: var(--midnight); color: white; padding: 12rem 0; text-align: center; border-top: 1px solid #111; }
.prominent-cta h2 { font-family: var(--font-heading); font-size: 4rem; line-height: 1; margin-bottom: 2.5rem; text-transform: uppercase; letter-spacing: -4px; }
.enquiry-form { max-width: 900px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.enquiry-form input, select { padding: 1.5rem; background: #0A0A0A; border: 1px solid #222; color: white; font-weight: 700; width: 100%; }
.enquiry-form button { grid-column: span 3; background: var(--primary); color: white; padding: 1.6rem; border: none; font-family: var(--font-heading); font-size: 1rem; cursor: pointer; transition: 0.3s; text-transform: uppercase; }
.enquiry-form button:hover { background: #7C2ACD; box-shadow: 0 0 50px rgba(147,51,234,0.5); }

/* AI CONCIERGE (Events Edition) */
#concierge-trigger { position: fixed; bottom: 35px; right: 35px; width: 65px; height: 65px; background: var(--primary); border-radius: 2px; display: flex; align-items: center; justify-content: center; z-index: 2000; box-shadow: 0 0 30px rgba(147,51,234,0.5); color: white; cursor: pointer; }
#concierge-window { position: fixed; bottom: 120px; right: 35px; width: 400px; background: #050505; box-shadow: 0 30px 100px rgba(0,0,0,0.8); opacity: 0; pointer-events: none; transition: 0.4s; transform: translateY(20px); z-index: 2000; border: 1px solid #111; }
#concierge-window.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.concierge-header { background: #0A0A0A; color: white; padding: 2.5rem; display: flex; align-items: center; gap: 1.5rem; border-bottom: 4px solid var(--primary); }
.concierge-body { height: 440px; background: #050505; padding: 2.5rem; overflow-y: auto; }
.chat-item { margin-bottom: 2rem; padding: 1.5rem; border-radius: 4px; font-size: 0.95rem; line-height: 1.5; }
.ig-msg { background: #0F0F0F; border-left: 4px solid var(--primary); color: white; font-weight: 700; }
.user-msg { background: var(--primary); color: white; margin-left: 2rem; }

@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-grid, .card-grid, .pricing-grid, .enquiry-form { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.5rem; }
    .enquiry-form button { grid-column: span 1; }
}
