/* Root Variables for Theming */
:root {
    /* Brand Colors from User Spec */
    --deep-ledge-blue: #0C1821;
    --solid-slate-grey: #4A5868;
    
    /* Solar Theme (Default for Ledgerock) */
    --bg-color: #f8fafc;
    --text-primary: #0C1821;
    --text-secondary: #4A5868;
    --accent-color: #0C1821; 
    --accent-glow: rgba(12, 24, 33, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(12, 24, 33, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

/* Lunar (Dark) Theme - Fallback/Toggle */
body.lunar-mode {
    --bg-color: #050a15;
    --text-primary: #e0e6ed;
    --text-secondary: #94a3b8;
    --accent-color: #00d4ff; 
    --accent-glow: rgba(0, 212, 255, 0.6);
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Global Header */
.global-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-lockup .logo-img { height: 50px; border-radius: 8px; }
.center-nav { display: flex; gap: 2rem; font-weight: 600; }
.center-nav a:hover { color: var(--accent-color); opacity: 0.8; }
.header-cta { display: flex; align-items: center; }

/* Glassmorphic Utilities */
.glassmorphic-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}
.neon-glow {
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Buttons */
button { font-family: inherit; cursor: pointer; border: none; transition: 0.3s; }
.primary-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    background: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
}
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px var(--accent-glow); }
.secondary-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}
.secondary-btn:hover { background: var(--glass-border); }

/* Hero Section */
.hero-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    padding: 4rem;
}
.badges { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.pill-tag {
    font-size: 0.85rem; font-weight: bold; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 50px;
    background: rgba(255,255,255,0.1); border: 1px solid var(--glass-border);
}
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; margin-bottom: 1rem; color: var(--text-primary); }
.hero-content h1 .highlight { color: var(--accent-color); }
.hero-sub { font-size: 1.2rem; margin-bottom: 2rem; }
.action-buttons { display: flex; gap: 1rem; justify-content: center; }

/* Trust Banner */
.trust-banner {
    background: var(--accent-color);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-weight: bold;
}
.trust-banner .dot { opacity: 0.5; }

/* Services Section */
.services-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.services-section h2 { font-size: 2.5rem; margin-bottom: 3rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.service-card { padding: 2rem; text-align: center; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); }
.service-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    gap: 4rem;
}
.about-content { flex: 1; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 2rem; font-size: 1.1rem; color: var(--text-secondary); }
.about-image { flex: 1; }
.about-image img { border-radius: 16px; box-shadow: var(--card-shadow); object-fit: cover; aspect-ratio: 4/3; }

/* Gallery */
.gallery-section { padding: 0 2rem 5rem; max-width: 1200px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.gallery-grid img { width: 100%; border-radius: 16px; aspect-ratio: 16/9; object-fit: cover; box-shadow: var(--card-shadow); }

/* Final CTA */
.final-cta {
    background: var(--solid-slate-grey);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}
.final-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.final-cta p { font-size: 1.2rem; margin-bottom: 2rem; }
.cta-btn {
    background: #fff;
    color: var(--deep-ledge-blue);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: bold;
}
.cta-btn:hover { background: #f0f0f0; transform: scale(1.05); }

/* Site Footer (Phoenix Layout) */
.site-footer {
    background-color: var(--deep-ledge-blue);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}
.site-footer p {
    margin: 0 0 0.5rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}
.footer-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.contact-item:hover { color: var(--accent-color); }
.contact-item svg { stroke: var(--accent-color); }
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-top.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-right { text-align: right; }
.fluxive-link {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    transition: opacity 0.3s;
}
.fluxive-link:hover { opacity: 0.8; }
.powered-by { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; }
.operators-slogan { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; color: var(--accent-color); }

/* Responsive */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-section { flex-direction: column; }
    .footer-columns { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .global-header { flex-direction: column; gap: 1rem; padding: 1rem; }
    .center-nav { flex-wrap: wrap; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}
