/* --- ULTRA PREMIUM DARK THEME --- */
:root {
    --bg-dark: #070707;
    --surface: #121212;
    --surface-hover: #1c1c1c;
    --accent: #d3bb7c; /* Luxury Gold */
    --accent-glow: rgba(211, 187, 124, 0.15);
    --text-main: #ffffff;
    --text-muted: #8c8c8c;
    --border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--accent);
    color: #000;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(7, 7, 7, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}
.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-main); }

.btn-login {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 10px 28px;
    border-radius: 4px; /* Sharp edges for corporate feel */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-login:hover {
    background: var(--accent);
    color: #000 !important;
    box-shadow: 0 0 25px var(--accent-glow);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
    z-index: 10;
    background: radial-gradient(circle at 50% 0%, #1a1a1a 0%, var(--bg-dark) 70%);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 1000px;
    color: #fff;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.hero h1 i {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.hero p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* --- SERVICES GRID --- */
.services {
    padding: 120px 8%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}
.service-card {
    padding: 50px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: transform 0.4s ease, background 0.4s ease;
    text-align: left;
}
.service-card:hover {
    transform: translateY(-10px);
    background: var(--surface-hover);
    border-color: rgba(255, 255, 255, 0.1);
}
.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}
.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

/* --- PRICING SECTION --- */
.pricing {
    padding: 120px 8%;
    background: #090909;
    border-top: 1px solid var(--border);
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    padding: 60px 50px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    text-align: left;
}
.pricing-card.premium {
    background: linear-gradient(180deg, #161616 0%, var(--surface) 100%);
    border: 1px solid rgba(211, 187, 124, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(1.02);
}
.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 5px;
}
.price {
    font-size: 48px;
    font-weight: 300;
    color: var(--accent);
    margin: 20px 0;
    font-family: var(--font-heading);
}
.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.pricing-card ul {
    list-style: none;
    margin: 30px 0 40px;
}
.pricing-card ul li {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.pricing-card ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}
.payment-note {
    font-size: 13px;
    color: #666;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    font-style: italic;
}

/* --- MEGA FOOTER --- */
.mega-footer {
    background: #030303;
    padding: 100px 8% 40px;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
}
.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 400px;
    line-height: 1.8;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; color: var(--text-muted); font-size: 14px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li strong { color: #aaa; display: block; margin-bottom: 5px; font-weight: 500;}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 13px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero { padding-top: 150px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-card.premium { transform: scale(1); }
}
