:root {
    --navy: #000066;
    --gold: #FFD700;
    --white: #ffffff;
    --bg: #fdfdfd;
    --text-main: #000033;
    --text-muted: #555577;
    --border: rgba(0, 0, 102, 0.1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* --- Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    text-decoration: none;
    color: var(--navy);
    font-size: 1.4rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-list a:hover { opacity: 1; }

/* --- Mobile Navigation Logic --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1100;
        /* Shoves the toggle to the far right */
        margin-left: auto;
        margin-right: -10px;
    }

    .hamburger, .hamburger::before, .hamburger::after {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        content: '';
        transition: 0.3s;
        position: relative;
    }
    .hamburger::before { position: absolute; top: -8px; left: 0; }
    .hamburger::after { position: absolute; bottom: -8px; left: 0; }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-list.active { display: flex; }
}

@media (min-width: 769px) {
    .nav-toggle { display: none; }
}

/* --- Hero Section --- */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #ffffff 0%, #e6e6f2 100%);
    padding: 0 1rem;
    margin-top: 60px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.8rem;
}

.hero-meta {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
    font-weight: 500;
}

.hero-cta {
    background: var(--navy);
    color: var(--gold);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(0, 0, 102, 0.2);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 102, 0.3);
}

/* --- Container & Content --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4.5rem 2rem;
}

.section-label {
    color: var(--navy);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    margin-top: 0.8rem;
    margin-bottom: 2.8rem;
    color: var(--navy);
    line-height: 1.2;
}

/* --- Solutions Grid --- */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: 0.3s ease;
}

.solution-card:hover {
    transform: translateX(10px);
    background: var(--navy);
    color: white;
}

.solution-card:hover h3 { color: white; }

.solution-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--navy);
}

/* --- Contact & Footer --- */
.contact-card-modern {
    background: var(--navy);
    color: white;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 102, 0.15);
}

.contact-heading {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--navy) !important;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.2s ease;
}

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

/* --- Animations --- */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}