/* Container for home page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* countdown in home*/
.countdown-section {
    position: relative;
    width: 100%;
    background: var(--secondary-light); /* Soft beige */
    color: var(--text-dark);
    text-align: center;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 140px; /* Start directly below header */
}


.countdown-content {
    max-width: 900px;
    width: 100%;
}

.countdown-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Lora", serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.countdown-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.time-box {
    background: var(--white);
    color: var(--secondary-dark);
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    min-width: 100px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease-in-out;
}

.time-box:hover {
    transform: scale(1.05);
}

.time-box small {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 5px;
}

/* Button */
.countdown-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.countdown-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

/* hero in home*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/church.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(194, 164, 119, 0.1), rgba(106, 141, 115, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    color: white;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C2A477, transparent);
    border-radius: 2px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #F4ECE1;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #C2A477, #A58C65);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(194, 164, 119, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 164, 119, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #C2A477;
    transform: translateY(-3px);
}

/* Service Times Card */
.hero-service-times {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    color: #4A4E4D;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-service-times::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C2A477, #6A8D73, #C2A477);
}

.service-times-header {
    text-align: center;
    margin-bottom: 25px;
}

.service-times-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4A4E4D;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.service-times-header h3::before {
    
    font-size: 1.5rem;
}

.service-times-header p {
    color: #6D6F6E;
    font-size: 1rem;
    margin: 0;
}

.service-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    background: linear-gradient(135deg, rgba(194, 164, 119, 0.08), rgba(194, 164, 119, 0.12));
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #C2A477;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(194, 164, 119, 0.12), rgba(194, 164, 119, 0.16));
}

.service-day {
    font-weight: 700;
    font-size: 1.2rem;
    color: #C2A477;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-day::before {
    content: '📅';
    font-size: 1rem;
}

.service-details {
    font-size: 0.95rem;
    color: #6D6F6E;
    line-height: 1.4;
}

.service-details strong {
    color: #4A4E4D;
}

.hero-cta {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(194, 164, 119, 0.3);
}

.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C2A477;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-cta a:hover {
    color: #4A4E4D;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeInRight {
    0% { 
        opacity: 0; 
        transform: translateX(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.hero h1, .hero h2, .hero p {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero h2 {
    animation-delay: 0.4s;
}

.hero p {
    animation-delay: 0.6s;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-service-times {
    opacity: 0;
    animation: fadeInRight 1s ease-out 1s forwards;
}

/* Side buttons in home next to hero */
.side-buttons {
  position: absolute;
  width: 100%;
  top: 100%; /* make it next to hero*/
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between; /* Ensures left and right alignment */
  z-index: 10;
  padding: 0 20px; /* Adjust spacing from the edges */
}


/* Individual Side Button */
.side-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 160px;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Positioning for Left and Right Buttons */
.side-button.left {
  position: absolute;
  left: 10px;
  background: linear-gradient(135deg, #C2A477, #A58C65);
}

.side-button.left:hover {
  background: linear-gradient(135deg, #B29467, #957C55);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(194, 164, 119, 0.4);
}

.side-button.right {
  position: absolute;
  right: 10px;
  background: linear-gradient(135deg, #C2A477, #A58C65);
}

.side-button.right:hover {
  background: linear-gradient(135deg, #B29467, #957C55);
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(194, 164, 119, 0.4);
}

/* ===============================================
   MODERN HERO SECTION STYLES
   =============================================== */

.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #1a202c 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 164, 119, 0.1) 0%, rgba(106, 141, 115, 0.1) 100%);
    backdrop-filter: blur(1px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-cross,
.floating-dove,
.floating-heart {
    position: absolute;
    color: rgba(194, 164, 119, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-cross {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.floating-cross::before {
    content: "✝";
}

.floating-dove {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.floating-dove::before {
    content: "🕊";
}

.floating-heart {
    top: 35%;
    right: 30%;
    animation-delay: 4s;
}

.floating-heart::before {
    content: "💖";
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-5deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10rem !important;
    align-items: center;
    min-height: 110vh;
    width: 100%;
}

.hero-main-content {
    color: white;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #C2A477 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.title-main {
    display: block;
    font-family: 'Lora', serif;
}

.title-sub {
    display: block;
    font-size: 0.7em;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-location i {
    color: #C2A477;
    font-size: 1.3rem;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #C2A477 0%, #A58C65 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(194, 164, 119, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(194, 164, 119, 0.4);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #C2A477;
    transform: translateY(-3px);
}

.hero-btn.outline {
    background: transparent;
    color: #C2A477;
    border: 2px solid #C2A477;
}

.hero-btn.outline:hover {
    background: #C2A477;
    color: white;
    transform: translateY(-3px);
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 5rem !important;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.card-header i {
    font-size: 1.5rem;
    color: #C2A477;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0;
    font-weight: 700;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card .service-item {
    background: linear-gradient(135deg, rgba(194, 164, 119, 0.08), rgba(194, 164, 119, 0.12));
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #C2A477;
    transition: all 0.3s ease;
}

.service-card .service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(194, 164, 119, 0.2);
}

.service-card .service-day {
    font-weight: 700;
    color: #C2A477;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-time span {
    color: #6a7280;
    font-size: 0.9rem;
}

.service-time strong {
    color: #2d3748;
    font-size: 1rem;
}

.card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #C2A477;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 10px;
    background: rgba(194, 164, 119, 0.1);
}

.directions-btn:hover {
    background: rgba(194, 164, 119, 0.2);
    transform: translateY(-2px);
}

.quick-connect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-connect h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.connect-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.connect-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.connect-btn.youtube {
    background: linear-gradient(135deg, #ff0000, #ff5722);
}

.connect-btn.email {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.connect-btn.phone {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.connect-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Animation for hero elements */
.hero-main-content > * {
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-location { animation-delay: 0.3s; }
.hero-description { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.5s; }

.hero-sidebar {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.7s forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Welcome Message Section */
.welcome-message {
  padding: 80px 0;
  background-color: var(--white);
}

.welcome-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.welcome-text {
  flex: 1;
  text-align: center;
}

.welcome-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.welcome-text h2::after {
  content: "";
  position: absolute;
}

.welcome-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary); /* gold line*/
  border-radius: 3px;
}

.welcome-text p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-learn-more {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-learn-more:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.welcome-video {
  flex: 1;
}

.video-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.video-wrapper:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(194, 164, 119, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: var(--secondary);
  transform: translate(-50%, -50%) scale(1.1);
}

/* church intro below welcome in home*/
.church-intro-section {
    width: 100%;
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}

.church-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.church-intro-section h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: "Lora", serif;
    position: relative;
    display: inline-block;
}

.church-intro-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.church-intro-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

.church-intro-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.church-feature {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.church-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.church-feature i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.church-feature h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.church-feature p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}


/*quote in index home*/
/* Daily Devotional Section */
.daily-devotional {
  position: relative;
  text-align: center;
  background: url('../images/daily.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 5%;
  color: white;
  margin: 0;
  width: 100%;
}

.daily-devotional::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.daily-devotional h2,
.daily-devotional blockquote,
.daily-devotional button {
  position: relative;
  z-index: 2;
}

.daily-devotional h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Lora", serif;
}

.daily-devotional blockquote {
  font-size: 1.8rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-left: 5px solid #C2A477;
  max-width: 700px;
  margin: 0 auto 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.daily-devotional button {
  margin-top: 25px;
  padding: 15px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  background: #C2A477;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.daily-devotional button:hover {
  background: #a88a63;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.location-info h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.location-info p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.location-details {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
    min-width: 24px;
}

.location-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.location-item p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

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

.location-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.location-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-directions,
.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-directions:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-visit {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-visit:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.location-map {
    flex: 1;
    min-width: 300px;
}

.location-map iframe {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.location-map iframe:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


/* Enhanced Gap Control for Hero Sidebar */
.hero-sidebar {
    gap: 1.5rem !important;
}

.quick-connect {
    margin-top: 0.5rem;
}

/* ===============================================
   RESPONSIVE DESIGN - ALL MEDIA QUERIES
   =============================================== */

/* ===== MODERN HERO SECTION RESPONSIVE ===== */

/* Large screens (1200px+) */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
}

/* Tablets and smaller laptops (968px and below) */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 1rem;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.2rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-btn {
        min-width: 200px;
    }
    
    .hero-sidebar {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        gap: 1.25rem;
    }
    
    .connect-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .hero-scroll-indicator {
        bottom: -3rem;
    }
    
    .modern-hero {
        padding-bottom: 4rem;
    }
}

/* Mobile devices (768px and below) */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 80vh;
        padding: 2rem 0;
        padding-bottom: 6rem;
    }
    
    .hero-container {
        min-height: 110vh;
        padding: 1rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-title .title-main {
        display: block;
        font-size: 2.5rem;
    }
    
    .hero-title .title-sub {
        display: block;
        font-size: 2rem;
        margin-top: 0.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        margin-top: -1rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
        margin: 1rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-sidebar {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0;
        margin-bottom: 0.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-item {
        padding: 0.75rem 0;
    }
    
    .service-time {
        font-size: 0.9rem;
    }
    
    .quick-connect {
        margin-top: 0;
    }
    
    .quick-connect h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .connect-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hero-scroll-indicator {
        bottom: -4rem;
        font-size: 0.8rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    .scroll-arrow i {
        font-size: 1rem;
    }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
    .modern-hero {
        padding-bottom: 4rem;
    }
    
    .hero-container {
        padding: 1rem 0.5rem;
        gap: 1.5rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .title-main {
        font-size: 2rem;
    }
    
    .hero-title .title-sub {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        margin-top: -2.5rem;
    }
    
    .hero-btn {
        max-width: 100%;
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .hero-sidebar {
        gap: 0.75rem;
    }
    
    .connect-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .connect-btn {
        padding: 0.6rem;
        font-size: 1rem;
    }
    
    .hero-scroll-indicator {
        bottom: 1.0rem;
        font-size: 0.7rem;
    }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
    .hero-container {
        padding: 0.5rem;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-title .title-main {
        font-size: 1.75rem;
    }
    
    .hero-title .title-sub {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .hero-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .hero-scroll-indicator {
        bottom: -1.5rem;
        font-size: 0.65rem;
    }
}

/* ===== COUNTDOWN SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .countdown-section {
        padding: 60px 5%;
        margin-top: 80px;
    }
    
    .countdown-content h2 {
        font-size: 2rem;
    }
    
    .countdown-content p {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-box {
        min-width: 80px;
        padding: 12px 20px;
        font-size: 1.5rem;
    }
    
    .time-box small {
        font-size: 0.9rem;
    }
    
    .countdown-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .countdown-content h2 {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        gap: 8px;
    }
    
    .time-box {
        min-width: 70px;
        padding: 10px 15px;
        font-size: 1.3rem;
    }
}

/* ===== SIDE BUTTONS RESPONSIVE ===== */
@media (max-width: 768px) {
    .side-buttons {
        display: none; /* Hide on mobile for better UX */
    }
}

/* ===== WELCOME MESSAGE SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .welcome-message {
        padding: 60px 0;
    }
    
    .welcome-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .welcome-text h2 {
        font-size: 2rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .welcome-text h2 {
        font-size: 1.8rem;
    }
    
    .btn-learn-more {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== CHURCH INTRO SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .church-intro-section {
        padding: 60px 5%;
    }
    
    .church-intro-section h2 {
        font-size: 2rem;
    }
    
    .church-intro-section p {
        font-size: 1rem;
    }
    
    .church-intro-features {
        gap: 20px;
    }
    
    .church-feature {
        min-width: 200px;
        padding: 25px;
    }
    
    .church-feature i {
        font-size: 2rem;
    }
    
    .church-feature h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .church-intro-section h2 {
        font-size: 1.8rem;
    }
    
    .church-intro-features {
        flex-direction: column;
    }
    
    .church-feature {
        max-width: 100%;
        padding: 20px;
    }
}

/* ===== DAILY DEVOTIONAL SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .daily-devotional {
        padding: 60px 5%;
        background-attachment: scroll;
    }
    
    .daily-devotional h2 {
        font-size: 2rem;
    }
    
    .daily-devotional blockquote {
        font-size: 1.4rem;
        padding: 20px;
        margin: 0 auto 25px;
    }
    
    .daily-devotional button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .daily-devotional h2 {
        font-size: 1.8rem;
    }
    
    .daily-devotional blockquote {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .daily-devotional button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* ===== LOCATION SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .location-content {
        flex-direction: column;
        align-items: center;
    }
    
    .location-info {
        max-width: 100%;
        text-align: center;
    }
    
    .location-info h2 {
        font-size: 2rem;
    }
    
    .location-info p {
        font-size: 1rem;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .location-info h2 {
        font-size: 1.8rem;
    }
    
    .location-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .location-item i {
        margin-top: 0;
    }
    
    .location-item h3 {
        font-size: 1.5rem;
    }
    
    .location-item p {
        font-size: 0.9rem;
    }
    
    .btn-directions,
    .btn-visit {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}