/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-navy: #1C355E;
    --secondary-grey: #A8A9AD;
    --accent-blue: #0078D4;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f6f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
}

a { text-decoration: none; }
ul { list-style: none; }

nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
}

.logo span { color: var(--secondary-grey); }

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--primary-navy);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent-blue); }

.btn-nav {
    background-color: var(--primary-navy);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}
.btn-nav:hover { background-color: var(--accent-blue); }

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy) !important;
    padding: 0.4rem 1.1rem;
    border-radius: 4px;
}
.btn-outline:hover {
    background-color: var(--primary-navy);
    color: white !important;
}

.hero {
    background: linear-gradient(rgba(28, 53, 94, 0.9), rgba(28, 53, 94, 0.8)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.btn-hero {
    background-color: var(--accent-blue);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-3px);
    background-color: #006ebd;
}

.stats-bar {
    background: var(--primary-navy);
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
}
.stat-item { flex: 1; min-width: 150px; padding: 0.5rem; }
.stat-item .stat-number { font-size: 2.8rem; font-weight: 800; color: var(--accent-blue); display: block; line-height: 1; margin-bottom: 0.4rem; }
.stat-item .stat-label { font-size: 0.85rem; font-weight: 600; color: #e0e0e0; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.25rem; display: block; }

.services {
    padding: 5rem 10%;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.section-header p { color: #666; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-navy);
    transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-5px); }

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.service-card li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
    color: #555;
}

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; text-align: center; line-height: 1; }

.about {
    padding: 5rem 10%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
}

.about-text { flex: 1; }
.about-image { flex: 1; }

.about-image img {
    display: block;
    width: min(100%, 460px);
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.blockquote {
    border-left: 4px solid var(--secondary-grey);
    padding-left: 1rem;
    font-style: italic;
    color: #555;
    margin: 1.5rem 0;
}

.contact {
    padding: 5rem 10%;
    background-color: var(--primary-navy);
    color: white;
    text-align: center;
}

.contact h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact p { max-width: 600px; margin: 0 auto 2rem auto; font-size: 1.1rem; }

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-secondary:hover { background: white; color: var(--primary-navy); }

/* --- WHAT HAPPENS ON THE CALL --- */
.call-info {
    margin-top: 1.5rem;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: #e0e0e0;
}
.call-info p { font-weight: 600; color: white; margin-bottom: 0.5rem; }
.call-info ul { padding-left: 1.2rem; }
.call-info li { list-style: disc; margin-bottom: 0.3rem; }

footer {
    background: #112240;
    color: #8892b0;
    text-align: center;
    padding: 2rem;
}

footer a { color: #A8A9AD; text-decoration: underline; }
footer a:hover { color: white; }

/* --- FOOTER LINKS --- */
.footer-links { margin: 0.75rem 0; }
.footer-links a { color: #A8A9AD; margin: 0 0.75rem; text-decoration: underline; }
.footer-links a:hover { color: white; }

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #112240;
    color: #cdd6f4;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 9999;
    font-size: 0.9rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}
.cookie-banner a { color: #A8A9AD; text-decoration: underline; }
.cookie-banner button {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}
.cookie-banner button:hover { background: #006ebd; }

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }


/* --- INSIGHTS SECTION --- */
.insights {
    padding: 5rem 10%;
    background: #F2F4F8;
}
.insights h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}
.insights .section-sub {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1rem;
}
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
    .insights-grid { grid-template-columns: 1fr; }
}
.insight-stat {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.insight-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
}
.insight-stat .stat-label {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.4rem;
    line-height: 1.5;
}
.insights-cta {
    text-align: center;
    margin-top: 1rem;
}
.insights-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border: 2px solid var(--accent-blue);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.insights-cta a:hover {
    background: var(--accent-blue);
    color: white;
}
.insights-source {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* --- SUBPAGE HERO + CONTACT FORM (added in Phase 1) --- */
.page-hero {
    background: var(--primary-navy);
    color: #fff;
    text-align: center;
    padding: 4rem 10% 3rem;
}
.page-hero h1 { font-size: 2.8rem; margin-bottom: 0.75rem; }
.page-hero p { max-width: 640px; margin: 0 auto; color: #e0e0e0; font-size: 1.15rem; }

.contact-layout {
    padding: 4rem 10%;
    background: var(--bg-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
}
.contact-panel h2 { color: var(--primary-navy); font-size: 1.6rem; margin-bottom: 1rem; }
.contact-panel p { color: #555; margin-bottom: 1rem; }
.contact-panel ul { padding-left: 1.2rem; margin: 1rem 0; }
.contact-panel li { list-style: disc; margin-bottom: 0.4rem; color: #555; }

.form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 2rem;
}
.form-card label {
    display: block;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.form-card input, .form-card textarea {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid #cdd3db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}
.form-card input:focus, .form-card textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}
.form-card button {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}
.form-card button:hover { background: #006ebd; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .about { flex-direction: column; }
    .contact-buttons { flex-direction: column; }

    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.1rem; padding: 0.3rem 0; }
    .page-hero h1 { font-size: 2.2rem; }
}
