:root {
    --primary: #0f5d46;
    --primary-dark: #0a3e30;
    --primary-light: #dff3eb;
    --secondary: #c8a951;
    --secondary-dark: #8f7430;
    --accent: #f7f3e8;
    --surface: #ffffff;
    --surface-alt: #f7f9fc;
    --text: #1b1f23;
    --muted: #677281;
    --border: #d9e1ea;
    --danger: #b42318;
    --success: #157347;
    --warning: #b58105;
    --info: #0b7285;
    --shadow: 0 18px 40px rgba(16, 35, 52, 0.08);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --transition: all 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--surface-alt);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading.center {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    font-weight: 700;
}

.section-heading h1,
.section-heading h2,
.section-heading h3,
.page-banner h1,
.hero-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    margin: 0.5rem 0 1rem;
    color: #102334;
}

.section-heading p,
.hero-text,
.page-banner p {
    color: var(--muted);
    margin: 0;
}

.topbar {
    background: #0c1d2b;
    color: #f5f7fa;
    font-size: 0.92rem;
}

.topbar-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.55rem 0;
}

.topbar-verse {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.topbar-label {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.topbar a {
    color: #f5f7fa;
}

.topbar-links {
    display: flex;
    gap: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15, 93, 70, 0.08);
    transition: var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(16, 35, 52, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 84px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.logo-text,
.footer-logo div:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-weight: 800;
    color: #102334;
}

.logo-sub {
    font-size: 0.86rem;
    color: var(--muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}

.nav-link,
.nav-dropdown > a {
    color: #193141;
    font-weight: 600;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown > a:hover,
.nav-dropdown.active > a {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0.65rem;
    display: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 0.9rem;
    border-radius: 10px;
    color: #193141;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: var(--surface-alt);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #102334;
    margin: 5px auto;
    transition: var(--transition);
}

.hero {
    position: relative;
    overflow: hidden;
    background: #0c1d2b;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide.active {
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 29, 43, 0.82), rgba(12, 29, 43, 0.46));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-copy {
    max-width: 720px;
    color: #fff;
}

.hero-kicker,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-kicker {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: #fff;
}

.hero-text {
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    font-size: 1.05rem;
}

.hero-actions,
.stack-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.slider-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    display: flex;
    gap: 0.6rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--secondary);
}

.btn,
button.btn,
input[type='submit'].btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
}

.btn-outline {
    border-color: var(--border);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    background: var(--surface-alt);
    color: var(--text);
}

.hero .btn-outline,
.page-banner .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.hero .btn-outline:hover,
.page-banner .btn-outline:hover {
    background: rgba(255,255,255,0.12);
}

.page-banner {
    background: linear-gradient(135deg, #0c1d2b, #0f5d46);
    color: #fff;
    padding: 4.75rem 0 4rem;
}

.page-banner h1,
.page-banner p {
    color: #fff;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stat-card,
.schedule-card,
.countdown,
.alert,
.panel {
    background: var(--surface);
    border: 1px solid rgba(15, 93, 70, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(15, 93, 70, 0.09);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.badge {
    background: var(--accent);
    color: var(--secondary-dark);
}

.badge-success {
    background: #eaf7ef;
    color: var(--success);
}

.badge-warning {
    background: #fff5db;
    color: var(--warning);
}

.badge-info {
    background: #e8f7fb;
    color: var(--info);
}

.badge-secondary,
.badge-muted {
    background: #eef2f6;
    color: #516071;
}

.alert {
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #eaf7ef;
    color: var(--success);
}

.alert-danger {
    background: #fdecec;
    color: var(--danger);
}

.alert-warning {
    background: #fff4db;
    color: var(--warning);
}

.alert-info {
    background: #e8f7fb;
    color: var(--info);
}

.form-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group.full,
.form-grid .full {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    color: #193141;
}

.input,
.textarea,
select,
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='date'],
input[type='password'],
input[type='number'],
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font: inherit;
    transition: var(--transition);
}

.textarea,
textarea {
    min-height: 140px;
    resize: vertical;
}

.input:focus,
.textarea:focus,
select:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(15, 93, 70, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 93, 70, 0.1);
}

.help-text,
.form-error {
    font-size: 0.9rem;
}

.form-error {
    color: var(--danger);
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 93, 70, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #edf1f5;
    vertical-align: top;
}

th {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    background: #fbfcfd;
}

.pagination {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.page-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border);
    font-weight: 700;
}

.page-link.active,
.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.countdown {
    padding: 1.5rem;
}

.countdown-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.countdown-block {
    text-align: center;
    padding: 1rem;
    border-radius: 16px;
    background: var(--surface-alt);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.countdown-label {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.schedule-grid,
.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

.schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.schedule-card {
    padding: 1.5rem;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.25rem;
}

.carousel-track > * {
    scroll-snap-align: start;
}

.faq-item {
    border-bottom: 1px solid #e7edf3;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1.2rem 0;
    text-align: left;
    font: inherit;
    font-weight: 700;
    color: #193141;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding-bottom: 1.25rem;
    color: var(--muted);
}

.faq-item.open .faq-answer {
    display: block;
}

.site-footer {
    background: #0c1d2b;
    color: #d8e0e8;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

.footer-col h4,
.site-footer strong {
    color: #fff;
}

.site-footer a {
    color: #d8e0e8;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li + li {
    margin-top: 0.65rem;
}

.footer-verse,
.footer-text {
    color: rgba(216, 224, 232, 0.85);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a,
.whatsapp-float {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1001;
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    width: auto;
    padding: 0 1.1rem;
    border-radius: 999px;
    height: 44px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
    background: #f5f8fb;
}

.admin-sidebar {
    background: #102334;
    color: #dbe6f0;
    padding: 2rem 1.2rem;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-sidebar a {
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    color: #dbe6f0;
    font-weight: 600;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.admin-main {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    gap: 1.25rem;
}

.stat-card {
    padding: 1.4rem;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #102334;
}

.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

.embed-wrap {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: var(--radius);
    background: #0c1d2b;
}

.embed-wrap iframe,
.embed-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1080px) {
    .main-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        background: #fff;
        border-radius: 18px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 0.9rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav .nav-link,
    .main-nav .nav-dropdown > a {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        background: var(--surface-alt);
        margin-top: 0.25rem;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: inline-block;
    }

    .footer-grid,
    .grid-4,
    .stats-grid,
    .schedule-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .form-grid,
    .countdown-grid,
    .gallery-grid,
    .footer-grid,
    .schedule-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-inner {
        min-height: 76px;
    }

    .hero-slide {
        height: auto;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .topbar-inner,
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        width: min(var(--container), calc(100% - 1.25rem));
    }
}

.contact-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--muted);
}

.contact-list li {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.section-muted {
    background: var(--surface-alt);
}

.content-card-body {
    padding: 1.4rem;
}

.section-heading.left {
    text-align: left;
    margin-inline: 0;
}

.schedule-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.schedule-card,
.schedule-grid .card {
    padding: 1.5rem;
}

@media (max-width: 1080px) {
    .schedule-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

.logo-img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
}

.footer-logo .logo-img {
    width: 44px;
    height: 44px;
}

/* ========== UTILITY CLASSES ========== */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.font-weight-400 { font-weight: 400; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }

.d-none { display: none; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: var(--radius-sm); }

.shadow { box-shadow: var(--shadow); }

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-surface-alt { background: var(--surface-alt); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* ========== IMPROVED CARD STYLES ========== */

.card h2,
.card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: #102334;
}

.card p,
.card li {
    margin-bottom: 0.6rem;
}

.card p:last-child {
    margin-bottom: 0;
}

.card a {
    font-weight: 600;
}

/* ========== IMPROVED FORM STYLES ========== */

form .form-grid .form-group:last-child {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.form-group label .required {
    color: var(--danger);
    font-weight: 700;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='date'],
input[type='password'],
input[type='number'],
textarea,
select {
    font-size: 1rem;
}

input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='tel']::placeholder,
input[type='number']::placeholder,
textarea::placeholder {
    color: #bcc1ca;
}

/* ========== IMPROVED BUTTON STYLES ========== */

.btn {
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-sm {
    min-height: 40px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.btn-lg {
    min-height: 56px;
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ========== SECTION IMPROVEMENTS ========== */

.section-intro {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro h2 {
    margin-top: 0;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.02rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ========== PAGE BANNER IMPROVEMENTS ========== */

.page-banner {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0;
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 0.8rem;
}

.page-banner p {
    font-size: 1.02rem;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CONTACT LIST IMPROVEMENTS ========== */

.contact-list strong {
    color: #102334;
    font-weight: 700;
}

.contact-list a {
    font-weight: 600;
    color: var(--primary);
}

.contact-list a:hover {
    color: var(--primary-dark);
}

/* ========== CONTENT SECTIONS ========== */

.info-box {
    background: var(--primary-light);
    border: 1px solid rgba(15, 93, 70, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.info-box h4 {
    margin-top: 0;
    color: var(--primary);
}

.info-box p {
    margin-bottom: 0;
    color: #193141;
}

.highlight-box {
    background: linear-gradient(135deg, #fafbfc, #f0f3f8);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}

.highlight-box strong {
    color: var(--secondary-dark);
}

/* ========== RESPONSIVE TEXT ADJUSTMENTS ========== */

h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

/* ========== DIVIDER ========== */

.divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

/* ========== LIST IMPROVEMENTS ========== */

.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.list-styled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ========== IMPROVED HERO ACTIONS ========== */

.hero-actions .btn {
    transition: var(--transition);
}

.hero-actions .btn:hover {
    transform: translateY(-2px);
}

/* ========== CONTENT CARD ========== */

.content-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(16, 35, 52, 0.06);
    transition: var(--transition);
}

.content-card:hover {
    box-shadow: 0 12px 24px rgba(16, 35, 52, 0.12);
    transform: translateY(-2px);
}

.content-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.content-card-body {
    padding: 1.5rem;
}

.content-card-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--surface-alt);
}

/* ========== MEDIA & GALLERY IMPROVEMENTS ========== */

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SECTION SPACING ========== */

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .page-banner .container {
        padding: 2.5rem 0;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
}

/* ========== PRINT STYLES ========== */

@media print {
    .site-header,
    .site-footer,
    .no-print,
    button,
    .btn {
        display: none;
    }

    .site-main {
        margin: 0;
    }
}

/* old side watermark styles removed */

/* ========== NAV SOCIAL ICONS ========== */

.nav-inner {
    gap: 0.75rem;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 900;
    color: #102334;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 0.15rem;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 2px solid var(--border);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border-left: 1px solid var(--border);
    padding-left: 1rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.nav-social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #193141;
    transition: var(--transition);
}

.nav-social-link:hover {
    background: var(--primary-light);
    color: var(--primary);
}

@media (max-width: 1080px) {
    .nav-social {
        display: none;
    }
}

/* ========== MEDIA CARDS ========== */

.media-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15,93,70,0.09);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(16,35,52,0.14);
    color: var(--text);
}

.media-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0c1d2b;
    overflow: hidden;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.media-card:hover .media-thumb img {
    transform: scale(1.05);
}

.media-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,0.25);
    transition: var(--transition);
}

.media-card:hover .media-play {
    background: rgba(0,0,0,0.45);
}

.live-badge {
    background: #ff0000;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.media-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.media-info h3 {
    font-size: 0.98rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #102334;
    line-height: 1.4;
}

.media-info p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 0.75rem;
    flex: 1;
    line-height: 1.6;
}

.media-yt-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ff0000;
    margin-top: auto;
}

.media-card:hover .media-yt-link {
    text-decoration: underline;
}

/* ========== SLIDER FULL WATERMARK OVERLAY ========== */

.slide-watermark-overlay { display: none; }

.hero-slide {
    position: relative;
}

.slide-wm-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    background: #0c1d2b;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow: hidden;
    padding: 0.4rem;
    z-index: 4;
}

.slide-wm-left  { left: 0; }
.slide-wm-right { right: 0; }

.wm-cell {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    padding: 0.42rem 0.3rem;
    box-sizing: border-box;
}

.wm-cell:nth-child(even) {
    padding-left: 1rem;
}

.wm-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.35);
    flex-shrink: 0;
    display: block;
}

.wm-text {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .slide-wm-panel { width: 60px; }
    .wm-text { display: none; }
    .wm-logo { width: 24px; height: 24px; }
}

@media (max-width: 600px) {
    .slide-wm-panel { display: none; }
}
