/* ═══════════════════════════════════════════════════════════════
   LiveOnBigIsland.com — Main Stylesheet
   Hawaii-inspired, professional real estate design
   ═══════════════════════════════════════════════════════════════ */

:root {
    --color-ocean: #006994;
    --color-ocean-light: #0088bb;
    --color-sand: #F5E6C8;
    --color-lava: #1a1a1a;
    --color-palm: #2D6A2D;
    --color-sunset: #E8754A;
    --color-plumeria: #F7C5D5;
    --bg-page: #FAFAF7;
    --bg-card: #FFFFFF;
    --radius: 12px;
    --shadow: 0 2px 20px rgba(0,105,148,0.08);
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--color-lava);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--color-ocean); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-ocean-light); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Navigation ────────────────────────────────────────────── */
.main-nav {
    background: #fff;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-lava);
    white-space: nowrap;
}
.nav-logo:hover { color: var(--color-ocean); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-lava);
}

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

.nav-categories {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-categories a, .nav-dropdown-btn {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.nav-categories a:hover, .nav-dropdown-btn:hover { color: var(--color-ocean); }

.nav-dropdown { position: relative; }

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-content { display: block; }

.nav-dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #333;
}
.nav-dropdown-content a:hover { background: #f5f5f5; color: var(--color-ocean); }

.nav-cta {
    background: var(--color-sunset);
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
.nav-cta:hover { background: #d4643a; }

/* ── Hero Section ──────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #006994 0%, #003d5c 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1542259009477-d625272157b7?w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem;
    max-width: 700px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    background: var(--color-sunset);
    color: #fff !important;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: #d4643a; transform: translateY(-1px); }

/* ── Why Section ───────────────────────────────────────────── */
.why-section { padding: 4rem 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-lava);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-tile {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.why-tile:hover { transform: translateY(-3px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-tile h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; font-size: 1.1rem; }
.why-tile p { color: #555; font-size: 0.9rem; line-height: 1.6; }

/* ── Featured Post ─────────────────────────────────────────── */
.featured-section { padding: 3rem 0; }
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.featured-image {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}
.featured-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.featured-body h3 a { color: var(--color-lava); }
.featured-body h3 a:hover { color: var(--color-ocean); }
.featured-body p { color: #555; margin-bottom: 1rem; font-size: 0.95rem; }

/* ── Category Grid ─────────────────────────────────────────── */
.categories-section { padding: 3rem 0; background: #f0f4f3; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.cat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-ocean);
    transition: transform 0.2s, border-color 0.2s;
}
.cat-card:hover { transform: translateY(-2px); border-color: var(--color-sunset); }
.cat-name { display: block; font-weight: 600; color: var(--color-lava); font-size: 0.95rem; }
.cat-count { display: block; font-size: 0.8rem; color: #888; margin-top: 0.25rem; }

/* ── Category Badge ────────────────────────────────────────── */
.category-badge {
    display: inline-block;
    background: var(--color-ocean);
    color: #fff;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

/* ── Posts Grid ────────────────────────────────────────────── */
.latest-section { padding: 3rem 0; }
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: 0 4px 30px rgba(0,105,148,0.12); }

.post-card-image {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.post-card-body { padding: 1.25rem; }
.post-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.post-card-body h3 a { color: var(--color-lava); }
.post-card-body h3 a:hover { color: var(--color-ocean); }
.post-card-body p { color: #555; font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.75rem; }

.post-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

.read-more {
    color: var(--color-sunset);
    font-weight: 600;
    font-size: 0.85rem;
}
.read-more:hover { color: #d4643a; }

/* ── Post Page ─────────────────────────────────────────────── */
.post-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--bg-page) 100%);
}

.post-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: #888;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: var(--color-ocean); }
.breadcrumb span { margin: 0 0.3rem; }

.post-header { margin-bottom: 2rem; }
.post-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}
.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #888;
}
.reading-time::before { content: '·'; margin-right: 0.5rem; }

/* ── Post Content ──────────────────────────────────────────── */
.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-lava);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-sand);
}

.post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
}

.post-content p { margin-bottom: 1.25rem; }

.post-content img {
    width: 100%;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.post-content ul, .post-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; }

.post-content a { color: var(--color-ocean); font-weight: 500; text-decoration: underline; }

.post-content strong { color: var(--color-lava); }

/* TL;DR Box */
.tldr-box {
    background: var(--color-sand);
    border-left: 4px solid var(--color-ocean);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TOC Box */
.toc-box {
    background: var(--bg-card);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.toc-box strong { font-size: 1rem; display: block; margin-bottom: 0.75rem; }
.toc-list {
    padding-left: 1.25rem;
    margin: 0;
}
.toc-list li { margin-bottom: 0.4rem; }
.toc-list a { color: var(--color-ocean); font-size: 0.9rem; }

/* FAQ Section */
.faq-section { margin: 0; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--color-lava);
}
.faq-item p { color: #444; }

/* ── Share Buttons ─────────────────────────────────────────── */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    margin-top: 2rem;
    font-size: 0.9rem;
}
.share-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    text-decoration: none;
}
.share-btn:hover { background: #f5f5f5; }

.author-credit {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: #888;
    border-bottom: 1px solid #eee;
}

/* ── Related Posts ─────────────────────────────────────────── */
.related-posts { margin-top: 2.5rem; }
.related-posts h3 { font-family: var(--font-heading); margin-bottom: 1rem; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.related-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-2px); }
.related-image { height: 120px; background-size: cover; background-position: center; background-color: #ddd; }
.related-card h4 { padding: 0.75rem; font-size: 0.85rem; line-height: 1.3; color: var(--color-lava); }

/* ── Lead Capture Widget ───────────────────────────────────── */
.lead-capture-widget {
    margin: 2.5rem 0;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,105,148,0.1);
    border: 1px solid rgba(0,105,148,0.15);
}

.lead-widget-header {
    background: linear-gradient(135deg, var(--color-ocean) 0%, #005577 100%);
    color: #fff;
    padding: 1.5rem 2rem;
}
.lead-widget-header h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.lead-widget-header p { font-size: 0.9rem; opacity: 0.9; line-height: 1.5; }

.lead-widget-inner { overflow: hidden; }

.quiz-step { padding: 1.5rem 2rem; }

.quiz-progress { text-align: center; margin-bottom: 1.5rem; }
.quiz-progress-dots { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.quiz-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: #e9ecef;
    color: #888;
    transition: all 0.3s;
}
.quiz-dot.active { background: var(--color-ocean); color: #fff; }
.quiz-dot.done { background: var(--color-palm); color: #fff; }
.quiz-progress-text { font-size: 0.85rem; color: #888; }

.quiz-question h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-lava);
}

.quiz-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quiz-pill {
    cursor: pointer;
    position: relative;
}
.quiz-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.quiz-pill span {
    display: inline-block;
    padding: 0.55rem 1rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    transition: all 0.2s;
    user-select: none;
}
.quiz-pill input:checked + span {
    border-color: var(--color-ocean);
    background: var(--color-ocean);
    color: #fff;
}
.quiz-pill:hover span { border-color: var(--color-ocean-light); }

/* Contact Step */
.contact-step { padding: 0 2rem 2rem; }
.contact-step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.contact-step-header h4 { color: var(--color-palm); font-size: 1.1rem; }

.lead-form { max-width: 500px; margin: 0 auto; }

.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: #333;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.form-group input:focus {
    outline: none;
    border-color: var(--color-ocean);
    box-shadow: 0 0 0 3px rgba(0,105,148,0.1);
}

.contact-pref-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.lead-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--color-sunset);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 0.5rem;
}
.lead-submit-btn:hover { background: #d4643a; transform: translateY(-1px); }
.lead-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.consent-group {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}
.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--color-sunset);
}

.lead-disclaimer {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.4;
}

.lead-success {
    text-align: center;
    padding: 2rem;
}
.success-icon { font-size: 3rem; margin-bottom: 0.5rem; }
.lead-success h4 { font-size: 1.25rem; color: var(--color-palm); margin-bottom: 0.5rem; }
.success-message { color: #555; font-size: 0.95rem; line-height: 1.5; }

.lead-error {
    background: #fee;
    color: #c00;
    padding: 0.65rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-align: center;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-ocean) 0%, #003d5c 100%);
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover no-repeat;
    opacity: 0.25;
}
.contact-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 3rem 1.5rem;
    max-width: 600px;
}
.contact-hero-content h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.75rem; }
.contact-hero-content p { font-size: 1.05rem; opacity: 0.9; }

.contact-page { padding: 3rem 0; }
.contact-widget-container { max-width: 700px; margin: 0 auto 2rem; }

.agent-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto 2rem;
}
.agent-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.agent-info h3 { font-size: 1.1rem; }
.agent-info p { font-size: 0.85rem; color: #555; }

.contact-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item p { font-size: 0.85rem; color: #666; margin-top: 0.15rem; }

/* ── Category Page ─────────────────────────────────────────── */
.category-page { padding: 2rem 0 4rem; }
.category-header { margin-bottom: 2rem; }
.category-header h1 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 0.25rem; }
.category-header p { color: #888; font-size: 0.95rem; }

/* ── Page Content (static pages) ───────────────────────────── */
.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}
.page-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
}
.page-content p { margin-bottom: 1rem; line-height: 1.7; }
.page-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.page-content li { margin-bottom: 0.4rem; }

.about-disclaimer {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #666;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--color-sunset);
    color: #fff !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary:hover { background: #d4643a; }

/* ── Error Pages ───────────────────────────────────────────── */
.error-page {
    text-align: center;
    padding: 6rem 1.5rem;
}
.error-content h1 { font-size: 5rem; color: var(--color-ocean); font-weight: 700; }
.error-content h2 { font-size: 1.5rem; margin: 1rem 0; }
.error-content p { color: #666; margin-bottom: 2rem; }

/* ── Empty State ───────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    color: #888;
}
.empty-state p { margin-bottom: 1.5rem; font-size: 1rem; }

/* ── Flash Messages ────────────────────────────────────────── */
.flash-messages { max-width: 1200px; margin: 0.5rem auto; padding: 0 1.5rem; }
.flash {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.flash-success { background: #d4edda; color: #155724; }
.flash-error { background: #f8d7da; color: #721c24; }
.flash-info { background: #cce5ff; color: #004085; }

/* ── Home Lead Section ─────────────────────────────────────── */
.home-lead-section { padding: 3rem 0 4rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--color-lava);
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

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

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: #aaa; font-size: 0.85rem; }
.footer-col a:hover { color: #fff; }
.footer-agent { color: #fff; }

.footer-disclaimer {
    border-top: 1px solid #333;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding-top: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }

    .nav-categories { flex-direction: column; align-items: flex-start; gap: 0.75rem; width: 100%; }
    .nav-cta { width: 100%; text-align: center; margin-top: 0.5rem; }

    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
    }
    .nav-dropdown:hover .nav-dropdown-content { display: block; }

    .featured-card { grid-template-columns: 1fr; }
    .featured-image { min-height: 200px; }

    .posts-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }

    .related-grid { grid-template-columns: 1fr; }

    .hero-section { min-height: 360px; }

    .quiz-options { flex-direction: column; }
    .quiz-pill span { display: block; text-align: center; }

    .contact-pref-options { flex-direction: column; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .post-hero { height: 250px; }
}

/* ═══ Post CTA Banners ═══ */
.post-cta-banner {
    margin: 1.5rem 0 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f4f1 100%);
    border: 2px solid var(--color-ocean);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.post-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.post-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.post-cta-text strong {
    font-size: 1.05rem;
    color: var(--color-lava);
}
.post-cta-text span {
    font-size: 0.9rem;
    color: #555;
}
.post-cta-btn {
    display: inline-block;
    background: var(--color-ocean);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.post-cta-btn:hover {
    background: #005577;
    transform: translateY(-1px);
    color: #fff;
}

.post-cta-box {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, var(--color-ocean) 0%, #005577 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    text-align: center;
}
.post-cta-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #fff;
}
.post-cta-box p {
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.post-cta-box-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.post-cta-btn-primary {
    background: #fff;
    color: var(--color-ocean);
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
}
.post-cta-btn-primary:hover {
    background: #f0f9ff;
    color: var(--color-ocean);
    transform: translateY(-2px);
}
.post-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
}
.post-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .post-cta-inner { flex-direction: column; text-align: center; }
    .post-cta-box { padding: 1.5rem 1.25rem; }
    .post-cta-box-buttons { flex-direction: column; align-items: center; }
}
