.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── STATE OVERVIEW ── */
.kerala-overview { background: var(--color-surface); border-radius: var(--radius-xl); border: 1.5px solid var(--color-border); margin-bottom: 60px; overflow: hidden; box-shadow: var(--shadow-card); }
.kerala-overview-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media(max-width:768px){ .kerala-overview-grid { grid-template-columns: 1fr; } }
.kerala-overview-img { min-height: 380px; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.kerala-overview-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.kerala-overview-body .section-label { color: var(--gold); }
.kerala-overview-body h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--teal-dark); margin-bottom: 20px; line-height: 1.25; }
.kerala-overview-body h2 em { font-style: italic; color: var(--spice); }
.kerala-overview-body p { font-size: 0.92rem; line-height: 1.85; color: var(--color-text-muted); margin-bottom: 14px; }
.kerala-overview-body p:last-of-type { margin-bottom: 0; }
.kerala-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.kerala-stat { text-align: center; padding: 16px 10px; background: var(--gold-pale); border-radius: var(--radius); border: 1px solid var(--color-border); }
.kerala-stat .stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--teal-dark); display: block; }
.kerala-stat .stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 2px; display: block; }

/* ── HIGHLIGHTS STRIP ── */
.kerala-highlights-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 14px; margin-bottom: 56px; }
.kerala-hl-item { background: var(--color-surface); border-radius: var(--radius-lg); padding: 22px 18px; border: 1.5px solid var(--color-border); text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.kerala-hl-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--color-border-teal); }
.kerala-hl-item .hl-icon { font-size: 2rem; margin-bottom: 10px; }
.kerala-hl-item h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--teal-dark); margin-bottom: 4px; }
.kerala-hl-item p { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.5; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold-bright); font-weight: 500; }

/* ── PAGE HERO OVERRIDE ── */
.page-hero { background-size: cover !important; background-position: center !important; }
.page-hero::after { background: var(--color-bg); }
.page-hero-content { position: relative; z-index: 1; padding-bottom: 40px; }
.page-hero h1 em { color: var(--gold-bright); }
.page-hero p { max-width: 600px; }

/* ── CTA BLOCK ── */
.custom-cta { margin-top: 56px; text-align: center; background: var(--grad-hero); border-radius: var(--radius-xl); padding: 56px 40px; }
.custom-cta h2 { font-family: var(--font-display); color: var(--white); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 12px; }
.custom-cta h2 em { color: var(--gold-bright); font-style: italic; }
.custom-cta p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; line-height: 1.8; font-size: 0.95rem; }

@media(max-width:768px) {
    .kerala-overview-body { padding: 32px 24px; }
    .kerala-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
}