/* =============================================
   SUNDAY WORSHIP SERVICE - Estilos Globales
   ============================================= */

:root {
    --teal-dark: #0d5c66;
    --teal: #0f9bb0;
    --teal-light: #4fd4e8;
    --cyan: #6ee7f5;
    --cyan-pale: #d4f7fb;
    --slate: #3d5259;
    --white: #ffffff;
    --off-white: #f7fdfe;
    --text-dark: #1a2e33;
    --text-gray: #5a6e73;
    --shadow-soft: 0 10px 40px rgba(15, 155, 176, 0.15);
    --shadow-strong: 0 20px 60px rgba(13, 92, 102, 0.25);
    --radius: 20px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--off-white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =============================================
   LOADER
   ============================================= */
.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-cross {
    font-size: 60px;
    color: white;
    animation: pulseCross 1.2s ease-in-out infinite;
}

@keyframes pulseCross {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    color: white;
    box-shadow: 0 12px 34px rgba(15, 155, 176, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(15, 155, 176, 0.55);
}

.btn-outline {
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(13, 92, 102, 0.35);
    color: var(--teal-dark);
}

.btn-outline.light {
    border-color: rgba(255,255,255,0.6);
    color: white;
}

.btn-outline:hover {
    background: var(--teal);
    color: white;
}

.btn-outline.light:hover {
    background: white;
    color: var(--teal-dark);
}

.btn-white {
    background: white;
    color: var(--teal-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.btn.full { width: 100%; justify-content: center; }

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ff4757;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s infinite;
}

.pulse-dot.small { width: 8px; height: 8px; }

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 20px rgba(13, 92, 102, 0.08);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.header-container .logo {
    justify-self: start;
}

.header-container .nav-desktop {
    justify-self: center;
}

.header-container .btn-live-header {
    justify-self: end;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(15, 155, 176, 0.35);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 800;
}

.logo-text span {
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-desktop ul {
    display: flex;
    gap: 34px;
}

.nav-desktop a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--teal);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.btn-live-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(15, 155, 176, 0.35);
    transition: all 0.3s ease;
}

.btn-live-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(15, 155, 176, 0.5);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    justify-self: end;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--teal-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
    display: none;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-mobile.active { display: block; }

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 20px;
}

.nav-mobile a {
    display: block;
    padding: 14px 0;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 60px;
    overflow: hidden;
    background: linear-gradient(160deg, #cdeef3 0%, #7fd8e6 45%, #1a97ab 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.55;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 70%);
    top: -250px;
    right: -200px;
    animation: floatBlob 12s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 60% 60%, rgba(13, 92, 102, 0.3), transparent 70%);
    bottom: -200px;
    left: -150px;
    animation: floatBlob 15s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--slate);
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 0.92;
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
    font-size: clamp(56px, 10vw, 130px);
}

.line-2 {
    display: flex !important;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px 18px;
}

.line-1 {
    background: linear-gradient(135deg, #0d5c66, #1a97ab, #4fd4e8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line-2 {
    background: linear-gradient(135deg, #234a52, #3d5259);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-script-inline {
    font-family: 'Poppins', cursive;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(22px, 3vw, 38px);
    background: linear-gradient(135deg, #0f9bb0, #0d5c66);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    vertical-align: baseline;
}

.hero-desc {
    font-size: 18px;
    color: var(--slate);
    max-width: 560px;
    margin: 0 auto 38px;
    align-self: center;
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-schedule {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 22px;
    flex-wrap: wrap;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 26px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 8px 24px rgba(13, 92, 102, 0.08);
    transition: all 0.35s ease;
}

.schedule-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(13, 92, 102, 0.16);
    background: rgba(255,255,255,0.75);
}

.schedule-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(135deg, var(--cyan-pale), var(--cyan));
    border-radius: 12px;
    flex-shrink: 0;
}

.schedule-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
}

.schedule-item p {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 2px;
}

.hero-social {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin: 56px auto 0;
    padding: 28px 40px;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(13, 92, 102, 0.18);
    border: 1px solid rgba(255,255,255,0.8);
    text-align: center;
    align-self: center;
}

.hero-social p {
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero-social p::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-light), var(--teal-dark));
    border-radius: 3px;
    margin: 10px auto 0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-links a span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a span svg {
    width: 16px;
    height: 16px;
}

.social-links a:hover {
    color: var(--teal-dark);
    transform: translateY(-2px);
}

.social-links a:hover span {
    background: linear-gradient(135deg, var(--teal-dark), #0a3038);
    transform: scale(1.12);
}

.social-links a:hover { color: var(--teal); }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    z-index: 2;
    display: none;
}

.scroll-down span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { top: 8px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s ease forwards;
}

.line-1.reveal { animation-delay: 0.1s; }
.line-2.reveal { animation-delay: 0.25s; }
.hero-desc.reveal { animation-delay: 0.55s; }
.hero-buttons.reveal { animation-delay: 0.7s; }
.hero-schedule.reveal { animation-delay: 0.85s; }
.hero-subtitle.reveal { animation-delay: 0s; }

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTION HEADERS (shared)
   ============================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--cyan-pale);
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.section-header.light .section-tag {
    background: rgba(255,255,255,0.15);
    color: white;
}

.section-header.light h2 {
    color: white;
}

.section-header.light h2 span {
    background: linear-gradient(135deg, #a3f0fb, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header.light p {
    color: rgba(255,255,255,0.85);
}

/* =============================================
   LIVE STREAM SECTION
   ============================================= */
.live-section {
    background: linear-gradient(160deg, var(--teal-dark), var(--teal) 60%, #2fb8c9);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.live-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 50%);
}

.live-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.live-player {
    position: relative;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 4px solid rgba(255,255,255,0.15);
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.live-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    letter-spacing: 1px;
}

.live-info {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 36px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.live-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 20px;
}

.live-now-message {
    display: none;
    background: rgba(255, 71, 87, 0.15);
    border: 1px solid rgba(255, 71, 87, 0.4);
    color: white;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 28px;
    animation: liveMessagePulse 2s ease-in-out infinite;
}

.live-now-message.show {
    display: block;
}

@keyframes liveMessagePulse {
    0%, 100% { background: rgba(255, 71, 87, 0.15); }
    50% { background: rgba(255, 71, 87, 0.28); }
}

.countdown.hidden {
    display: none;
}

.live-badge {
    background: rgba(0,0,0,0.6);
    color: white;
}

.live-badge.is-live {
    background: rgba(255, 71, 87, 0.9);
}

.live-badge:not(.is-live) .pulse-dot {
    background: #9ca3af;
    animation: none;
    box-shadow: none;
}

.countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}

.countdown-item {
    flex: 1;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 14px 6px;
    text-align: center;
}

.countdown-item span {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
}

.countdown-item small {
    font-size: 11px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-details {
    margin-bottom: 28px;
    flex-grow: 1;
}

.live-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.live-details li span { font-size: 18px; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 110px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrap {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 155, 176, 0.3);
    position: relative;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 155, 176, 0.25), rgba(13, 92, 102, 0.05) 60%);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-visual:hover .about-image {
    transform: scale(1.05);
}

.about-card {
    position: absolute;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 20px 26px;
    border-radius: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:first-of-type {
    top: 20px;
    left: -10px;
}

.about-card:last-of-type {
    bottom: 30px;
    right: -10px;
}

.about-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--teal-dark);
}

.about-card p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
}

/* Directions Card */
.card-directions {
    box-shadow: 0 12px 30px rgba(13, 92, 102, 0.15);
}

.card-directions .card-icon {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
}

.card-directions:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 20px 45px rgba(15, 155, 176, 0.35);
    border-color: var(--teal-light);
}

.card-directions:hover .card-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Visit / Glow Card */
.card-visit {
    box-shadow: 0 12px 30px rgba(13, 92, 102, 0.15);
}

.card-visit .card-icon {
    background: linear-gradient(135deg, #ff9a56, #ff6f61);
}

.glow-ring {
    position: absolute;
    inset: -6px;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(255,111,97,0.6), transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.25); }
}

.card-visit:hover {
    transform: translateY(-8px) scale(1.08) rotate(-1deg);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 20px 50px rgba(255, 111, 97, 0.4);
    border-color: #ff9a56;
}

.card-visit:hover .card-icon {
    transform: scale(1.15);
}

.floating { animation: floatCard 4s ease-in-out infinite; }
.floating.delay { animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 18px;
    font-size: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border-radius: 14px;
    transition: background 0.3s ease;
}

.value-item:hover {
    background: var(--cyan-pale);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cyan-pale), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.value-item strong { font-size: 16px; color: var(--text-dark); }
.value-item p { font-size: 14px; color: var(--text-gray); margin: 0; }

/* =============================================
   SONGS SECTION
   ============================================= */
.songs-section {
    padding: 110px 0;
    background: linear-gradient(180deg, white, var(--cyan-pale) 100%);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background: white;
    border: 2px solid #e0f4f7;
    color: var(--text-gray);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(15, 155, 176, 0.3);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.song-card {
    background: white;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 25px rgba(13, 92, 102, 0.07);
    transition: all 0.4s ease;
    border: 1px solid rgba(15, 155, 176, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.song-card.show {
    animation: cardIn 0.5s ease forwards;
}

@keyframes cardIn {
    to { opacity: 1; transform: translateY(0); }
}

.song-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 155, 176, 0.18);
}

.song-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.song-cover {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    flex-shrink: 0;
}

.song-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.song-category { font-size: 12px; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.song-player {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cyan-pale);
    padding: 10px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--teal-dark);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.play-btn:hover { transform: scale(1.1); }

.progress-bar {
    flex-grow: 1;
    height: 5px;
    background: rgba(15, 155, 176, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: var(--teal-dark);
    border-radius: 10px;
}

.song-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--cyan-pale);
    color: var(--teal-dark);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: white;
}

.action-btn.primary {
    background: var(--teal-dark);
    color: white;
    border-color: var(--teal-dark);
}

.action-btn.primary:hover {
    background: var(--teal);
}

/* =============================================
   SERMONS SECTION
   ============================================= */
.sermons-section {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--teal-dark), #144752);
    position: relative;
    overflow: hidden;
}

.sermons-section::before {
    content: '✝';
    position: absolute;
    font-size: 500px;
    color: rgba(255,255,255,0.03);
    top: -100px;
    right: -80px;
    line-height: 1;
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.sermon-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sermon-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}

.sermon-thumb {
    height: 170px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    position: relative;
    color: white;
}

.sermon-thumb .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 92, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sermon-card:hover .play-overlay { opacity: 1; }

.sermon-body { padding: 22px; color: white; }

.sermon-date {
    font-size: 12px;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.sermon-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sermon-speaker {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
}

.sermon-actions {
    display: flex;
    gap: 10px;
}

.sermon-actions .action-btn {
    border-color: rgba(255,255,255,0.25);
    color: white;
}

.sermon-actions .action-btn:hover {
    background: white;
    color: var(--teal-dark);
    border-color: white;
}

.sermon-actions .action-btn.primary {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--teal-dark);
}

.sermon-actions .action-btn.primary:hover {
    background: white;
}

.sermons-more {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    padding: 110px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-panel {
    background: linear-gradient(160deg, var(--teal-dark), var(--teal));
    border-radius: var(--radius);
    padding: 40px 32px;
    color: white;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item strong { display: block; margin-bottom: 4px; font-size: 15px; }
.contact-item p { font-size: 14px; color: rgba(255,255,255,0.85); }

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: white;
    color: var(--teal-dark);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8f4f6;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-success {
    display: none;
    text-align: center;
    margin-top: 16px;
    color: var(--teal-dark);
    font-weight: 600;
    font-size: 14px;
}

.form-success.show { display: block; }

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content { position: relative; z-index: 1; }

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: white;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #0a3038;
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    font-size: 14px;
    margin: 16px 0 20px;
    line-height: 1.7;
}

.footer-brand .logo-text strong { color: white; }

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul a:hover { color: var(--cyan); }

.footer-col p { font-size: 14px; margin-bottom: 16px; }

.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: white;
    font-size: 13px;
}

.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.newsletter-form button:hover { background: var(--teal-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 155, 176, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Large Desktop */
@media (min-width: 1400px) {
    .container { max-width: 1400px; }
}

/* Laptop / Small Desktop */
@media (max-width: 1200px) {
    .live-wrapper { grid-template-columns: 1fr; }
    .live-player { aspect-ratio: 16/9; min-height: unset; height: auto; }
    .about-grid { gap: 50px; }
    .songs-grid { grid-template-columns: repeat(2, 1fr); }
    .sermons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets */
@media (max-width: 992px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }
    .btn-live-header { display: none; }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 380px;
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title .line { font-size: clamp(48px, 12vw, 90px); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero { padding-top: 120px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-schedule { flex-direction: column; gap: 14px; }
    .hero-social { padding: 24px 24px; border-radius: 20px; }
    .social-links { flex-direction: column; align-items: center; gap: 12px; }

    .section-header { margin-bottom: 40px; }

    .songs-grid { grid-template-columns: 1fr; }
    .sermons-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .contact-form { padding: 28px 22px; }
    .contact-info-panel { padding: 28px 22px; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .social-icons, .contact-social { justify-content: center; }
    .about-values { text-align: left; }

    .countdown { flex-wrap: wrap; }

    .back-to-top { width: 44px; height: 44px; right: 18px; bottom: 18px; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title .line { font-size: 42px; }
    .hero-script { font-size: 24px; }
    .hero-desc { font-size: 15px; }
    .logo-text strong { font-size: 14px; }
    .about-card { padding: 14px 18px; }
    .about-card strong { font-size: 14px; }
    .card-icon { width: 38px; height: 38px; }
    .card-icon svg { width: 18px; height: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}