:root {
    --primary: #042D23; /* Deep Emerald */
    --accent: #10B981; /* Financial Green */
    --bg-charcoal: #12181F; /* Slate Charcoal */
    --text-ivory: #F3F4F6;
    --text-dim: #9CA3AF;
    --font-main: 'Public Sans', sans-serif;
    --font-heading: 'IBM Plex Serif', serif;
}

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

.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: 2rem 0; transition: all 0.4s; }
.nav-box { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 2.2rem; color: var(--primary); text-decoration: none; font-weight: 700; letter-spacing: -1px; }
.logo span { color: var(--accent); }
.nav-links a { color: var(--primary); text-decoration: none; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; margin-left: 3.5rem; letter-spacing: 0.5px; }
.nav-cta { background: var(--primary); color: white !important; padding: 0.8rem 2rem; border-radius: 4px; border-left: 4px solid var(--accent); }

/* HERO (Zero-Shade) */
.hero-sec { height: 100vh; display: flex; align-items: center; background: #fdfdfd; border-bottom: 2px solid #eee; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.hero-content h1 { font-family: var(--font-heading); font-size: 6.5rem; line-height: 1; margin-bottom: 2.5rem; color: var(--primary); }
.hero-content p { font-size: 1.2rem; color: #555; max-width: 550px; background: rgba(16,185,129,0.05); padding: 2rem; border-left: 5px solid var(--accent); }
.hero-img { height: 80vh; background: var(--bg-charcoal); overflow: hidden; border-radius: 20px; box-shadow: 0 40px 80px rgba(4,45,35,0.1); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

/* SERVICE BLOCKS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.ca-card { background: white; padding: 4rem; border: 1px solid #eee; transition: 0.4s; position: relative; overflow: hidden; }
.ca-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.ca-card::after { content:''; position:absolute; top:0; left:0; width:5px; height:100%; background:var(--accent); transform: scaleY(0); transition:0.4s; origin:top; }
.ca-card:hover::after { transform: scaleY(1); }
.ca-icon { font-size: 3rem; margin-bottom: 2rem; display: block; }
.ca-card h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary); }

/* PRICING TIERS */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.price-card { background: var(--bg-charcoal); color: white; padding: 4.5rem 3rem; text-align: center; border-radius: 4px; transition: 0.4s; }
.price-card.featured { background: var(--primary); transform: scale(1.05); z-index: 2; border: 2px solid var(--accent); }
.price-card h4 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1rem; }
.price-card .amount { font-size: 3.5rem; font-weight: 900; color: var(--accent); margin-bottom: 0.5rem; }
.price-features { list-style: none; margin: 3rem 0; text-align: left; opacity:0.8; font-size: 0.95rem; }
.price-features li { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.8rem; }
.price-features li::before { content:'✔'; color:var(--accent); font-weight:900; }

/* PROMINENT CTA */
.prominent-cta { background: var(--primary); color: white; padding: 10rem 0; text-align: center; }
.prominent-cta h2 { font-family: var(--font-heading); font-size: 5rem; margin-bottom: 2rem; }
.enquiry-form { max-width: 900px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.enquiry-form input, select { padding: 1.4rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; font-weight: 700; width: 100%; }
.enquiry-form button { grid-column: span 3; background: var(--accent); color: white; padding: 1.5rem; border: none; font-weight: 900; text-transform: uppercase; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.enquiry-form button:hover { background: #059669; }

/* AI CONCIERGE (Emerald Edition) */
#concierge-trigger { position: fixed; bottom: 35px; right: 35px; width: 65px; height: 65px; background: var(--accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; z-index: 2000; box-shadow: 0 15px 40px rgba(16,185,129,0.3); color: white; cursor: pointer; }
#concierge-window { position: fixed; bottom: 120px; right: 35px; width: 400px; background: white; box-shadow: 0 30px 100px rgba(0,0,0,0.2); opacity: 0; pointer-events: none; transition: 0.4s; transform: translateY(20px); z-index: 2000; border: 1px solid #eee; }
#concierge-window.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.concierge-header { background: var(--primary); color: white; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; border-left: 8px solid var(--accent); }
.concierge-body { height: 420px; background: #F9FAFB; padding: 2.5rem; overflow-y: auto; }
.chat-item { margin-bottom: 2rem; padding: 1.5rem; border-radius: 4px; font-size: 1rem; border: 1px solid #E5E7EB; }
.ig-msg { background: white; color: var(--primary); font-weight: 600; }
.user-msg { background: var(--bg-charcoal); 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: 4rem; }
    .enquiry-form button { grid-column: span 1; }
}
