:root {
    --navy: #0d1b2a;
    --navy-overlay: rgba(13, 27, 42, 0.78);
    --gold: #f4a623;
    --gold-hover: #e09510;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --section-light: #f8f9fa;
    --section-dark: #0d1b2a;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.10);
    --border-radius: 12px;
}

/* ── Reset / Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    margin: 0;
}

/* ── Hero ───────────────────────────────────── */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    background: var(--navy-overlay);
    padding: 80px 0 60px;
}

.min-vh-hero {
    min-height: 70vh;
}

.hero-headline {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-small-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-journal-img {
    max-height: 420px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

/* ── CTA Button ─────────────────────────────── */
.btn-cta {
    background: var(--gold);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--gold-hover);
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* ── Sections ───────────────────────────────── */
.section-light {
    background: var(--section-light);
}

.section-dark {
    background: var(--section-dark);
}

.section-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-heading-light {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-body {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.section-body-light {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* ── Feature Cards ──────────────────────────── */
.feature-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    color: #ffffff;
    height: 100%;
    transition: background 0.2s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.12);
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.feature-card p {
    color: rgba(255,255,255,0.80);
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--gold);
}

/* ── Testimonials ───────────────────────────── */
.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--gold);
    height: 100%;
}

.testimonial-text {
    font-size: 0.97rem;
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── Form Section ───────────────────────────── */
.section-form {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
}

.form-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.form-heading {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtext {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-privacy-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.form-control-lg {
    border-radius: 8px;
    border: 1.5px solid #dee2e6;
    padding: 12px 16px;
}

.form-control-lg:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(244,166,35,0.25);
}

/* ── Thank You Page ─────────────────────────── */
.thankyou-section {
    background: var(--section-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thankyou-icon {
    font-size: 4rem;
    color: #28a745;
}

.thankyou-heading {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thankyou-body {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.75;
}

/* ── Footer ─────────────────────────────────── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    padding: 32px 0;
    font-size: 0.9rem;
}

.site-footer p { margin-bottom: 0.25rem; }

.site-footer a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.site-footer a:hover { color: #ffffff; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-text-col { text-align: center; }
    .hero-overlay { padding: 50px 0 40px; }
    .min-vh-hero { min-height: auto; }
}

@media (max-width: 575.98px) {
    .hero-journal-img { max-height: 280px; }
}
