.modern-list {
    font-family: 'Roboto', sans-serif;
    color: #f0e6e6;
    font-size: 1.2rem;
}

.modern-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.modern-list li::before {
    content: '\2022';
    color: #ff6347;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
    top: 0;
}
/* Flashing animation for the download link */
@keyframes flash {
    0% {
        background-color: red;
        color: white;
    }
    50% {
        background-color: yellow;
        color: red;
    }
    100% {
        background-color: red;
        color: white;
    }
}

.alert-download a {
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    animation: flash 1s infinite; /* Flash animation that alternates every 1 second */
    text-decoration: none;
}

.alert-download a:hover {
    text-decoration: underline;
    background-color: darkred; /* Changes to dark red when hovered */
    color: white;
}

/* Applying the blinking effect to the feast title */
.feast-title {
    animation: flash 5s infinite;
    padding: 10px;
    /* background-color: rgb(13, 196, 35); */
    border-radius: 10px;
    text-align: center;
}
/* Modern card + gallery styling for facilities section */
.feature-card { background:#ffffff; border-radius:16px; box-shadow:0 10px 24px rgba(0,0,0,0.08); padding:32px; }
.feature-card .gallery img { width:100%; height:auto; border-radius:12px; box-shadow:0 6px 14px rgba(0,0,0,0.07); transition: transform .25s ease; }
.feature-card .gallery img:hover { transform: scale(1.02); }
@media (max-width: 767.98px) { .feature-card { padding:20px; } }
/* About section - modern card */
.about-card { background:#ffffff; border-radius:18px; box-shadow:0 14px 32px rgba(0,0,0,0.08); padding:32px; position:relative; overflow:hidden; }
.about-card::before { content:""; position:absolute; top:0; left:0; right:0; height:6px; background:linear-gradient(90deg,#e5c674,#f1e2b8,#e5c674); }
.about-title { color:#1f5133; }
.about-img { border-radius:16px; box-shadow:0 12px 28px rgba(0,0,0,0.15); }
@media (max-width: 767.98px) { .about-card { padding:20px; } }
/* Modern timings cards */
.timings-grid .timing-card { background:#ffffff; border-radius:18px; box-shadow:0 10px 26px rgba(0,0,0,0.08); padding:26px; height:100%; text-align:center; position:relative; overflow:hidden; border:1px solid rgba(0,0,0,0.04); }
.timings-grid .timing-card::before { content:""; position:absolute; top:0; left:0; right:0; height:6px; background:linear-gradient(90deg,#e5c674,#f1e2b8,#e5c674); }
.timings-grid .timing-emblem { width:44px; height:44px; border-radius:10px; display:inline-flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#f9e7bb,#f3d180); color:#7a5c1e; margin-bottom:14px; box-shadow:0 8px 18px rgba(229,198,116,0.35); }
.timings-grid .timing-title { font-weight:800; color:#9b0b55; }
.timings-grid .timing-sub { color:#444; margin-top:6px; }
@media (max-width: 767.98px) { .timings-grid .timing-card { padding:18px; } }
/* Churches gallery - modern layout */
.churches-section { background: #fafbfc; padding: 60px 0; }
.church-card { background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%); border-radius:24px; box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05); padding:40px; margin-bottom:50px; position:relative; border: 1px solid rgba(255,255,255,0.8); }
.church-card::before { content:""; position:absolute; top:-2px; left:-2px; right:-2px; bottom:-2px; background: linear-gradient(45deg, #e5c674, #f1e2b8, #e5c674, #f1e2b8); border-radius:26px; z-index:-1; }
.church-title { color:#2c3e50; margin-bottom:12px; font-weight:700; letter-spacing:-0.5px; }
.church-subtitle { color:#7f8c8d; margin-bottom:32px; font-weight:400; }
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:24px; }
.gallery-item { position:relative; border-radius:20px; overflow:hidden; box-shadow:0 12px 32px rgba(0,0,0,0.15); transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1); background:#fff; }
.gallery-item:hover { transform:translateY(-8px) scale(1.02); box-shadow:0 20px 50px rgba(0,0,0,0.2); }
.gallery-item img { width:100%; height:280px; object-fit:cover; transition:transform 0.4s ease; }
.gallery-item:hover img { transform:scale(1.05); }
@media (max-width: 767.98px) { .church-card { padding:24px; margin-bottom:40px; } .gallery-grid { grid-template-columns:1fr; gap:16px; } }

/* Virtual Tour Section Styles */
.virtual-tour-section { background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%); position: relative; }
.virtual-tour-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); opacity: 0.3; }
.virtual-tour-content { position: relative; z-index: 2; }
.tour-badge { display: inline-block; background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%); padding: 8px 20px; border-radius: 25px; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
.badge-text { color: #2c3e50; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase; }
.tour-main-title { color: #ffffff; text-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.tour-main-title .title-line-1 { display: block; font-size: 3.5rem; font-weight: 300; color: #f8f9fa; margin-bottom: 8px; }
.tour-main-title .title-line-2 { display: block; font-size: 2.8rem; font-weight: 400; color: #d4af37; text-transform: uppercase; letter-spacing: 2px; }
.tour-subtitle { color: #f8f9fa; font-weight: 300; line-height: 1.6; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin: 0 auto; max-width: 900px; }
.location-item { text-align: center; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.location-item:hover { transform: translateY(-8px); }
.location-item .church-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.3); transition: transform 0.3s ease; border: 4px solid rgba(212, 175, 55, 0.3); }
.location-item:hover .church-photo { transform: scale(1.05); box-shadow: 0 12px 35px rgba(0,0,0,0.4); border-color: rgba(212, 175, 55, 0.6); }
.location-name { color: #ffffff; font-size: 1.3rem; font-weight: 600; margin-top: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.location-desc { color: #f8f9fa; font-size: 0.95rem; font-weight: 300; opacity: 0.9; }
.btn-tour-start { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%); color: #2c3e50; padding: 18px 36px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.2rem; box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid transparent; }
.btn-tour-start:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); color: #2c3e50; text-decoration: none; border-color: #ffffff; }
.btn-tour-start .btn-icon { font-size: 1.3rem; }
.btn-tour-start .btn-text { font-weight: 600; }
@media (max-width: 767.98px) { 
  .tour-main-title .title-line-1 { font-size: 2.5rem; }
  .tour-main-title .title-line-2 { font-size: 2rem; letter-spacing: 1px; }
  .tour-subtitle { font-size: 1.1rem; }
  .location-grid { grid-template-columns: 1fr; gap: 16px; }
  .location-item { padding: 20px; }
  .btn-tour-start { padding: 16px 28px; font-size: 1.1rem; }
}


#merged-section {
background-color: #ebf7d9;
padding: 50px 0;
}

.cg_mrc_widget {
width: 100%;
max-width: 500px;
margin: 0 auto;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}

/* Center the social media section */
.social-list {
display: flex;
justify-content: center; /* Center the icons horizontally */
margin-top: 20px;
}

.iconfont-wrapper {
margin-right: 15px;
font-size: 2rem; /* Adjust icon size */
border-radius: 50%;
padding: 15px;
transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Social icon hover effects */
.iconfont-wrapper.bg-facebook {
background-color: #3b5998; /* Facebook Blue */
}

.iconfont-wrapper.bg-twitter {
background-color: #00acee; /* Twitter Blue */
}

.iconfont-wrapper.bg-instagram {
background-color: #e1306c; /* Instagram Pink */
}

/* Hover effect for icons */
.iconfont-wrapper:hover {
transform: scale(1.2); /* Slight enlargement on hover */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

/* Hover effect for social icon colors */
.social-list .socicon {
color: white; /* White icon color */
transition: color 0.3s ease;
}

.social-list .bg-facebook:hover .socicon {
color: #3b5998;
}

.social-list .bg-twitter:hover .socicon {
color: #00acee;
}

.social-list .bg-instagram:hover .socicon {
color: #e1306c;
}

/* Center the title */
.mbr-section-title {
font-size: 2.5rem;
color: #333;
font-weight: bold;
text-transform: uppercase;
transition: color 0.3s ease;
}

.mbr-section-title:hover {
color: #92ace5; /* Change color when hovering over the title */
cursor: pointer;
}




/* Modern Navbar Styles */
.modern-navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(212, 175, 55, 0.2); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-logo {
    height: 5.8rem;
    width: 5.8rem;       
    border-radius: 80%;  
    object-fit: cover;    
    transition: transform 0.3s ease;
  }
  
.nav-logo:hover { transform: scale(1.05); }
.nav-title-main { display: block; font-weight: 600; font-size: 1.2rem; color: #2c3e50; line-height: 1.2; }
.nav-title-sub { display: block; font-weight: 400; font-size: 0.9rem; color: #7f8c8d; line-height: 1.2; }
.modern-nav-menu { gap: 10px; }
.nav-item { position: relative; }
.nav-link { position: relative; padding: 12px 16px !important; border-radius: 8px; transition: all 0.3s ease; font-weight: 500; }
.nav-link:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }
.nav-link-text { position: relative; }
.nav-link-text::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 100%); transition: width 0.3s ease; }
.nav-link:hover .nav-link-text::after { width: 100%; }
.modern-toggler { border: none; padding: 8px; border-radius: 8px; background: rgba(212, 175, 55, 0.1); }
.modern-toggler:hover { background: rgba(212, 175, 55, 0.2); }
.hamburger { width: 24px; height: 18px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; width: 100%; height: 2px; background: #2c3e50; border-radius: 1px; transition: all 0.3s ease; }
.modern-dropdown { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); padding: 8px; min-width: 220px; margin-top: 8px; }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; transition: all 0.3s ease; font-weight: 500; color: #2c3e50; text-decoration: none; }
.dropdown-item:hover { background: rgba(212, 175, 55, 0.1); transform: translateX(4px); color: #2c3e50; text-decoration: none; }
.dropdown-icon { color: #d4af37; font-size: 1.1rem; }
.dropdown-text { flex: 1; }
.nav-contact-btn { background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%); color: #2c3e50 !important; font-weight: 600; }
.nav-contact-btn:hover { background: linear-gradient(135deg, #c19b2e 0%, #e6d4a8 100%); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
@media (max-width: 991.98px) { 
  .modern-nav-menu { gap: 5px; }
  .nav-link { padding: 10px 12px !important; }
  .nav-title-main { font-size: 1rem; }
  .nav-title-sub { font-size: 0.8rem; }
}


  /* Modern Hero Section Styles */
  .hero-content { position: relative; z-index: 2; padding: 40px 20px; }
  .hero-title { color: #ffffff; text-shadow: 0 4px 8px rgba(0,0,0,0.3); margin-bottom: 30px; }
  .title-line-1 { display: block; font-size: 4rem; font-weight: 300; color: #f8f9fa; margin-bottom: 10px; line-height: 1.1; }
  .title-line-2 { display: block; font-size: 3.2rem; font-weight: 400; color: #ffffff; margin-bottom: 10px; line-height: 1.1; }
  .title-line-3 { display: block; font-size: 2.5rem; font-weight: 500; color: #d4af37; text-transform: uppercase; letter-spacing: 3px; line-height: 1.1; }
  .hero-divider { width: 100px; height: 4px; background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 100%); margin: 0 auto 30px; border-radius: 2px; }
  .hero-subtitle { color: #f8f9fa; font-weight: 300; line-height: 1.8; text-shadow: 0 2px 4px rgba(0,0,0,0.2); font-size: 1.3rem; margin-bottom: 20px; }
  .hero-verse { color: #d4af37; font-weight: 500; font-style: italic; font-size: 1.1rem; margin-bottom: 40px; }
  .btn-feast-download { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%); color: #2c3e50; padding: 18px 36px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1.2rem; box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 2px solid transparent; }
  .btn-feast-download:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6); color: #2c3e50; text-decoration: none; border-color: #ffffff; }
  .btn-icon { font-size: 1.3rem; }
  .btn-text { font-weight: 600; }
  
  /* Hero Section Mobile Fixes */
  @media (max-width: 767px) {
    .cid-uiQCEUHWL3 {
      background-image: url("../../../assets/images/lander-mobile-view.jpg") !important;
      background-size: cover !important;
      background-position: center center !important;
      background-attachment: scroll !important;
      min-height: 100vh;
    }
    
    /* Ensure proper image scaling on mobile */
    .cid-uiQCEUHWL3 .mbr-fallback-image {
      background-image: url("../../../assets/images/lander-mobile-view.jpg") !important;
      background-size: cover !important;
      background-position: center center !important;
    }
    
    /* Adjust hero content for mobile */
    .hero-content {
      padding: 20px 15px !important;
    }
    
    .title-line-1 { 
      font-size: 2.5rem !important; 
    }
    .title-line-2 { 
      font-size: 2rem !important; 
    }
    .title-line-3 { 
      font-size: 1.5rem !important; 
      letter-spacing: 1px !important;
    }
    
    .hero-subtitle { font-size: 1.1rem; line-height: 1.6; }
    .hero-verse { font-size: 1rem; }
    .btn-feast-download { padding: 16px 28px; font-size: 1.1rem; }
  }
  
  /* Override old blinking and add clean feast styles */
  .feast-title { animation: none !important; }
  .feast-section { background: #f7f4ec; padding: 60px 0; }
  .countdown-grid { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 16px; justify-items: center; margin-bottom: 24px; }
  .count-box { background: #ffffff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); padding: 12px 8px; width: 100%; text-align: center; }
  .count-label { font-size: 0.9rem; color: #6c757d; display: block; margin-top: 4px; }
  @media (max-width: 767.98px) { .countdown-grid { grid-template-columns: repeat(2, minmax(120px, 1fr)); } }
  /* Align generated countdown under labels */
  .countdown-grid .countdown { grid-column: 1 / -1; margin-top: 8px; }
  .countdown .row { display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 16px; justify-items: center; }
  .countdown .col-3 { width: 100%; max-width: none; padding: 0; }
  .countdown .number-wrap { background: #ffffff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); padding: 12px 8px; width: 100%; text-align: center; }
  .countdown .period, .countdown .dot { display: none; }
  .countdown .number { line-height: 1; }
  /* Inline Xd Yh Zm As format for feast section */
  .feast-section .countdown-grid { display: flex; justify-content: center; }
  .feast-section .countdown-grid .count-box { display: none; }
  .feast-section .countdown { display: block; }
  .feast-section .countdown .row { display: flex; gap: 28px; justify-content: center; align-items: center; flex-wrap: wrap; }
  .feast-section .countdown .col-3 { width: auto; padding: 8px 18px; background: #ffffff; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
  .feast-section .countdown .number-wrap { background: transparent; box-shadow: none; padding: 0; }
  .feast-section .countdown .period, .feast-section .countdown .dot { display: none !important; }
  .feast-section .countdown .number { display: inline-block; line-height: 1; font-variant-numeric: tabular-nums; }
  .feast-section .countdown .number b { font-weight: 700; }
  .feast-section .countdown .col-3:nth-child(1) .number b::after { content: 'd'; margin-left: 8px; font-size: 0.5em; position: relative; top: -0.25em; color: #1f5133; }
  .feast-section .countdown .col-3:nth-child(2) .number b::after { content: 'h'; margin-left: 8px; font-size: 0.5em; position: relative; top: -0.25em; color: #1f5133; }
  .feast-section .countdown .col-3:nth-child(3) .number b::after { content: 'm'; margin-left: 8px; font-size: 0.5em; position: relative; top: -0.25em; color: #1f5133; }
  .feast-section .countdown .col-3:nth-child(4) .number b::after { content: 's'; margin-left: 8px; font-size: 0.5em; position: relative; top: -0.25em; color: #1f5133; }
  @media (max-width: 767.98px) {
    .feast-section .countdown .row { gap: 16px; }
    .feast-section .countdown .col-3 { padding: 6px 12px; }
  }
     /* Sliding Gallery Styles */
.gallery-wrapper {
  overflow: hidden;
  position: relative;
}

.grid-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.grid-container-3 {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
  will-change: transform;
}

.grid-item {
  flex: 0 0 auto;
  width: 250px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.05);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

/* Ensure images are visible */
.grid-item img.hidden {
  display: block !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .grid-item {
    width: 200px;
    height: 150px;
  }
  
  .grid-container {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .grid-item {
    width: 150px;
    height: 120px;
  }
  
  .grid-container {
    height: 150px;
  }
}
   
   /* Virtual Tour Section - Modern Elegant Design */
   .virtual-tour-section { 
     position: relative; 
     min-height: 100vh; 
     display: flex; 
     align-items: center; 
     background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
     overflow: hidden;
   }
   .virtual-tour-section::before { 
     content: ""; 
     position: absolute; 
     top: 0; 
     left: 0; 
     right: 0; 
     bottom: 0; 
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); 
     opacity: 0.3; 
   }
   .virtual-tour-section .mbr-overlay { 
     background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%); 
   }
   .virtual-tour-content { 
     position: relative; 
     z-index: 2; 
   }
   .tour-badge { 
     display: inline-block; 
     margin-bottom: 2rem; 
   }
   .badge-text { 
     background: linear-gradient(135deg, #e5c674 0%, #f1e2b8 100%); 
     color: #2c3e50; 
     padding: 8px 24px; 
     border-radius: 25px; 
     font-size: 0.9rem; 
     font-weight: 600; 
     letter-spacing: 1px; 
     text-transform: uppercase; 
     box-shadow: 0 4px 15px rgba(229,198,116,0.3); 
   }
   .tour-main-title { 
     color: #ffffff; 
     font-weight: 800; 
     letter-spacing: -2px; 
     text-shadow: 0 6px 30px rgba(0,0,0,0.7); 
     margin-bottom: 1.5rem; 
     line-height: 1.1; 
   }
   .title-line-1 { 
     display: block; 
     font-size: 3.5rem; 
     margin-bottom: 0.5rem; 
   }
   .title-line-2 { 
     display: block; 
     font-size: 4rem; 
     background: linear-gradient(135deg, #e5c674 0%, #f1e2b8 100%); 
     -webkit-background-clip: text; 
     -webkit-text-fill-color: transparent; 
     background-clip: text; 
   }
   .tour-subtitle { 
     color: #e8f4f8; 
     font-size: 1.3rem; 
     font-weight: 400; 
     line-height: 1.6; 
     margin-bottom: 3rem; 
     text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
     max-width: 600px; 
     margin-left: auto; 
     margin-right: auto; 
   }
       .tour-locations { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
      gap: 2rem; 
      margin-bottom: 3rem; 
      max-width: 900px; 
      margin-left: auto; 
      margin-right: auto; 
    }
    .location-item { 
      text-align: center; 
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
      position: relative; 
    }
    .location-item:hover { 
      transform: translateY(-10px); 
    }
    .location-item .church-photo { 
      width: 120px; 
      height: 120px; 
      border-radius: 50%; 
      object-fit: cover; 
      margin: 0 auto 1rem; 
      box-shadow: 0 8px 25px rgba(0,0,0,0.3); 
      transition: transform 0.3s ease; 
      border: 4px solid rgba(229,198,116,0.3); 
    }
    .location-item:hover .church-photo { 
      transform: scale(1.05); 
      box-shadow: 0 12px 35px rgba(0,0,0,0.4); 
      border-color: rgba(229,198,116,0.6); 
    }
   .location-name { 
     color: #ffffff; 
     font-size: 1.3rem; 
     font-weight: 700; 
     margin-bottom: 0.5rem; 
   }
   .location-desc { 
     color: #b8d4e3; 
     font-size: 0.95rem; 
     line-height: 1.5; 
   }
   .btn-tour-start { 
     background: linear-gradient(135deg, #e5c674 0%, #f1e2b8 100%); 
     color: #2c3e50; 
     border: none; 
     border-radius: 50px; 
     padding: 18px 36px; 
     font-size: 1.1rem; 
     font-weight: 600; 
     display: inline-flex; 
     align-items: center; 
     gap: 12px; 
     box-shadow: 0 8px 25px rgba(229,198,116,0.4); 
     transition: all 0.3s ease; 
     cursor: pointer; 
     text-decoration: none; 
   }
   .btn-tour-start:hover { 
     transform: translateY(-3px); 
     box-shadow: 0 12px 35px rgba(229,198,116,0.5); 
     color: #2c3e50; 
     text-decoration: none; 
   }
   .btn-icon { 
     width: 24px; 
     height: 24px; 
     display: flex; 
     align-items: center; 
     justify-content: center; 
   }
   @media (max-width: 767.98px) { 
     .virtual-tour-section { min-height: 80vh; } 
     .title-line-1 { font-size: 2.5rem; } 
     .title-line-2 { font-size: 3rem; } 
     .tour-subtitle { font-size: 1.1rem; } 
     .tour-locations { grid-template-columns: 1fr; gap: 1.5rem; } 
     .location-item { padding: 1.5rem; } 
     .btn-tour-start { padding: 16px 32px; font-size: 1rem; } 
   }
