/* ============================================
   Simbanest Radio — Stylesheet
   Brand: Red #BE3238 | Navy #17174F | Black #0B0819 | White #FFFFFF
   No gradients. Solid colors only. Mobile-first.
   ============================================ */

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

:root {
    /* Primary */
    --red: #BE3238;
    --navy: #17174F;
    --black: #0B0819;
    --white: #FFFFFF;

    /* Secondary */
    --maroon: #80373A;
    --rose: #CA9596;
    --light-gray: #F4E9E9;
    --light-gray-alt: #FAF5F5;

    /* Functional */
    --body-bg: #FFFFFF;
    --body-text: #0B0819;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-pad: 80px;
    --radius: 12px;
    --radius-sm: 8px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(11, 8, 25, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 8, 25, 0.1);
    --shadow-lg: 0 8px 32px rgba(11, 8, 25, 0.12);

    /* Transitions */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--body-font);
    color: var(--body-text);
    background: var(--body-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--red);
}

ul {
    list-style: none;
}

/* ---------- Layout ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-pad) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
    gap: 16px;
}

.section-label {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--rose);
}

.section-heading {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-listen {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-listen:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-listen-sm {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-listen-sm:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--light-gray);
    color: var(--red);
    border-color: var(--light-gray);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-dark:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(11, 8, 25, 0.06);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 48px;
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--black);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-active::after {
    width: 100%;
}

.nav-active {
    color: var(--red);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 4px;
}

.mobile-nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--black);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.nav-active {
    background: var(--light-gray);
    color: var(--red);
}

.mobile-nav-listen {
    margin-top: 16px;
    justify-content: center;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 8, 25, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 998;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ---------- Hero ---------- */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 23, 79, 0.88);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
}

.now-on-air {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(190, 50, 56, 0.15);
    border: 1px solid rgba(190, 50, 56, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.on-air-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.on-air-label {
    font-weight: 600;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.on-air-show {
    color: var(--white);
    font-weight: 500;
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-red {
    color: var(--red);
}

.hero-blue {
    color: var(--white);
}

.hero-tagline {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose);
    font-style: italic;
    margin-bottom: 4px;
}

.hero-tagline-translation {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Player */
.hero-player {
    width: 100%;
}

.player-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--black);
    color: var(--white);
}

.player-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.player-card iframe {
    display: block;
    width: 100%;
}

.player-footer {
    padding: 10px 18px;
    background: var(--light-gray-alt);
    font-size: 0.8rem;
    color: var(--maroon);
}

.player-footer a {
    color: var(--red);
    font-weight: 600;
}

/* Equalizer Animation */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.equalizer span {
    width: 3px;
    background: var(--red);
    border-radius: 2px;
    animation: equalize 1.2s ease-in-out infinite;
}

.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.15s; }
.equalizer span:nth-child(3) { animation-delay: 0.3s; }
.equalizer span:nth-child(4) { animation-delay: 0.45s; }
.equalizer span:nth-child(5) { animation-delay: 0.6s; }

@keyframes equalize {
    0%, 100% { height: 4px; }
    50% { height: 20px; }
}

/* ---------- About Section ---------- */
.section-about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-paragraph {
    font-size: 1.05rem;
    color: var(--body-text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--navy);
}

/* About Visual (images + mission) */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-image-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-image-secondary {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.about-image-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.mission-card {
    background: var(--navy);
    color: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    color: var(--red);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ---------- Values Section ---------- */
.section-values {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border-top: 3px solid var(--red);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--red);
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.6;
}

/* ---------- Stats Section ---------- */
.section-stats {
    background: var(--navy);
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 16px;
}

.stat-value {
    display: block;
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ---------- Today's Schedule Preview ---------- */
.section-today {
    background: var(--white);
}

.schedule-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.schedule-preview-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--light-gray-alt);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--red);
    transition: all var(--transition);
}

.schedule-preview-item:hover {
    background: var(--light-gray);
    transform: translateX(4px);
}

.schedule-time {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    white-space: nowrap;
    min-width: 130px;
}

.schedule-info {
    flex: 1;
}

.schedule-show {
    font-family: var(--heading-font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.schedule-host {
    font-size: 0.85rem;
    color: var(--maroon);
}

.schedule-empty {
    text-align: center;
    padding: 40px;
    color: var(--body-text);
    font-size: 1.1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--red);
    font-size: 0.95rem;
    transition: gap var(--transition);
}

.link-arrow:hover {
    gap: 12px;
    color: var(--red);
}

/* Schedule Badges */
.schedule-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.schedule-badge-morning { background: #FFF3E0; color: #E65100; }
.schedule-badge-talk { background: #E3F2FD; color: #1565C0; }
.schedule-badge-music { background: #F3E5F5; color: #7B1FA2; }
.schedule-badge-youth { background: #E8F5E9; color: #2E7D32; }
.schedule-badge-sports { background: #FFF8E1; color: #F57F17; }
.schedule-badge-gospel { background: #F4E9E9; color: #80373A; }

/* ---------- Gallery Section ---------- */
.section-gallery {
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* ---------- CTA Section ---------- */
.section-cta {
    background: var(--red);
    padding: 64px 0;
}

.cta-inner {
    text-align: center;
    color: var(--white);
}

.cta-heading {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.cta-equalizer {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 36px;
    margin-bottom: 24px;
}

.cta-equalizer span {
    width: 4px;
    background: var(--white);
    border-radius: 2px;
    animation: equalize 1.2s ease-in-out infinite;
}

.cta-equalizer span:nth-child(1) { animation-delay: 0s; }
.cta-equalizer span:nth-child(2) { animation-delay: 0.1s; }
.cta-equalizer span:nth-child(3) { animation-delay: 0.2s; }
.cta-equalizer span:nth-child(4) { animation-delay: 0.3s; }
.cta-equalizer span:nth-child(5) { animation-delay: 0.4s; }
.cta-equalizer span:nth-child(6) { animation-delay: 0.5s; }
.cta-equalizer span:nth-child(7) { animation-delay: 0.6s; }

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 56px 0 48px;
    text-align: center;
}

.page-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Schedule Page ---------- */
.section-schedule {
    background: var(--white);
}

.schedule-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.schedule-tab {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.schedule-tab:hover {
    background: var(--light-gray-alt);
    border-color: var(--rose);
}

.schedule-tab-active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.schedule-tab-active:hover {
    background: var(--navy);
    border-color: var(--navy);
}

.tab-today {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    font-weight: 700;
}

.schedule-tab-active .tab-today {
    color: var(--rose);
}

.schedule-day {
    display: none;
}

.schedule-day-active {
    display: block;
}

.schedule-day-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.schedule-card {
    background: var(--white);
    border: 1px solid rgba(11, 8, 25, 0.08);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
    position: relative;
}

.schedule-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--rose);
}

.schedule-card-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.schedule-card-show {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.schedule-card-host {
    font-size: 0.85rem;
    color: var(--maroon);
    margin-bottom: 12px;
    font-weight: 500;
}

.schedule-card-desc {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ---------- Media Page ---------- */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    background: var(--white);
    border: 1px solid rgba(11, 8, 25, 0.08);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.media-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.media-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.media-icon-tiktok { background: var(--black); }
.media-icon-youtube { background: var(--red); }
.media-icon-facebook { background: var(--navy); }

.media-card-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.media-card-handle {
    font-size: 0.85rem;
    color: var(--maroon);
    font-weight: 500;
    margin-bottom: 16px;
}

.media-card-desc {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Media Contact Grid */
.media-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(11, 8, 25, 0.08);
    transition: all var(--transition);
}

.media-contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.media-contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--red);
}

.media-contact-card h3 {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.media-contact-card p {
    font-size: 0.88rem;
    color: var(--body-text);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* ---------- Contact Page ---------- */
.section-contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-form-intro {
    color: var(--body-text);
    margin-bottom: 28px;
    font-size: 0.98rem;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(11, 8, 25, 0.12);
    border-radius: var(--radius-sm);
    font-family: var(--body-font);
    font-size: 0.95rem;
    color: var(--body-text);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--red);
}

.form-input::placeholder {
    color: rgba(11, 8, 25, 0.35);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    display: none;
    color: var(--red);
    font-size: 0.8rem;
    margin-top: 4px;
    font-weight: 500;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 18px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-sm);
    color: #2E7D32;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-error-msg {
    background: #FFEBEE !important;
    border-color: #FFCDD2 !important;
    color: #C62828 !important;
}

/* Contact Info */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--light-gray-alt);
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

a.contact-info-item:hover {
    background: var(--light-gray);
    border-color: var(--rose);
    color: var(--navy);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--red);
    box-shadow: var(--shadow-sm);
}

.contact-info-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--maroon);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info-value {
    display: block;
    font-size: 0.98rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
}

.contact-social-row {
    display: flex;
    gap: 12px;
}

.contact-social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition);
}

.contact-social-btn:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 8, 25, 0.08);
}

.contact-map iframe {
    display: block;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-about .logo-img {
    height: 48px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 16px 0 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--red);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--red);
}

.footer-contact-list a,
.footer-contact-list span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list a:hover {
    color: var(--red);
}

.footer-listen-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit-link {
    color: var(--rose);
    font-weight: 600;
}

.footer-credit-link:hover {
    color: var(--red);
}

/* ---------- Floating WhatsApp Button ---------- */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition);
}

.floating-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: scale(1.08);
}

/* ---------- Floating Listen Button ---------- */
.floating-listen {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--red);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(190, 50, 56, 0.4);
    z-index: 900;
    transition: all var(--transition);
    text-decoration: none;
}

.floating-listen:hover {
    background: var(--maroon);
    color: var(--white);
    transform: scale(1.05);
}

.floating-listen-pulse {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.floating-listen svg {
    margin-left: 12px;
}

.floating-listen-text {
    font-family: var(--heading-font);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.3); }
}

/* ---------- Reveal Animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-player {
        max-width: 480px;
    }

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

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

    .footer-about {
        grid-column: 1 / -1;
    }

    .media-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .media-contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 56px;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 48px;
    }

    .header-inner {
        height: 72px;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-desc {
        font-size: 0.98rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title {
        font-size: 2rem;
    }

    .cta-heading {
        font-size: 1.7rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .schedule-preview-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .schedule-time {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-listen {
        padding: 10px 16px;
        bottom: 16px;
        right: 16px;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        bottom: 16px;
        left: 16px;
    }

    .floating-listen-text {
        display: none;
    }

    .floating-listen svg {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo-img {
        height: 40px;
    }

    .header-inner {
        height: 64px;
    }

    .hero {
        padding: 40px 0 50px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .schedule-day-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .gallery-item-large {
        grid-row: span 1;
    }

    .about-image-main img {
        height: 200px;
    }

    .about-image-secondary img {
        height: 140px;
    }

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

    .footer-about {
        grid-column: auto;
    }

    .player-card iframe {
        height: 160px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
