/* ============================================
   PMB Central SDA Church - Main Stylesheet
   Adventist Identity Guideline System
   ============================================ */

/* === CSS Variables === */
:root {
  --primary: #1B3A5C;         /* Navy Blue */
  --primary-dark: #122840;
  --primary-light: #2a5580;
  --secondary: #D4A843;       /* Gold/Yellow */
  --secondary-light: #e8c76a;
  --accent-red: #C0392B;      /* Pathfinders */
  --accent-blue: #5DADE2;     /* Adventurers */
  --bg-white: #FFFFFF;
  --bg-light: #F5F6FA;        /* Light Slate Grey */
  --bg-grey: #ECF0F1;
  --text-dark: #2C3E50;
  --text-medium: #5D6D7E;
  --text-light: #95A5A6;
  --border-color: #D5D8DC;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(27, 58, 92, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.logo img {
  height: 48px;
  width: auto;
  filter: brightness(10);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .church-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo-text .church-subtitle {
  font-size: 0.7rem;
  color: var(--secondary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: transform var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.85) 0%, rgba(18, 40, 64, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 120px 24px 80px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-content h1 .highlight {
  color: var(--secondary);
}

.hero-content .tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}

.hero-content .subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* === Service Times Banner === */
.service-times {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.service-times::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
}

.service-times .container {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.service-time-card {
  text-align: center;
  padding: 24px 48px;
  flex: 1;
  min-width: 250px;
  max-width: 340px;
  position: relative;
}

.service-time-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.service-time-card .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.service-time-card .day {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.service-time-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-time-card .time {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-weight: 300;
}

/* === Section Styles === */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .overline {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* === About Snippet (Homepage) === */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-snippet-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-snippet-text h2 .highlight {
  color: var(--secondary);
}

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

.about-snippet-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-snippet-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-snippet-image .accent-box {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary-dark);
}

.about-snippet-image .accent-box .number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-snippet-image .accent-box .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Sabbath Section === */
.sabbath-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sabbath-section .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sabbath-section .bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.8) 0%, rgba(18, 40, 64, 0.6) 100%);
}

.sabbath-section .content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
}

.sabbath-section .content .overline {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.sabbath-section .content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sabbath-section .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

/* === Ministry Cards === */
.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.ministry-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}

.ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.ministry-card .card-header {
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--border-color);
}

.ministry-card .card-header img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.ministry-card .card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ministry-card .card-body {
  padding: 20px 24px 24px;
}

.ministry-card .card-body p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ministry-card .card-accent {
  height: 4px;
  width: 100%;
  background: var(--primary);
}

.ministry-card.pathfinders .card-accent { background: var(--accent-red); }
.ministry-card.adventurers .card-accent { background: var(--accent-blue); }
.ministry-card.ambassadors .card-accent { background: var(--secondary); }
.ministry-card.ay .card-accent { background: #8E44AD; }
.ministry-card.womens .card-accent { background: #E91E63; }
.ministry-card.mens .card-accent { background: var(--primary); }
.ministry-card.childrens .card-accent { background: #27AE60; }

/* === Beliefs Section === */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.belief-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary);
  transition: all var(--transition);
}

.belief-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.belief-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.belief-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === Media / Sermons === */
.live-stream-banner {
  background: linear-gradient(135deg, var(--accent-red) 0%, #922B21 100%);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.live-stream-banner::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.live-stream-banner .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.live-stream-banner .live-badge .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.live-stream-banner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.live-stream-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.video-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.video-card .video-embed {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg-grey);
}

.video-card .video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

.video-card .video-placeholder:hover {
  opacity: 0.9;
}

.video-card .video-info {
  padding: 20px;
}

.video-card .video-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.video-card .video-info p {
  color: var(--text-medium);
  font-size: 0.85rem;
}

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}

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

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.info-card .icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Map */
.map-container {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Giving Section === */
.giving-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: #fff;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.giving-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
}

.giving-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.giving-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
}

.giving-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.giving-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.giving-feature .check {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* === Footer === */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(10);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Scroll to Top === */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* === Mobile Responsive === */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-snippet {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    text-align: left;
  }

  .nav-links a::after {
    display: none;
  }

  .service-times .container {
    flex-direction: column;
    align-items: center;
  }

  .service-time-card::after {
    display: none !important;
  }

  .section {
    padding: 60px 0;
  }

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

  .giving-section {
    padding: 40px 24px;
  }

  .giving-features {
    flex-direction: column;
    align-items: center;
  }

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

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .logo-text .church-name {
    font-size: 0.9rem;
  }

  .logo-text .church-subtitle {
    font-size: 0.6rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .contact-form {
    padding: 24px;
  }
}
