/* ===== CSS VARIABLES & DESIGN SYSTEM ===== */
:root {
    /* Brand Palette */
    --bg-dark: #0B1320; /* Midnight Blue */
    --bg-forest: #0F291E; /* Deep Forest Green */
    --accent-gold: #D4AF37; /* Warm Starlight Gold */
    --accent-gold-hover: #F2D888;
    
    /* Text & Typography */
    --text-light: #F0F4F2;
    --text-muted: #AAB8B1;
    --font-main: 'Poppins', sans-serif;
    
    /* Glassmorphism & UI Utilities */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    /* Layout */
    --radius: 16px;
    --max-width: 1320px;
    --section-spacing: 120px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Base Gradient Background applied to body */
.bg-animated {
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-forest) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3, h4 {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.narrow-container {
    max-width: 800px;
}

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

/* ===== GLASSMORPHISM UTILITY ===== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
    display: block;
    color: var(--accent-gold);
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #B89020 100%);
    color: #000;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 20px;
    z-index: 100;
    margin: 0 2rem;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
    padding: 1rem;
}

.hero-img {
    border-radius: calc(var(--radius) - 4px);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== GRID LAYOUTS ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-large {
    gap: 4rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-spacing) 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.card {
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.card-icon {
    height: 48px;
    margin-bottom: 1.5rem;
}

.card h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin: var(--section-spacing) auto;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===== PAGES: ABOUT & SERVICES ===== */
.page-content {
    padding: var(--section-spacing) 0;
}

.page-header {
    margin-bottom: 5rem;
}

.content-section {
    margin-bottom: var(--section-spacing);
}

.rounded-image {
    border-radius: var(--radius);
    width: 100%;
    box-shadow: var(--glass-shadow);
}

.text-block h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
}

.service-img {
    border-radius: calc(var(--radius) - 8px);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
}

.feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.form-section {
    margin-top: 4rem;
}

.contact-info {
    padding: 3rem;
}

.contact-info h2 {
    color: var(--accent-gold);
}

.info-block {
    margin-top: 2rem;
}

.info-block h4 {
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-form {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.input-group input, .input-group textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-light);
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition-smooth);
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.4);
}

.submit-btn {
    margin-top: 1rem;
    width: 100%;
}

/* ===== LEGAL & FAQ PAGES ===== */
.legal-document {
    padding: 4rem;
}

.legal-document h1 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.legal-document h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    color: var(--text-light);
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem 0;
    margin-top: auto;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
}