      :root {
        /* Mathura Spiritual Theme */
        --primary-blue: #7F1D1D; /* Deep Crimson for headings (keeping variable name for HTML compatibility) */
        --secondary-blue: #991B1B; /* Rust Red */
        --accent-yellow: #F97316; /* Vibrant Saffron/Orange */
        --accent-glow: rgba(249, 115, 22, 0.4);
        --soft-gray: #FFF8EB; /* Warm Cream background */
        --deep-gold: #EA580C; /* Dark Orange */
        --premium-shadow: 0 20px 40px rgba(127, 29, 29, 0.08);
        --glass-bg: rgba(255, 250, 240, 0.95);
        --glass-border: rgba(249, 115, 22, 0.25);
      }
      body { font-family: 'Jost', sans-serif; color: #431407; line-height: 1.8; overflow-x: hidden; background-color: #FFFBEB; }
      
      /* --- Pro Level Hero --- */
      .hero-section { 
        background: var(--primary-blue);
        min-height: 70vh; 
        display: flex; 
        align-items: center; 
        position: relative;
        text-align: center;
        overflow: hidden;
      }
      .hero-bg-zoom {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(135deg, rgba(127, 29, 29, 0.85) 0%, rgba(249, 115, 22, 0.45) 100%), url('../img/destinations/mathura.jpg');
        background-size: cover;
        background-position: center;
        animation: kenburns 25s infinite alternate ease-in-out;
        z-index: 1;
      }
      @keyframes kenburns {
        0% { transform: scale(1); }
        100% { transform: scale(1.15); }
      }
      .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0; height: 150px;
        background: linear-gradient(to top, #FFFBEB, transparent);
        z-index: 2;
        pointer-events: none;
      }
      
      /* --- Typography & Titles --- */
      .section-title { 
        font-size: 46px; 
        font-weight: 800; 
        color: var(--primary-blue); 
        margin-bottom: 25px; 
        line-height: 1.2; 
        letter-spacing: -1px; 
        position: relative; 
        display: inline-block;
      }
      .section-title::after { 
        content: ''; 
        position: absolute; 
        bottom: -12px; 
        left: 0; 
        width: 80px; 
        height: 5px; 
        background: linear-gradient(90deg, var(--accent-yellow), transparent); 
        border-radius: 5px; 
      }
      .text-center .section-title::after { 
        left: 50%; 
        transform: translateX(-50%); 
        background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent); 
        width: 120px;
      }
      
      .text-content { font-size: 18px; color: #78350F; margin-bottom: 30px; text-align: justify; font-weight: 400; }
      
      /* --- Premium Cards (Temple Arch Style) --- */
      .feature-box {
        padding: 50px 35px 35px;
        background: var(--glass-bg);
        border-radius: 120px 120px 24px 24px; /* Arch shape */
        box-shadow: var(--premium-shadow);
        border: 1px solid var(--glass-border);
        height: 100%;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        z-index: 1;
        text-align: center;
      }
      .feature-box::before {
        content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
        background: linear-gradient(90deg, var(--accent-yellow), var(--deep-gold));
        transform: scaleX(0); transform-origin: center; transition: transform 0.5s ease;
        border-radius: 0 0 24px 24px;
      }
      .feature-box:hover { 
        transform: translateY(-12px); 
        box-shadow: 0 30px 60px rgba(127, 29, 29, 0.15); 
        background: #fff;
      }
      .feature-box:hover::before { transform: scaleX(1); }
      .feature-box i { transition: all 0.4s ease; display: inline-block; }
      .feature-box:hover i { transform: scale(1.2); color: var(--accent-yellow) !important; text-shadow: 0 0 15px var(--accent-glow); }

      .service-card {
        background: #fff;
        border-radius: 120px 120px 24px 24px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: all 0.4s ease;
        height: 100%;
        border: 1px solid #FDE68A;
        display: flex;
        flex-direction: column;
      }
      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(127,29,29,0.12);
      }
      .service-img-wrap {
        overflow: hidden;
        position: relative;
        border-radius: 120px 120px 0 0;
      }
      .service-img {
        height: 260px;
        background-size: cover;
        background-position: center;
        transition: transform 0.7s ease;
      }
      .service-card:hover .service-img {
        transform: scale(1.1);
      }
      .service-content {
        padding: 35px 30px;
        flex-grow: 1;
        background: #fff;
        position: relative;
        z-index: 2;
        text-align: center;
      }
      
      .cta-planning-box {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
        color: #fff;
        padding: 70px 60px;
        border-radius: 40px;
        margin-top: 60px;
        margin-bottom: 60px;
        box-shadow: 0 25px 50px rgba(127, 29, 29, 0.3);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
        position: relative;
        overflow: hidden;
      }
      .cta-planning-box::after {
        content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
        background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
        border-radius: 50%; pointer-events: none;
      }
      
      .btn-premium {
        background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--deep-gold) 100%);
        color: #fff;
        padding: 18px 45px;
        border-radius: 100px;
        font-weight: 800;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        transition: all 0.4s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 10px 25px var(--accent-glow);
        text-decoration: none;
        position: relative;
        overflow: hidden;
      }
      .btn-premium::before {
        content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transform: skewX(-25deg); transition: 0.5s;
      }
      .btn-premium:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(249, 115, 22, 0.6);
        color: #fff;
      }
      .btn-premium:hover::before { left: 150%; }

      /* --- FAQ Accordion --- */
      .faq-accordion-item {
        background: #fff;
        border-radius: 20px;
        margin-bottom: 20px;
        border: 1px solid #FDE68A;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      }
      .faq-header {
        padding: 28px 40px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        color: var(--primary-blue);
        font-size: 18px;
        transition: all 0.3s ease;
      }
      .faq-item.active { 
        border-color: transparent; 
        box-shadow: 0 20px 40px rgba(127,29,29,0.08); 
      }
      .faq-item.active .faq-header { 
        background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue)); 
        color: #fff; 
      }
      .faq-item.active .faq-header i { transform: rotate(45deg); color: var(--accent-yellow); }
      .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 40px;
        background: #fff;
      }
      .faq-item.active .faq-content { max-height: 600px; padding: 30px 40px 45px; border-top: 1px solid #FFF8EB; }

      /* --- Utilities & Enhancements --- */
      .text-yellow { color: var(--accent-yellow) !important; }
      .text-white { color: #ffffff !important; }
      .text-white-80 { color: rgba(255, 255, 255, 0.8) !important; }
      .bg-soft { background: #FFF8EB; }
      .bg-light-textured { background: #FEF3C7; position: relative; }
      
      .seo-blocks { background: #fff; padding-top: 60px; padding-bottom: 60px; }
      .seo-blocks h3 { font-size: 22px; color: var(--primary-blue); font-weight: 800; margin-top: 35px; margin-bottom: 15px; position: relative; padding-left: 15px; }
      .seo-blocks h3::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 4px; background: var(--accent-yellow); border-radius: 4px; }
      .seo-blocks p { font-size: 16px; color: #78350F; margin-bottom: 20px; line-height: 1.8; font-weight: 400; }

      /* --- Utility Classes for missing components --- */
      .flex-center { display: flex; justify-content: center; align-items: center; }
      .size-70 { width: 70px; height: 70px; }
      .size-50 { width: 50px; height: 50px; }
      .rounded-full { border-radius: 50%; }
      .bg-accent-yellow { background-color: var(--accent-yellow) !important; }
      .text-primary-blue { color: var(--primary-blue) !important; }
      .bg-blue-1-05 { background-color: rgba(127, 29, 29, 0.05); }
      .bg-blue-1 { background-color: var(--primary-blue) !important; }
      .fw-800 { font-weight: 800; }
      .text-24 { font-size: 24px; }
      .shadow-lg { box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3); }
      .relative { position: relative; }
      .z-3 { z-index: 3; }

      /* --- Slide Up Form --- */
      .form-box {
        box-shadow: 0 -20px 50px rgba(127, 29, 29, 0.15);
      }
      .form-box form {
        position: relative;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-top: 5px solid var(--accent-yellow);
      }
      .close-btn {
        position: absolute;
        top: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: 44px;
        height: 44px;
        background: #fff;
        border: 2px solid var(--accent-yellow);
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      .close-btn:hover { background: var(--accent-yellow); color: #fff; transform: translateX(-50%) scale(1.1); }
      .form-box input, .form-box textarea {
        background: #FFFBEB;
        border: 1px solid #FDE68A;
        transition: all 0.3s;
      }
      .form-box input:focus, .form-box textarea:focus {
        border-color: var(--accent-yellow);
        outline: none;
        box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
        background: #fff;
      }

      /* --- Mobile Responsive Fixes --- */
      @media (max-width: 768px) {
        .hero-section { min-height: 60vh; padding: 120px 0 80px; }
        .hero-section h1 { font-size: 36px !important; line-height: 1.3 !important; }
        .hero-section p { font-size: 16px !important; }
        .section-title { font-size: 32px; }
        .feature-box { padding: 30px 25px; border-radius: 60px 60px 24px 24px; }
        .service-card { border-radius: 60px 60px 24px 24px; }
        .service-img-wrap { border-radius: 60px 60px 0 0; }
        .cta-planning-box { padding: 40px 30px; border-radius: 24px; text-align: center; justify-content: center; }
        .cta-planning-box h3 { font-size: 26px; }
        .btn-premium { width: 100%; padding: 18px 20px; }
        .text-content { font-size: 16px; }
        .faq-header { padding: 20px 25px; font-size: 16px; }
        .faq-item.active .faq-content { padding: 20px 25px 30px; }
        .service-content { padding: 25px 20px; }
      }
/* --- Split Screen Hero --- */
.hero-split {
  display: flex;
  min-height: 85vh;
  background-color: var(--soft-gray);
  position: relative;
  overflow: hidden;
}
.hero-split-text {
  flex: 1;
  padding: 10% 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background: var(--soft-gray);
}
.hero-split-image {
  flex: 1;
  background-image: url('../img/destinations/mathura.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-split-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--soft-gray) 0%, transparent 30%);
}

/* --- Zig-Zag Layout --- */
.zig-zag-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 50px;
}
.zig-zag-row:nth-child(even) {
  flex-direction: row-reverse;
}
.zig-zag-img {
  flex: 1;
  border-radius: 200px 200px 30px 30px;
  overflow: hidden;
  box-shadow: var(--premium-shadow);
  height: 400px;
  position: relative;
}
.zig-zag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.zig-zag-row:hover .zig-zag-img img {
  transform: scale(1.08);
}
.zig-zag-content {
  flex: 1;
}

/* --- Masonry Gallery --- */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
}
.masonry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(127, 29, 29, 0.95), rgba(127, 29, 29, 0.4), transparent);
  padding: 40px 20px 20px;
  color: white;
}
.masonry-overlay p {
  color: rgba(255, 255, 255, 0.95) !important;
}
.masonry-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: block; /* Make sure a tag behaves like a block */
}
.masonry-item.large {
  grid-row: span 2;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.masonry-item:hover img {
  transform: scale(1.1);
}

/* --- Spiritual Quote Block --- */
.spiritual-quote {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  padding: 80px 40px;
  text-align: center;
  border-radius: 40px;
  box-shadow: var(--premium-shadow);
  position: relative;
  overflow: hidden;
}
.spiritual-quote::before {
  content: '\f10d'; /* FontAwesome quote-left */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 150px;
  color: rgba(255,255,255,0.05);
}

/* --- Magazine SEO Reading --- */
.magazine-reading {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2;
  color: #431407;
}
.magazine-reading h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-top: 50px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-yellow);
  padding-bottom: 10px;
  display: inline-block;
}
.magazine-reading p {
  margin-bottom: 25px;
}

/* Mobile Resets for new layouts */
@media (max-width: 768px) {
  /* Hero Split */
  .hero-split { flex-direction: column-reverse; display: flex; min-height: auto; padding-top: 80px; }
  .hero-split-image { position: relative; width: 100%; height: 350px; border-radius: 0 0 40px 40px; right: auto; top: auto; }
  .hero-split-image::after { background: linear-gradient(180deg, var(--soft-gray) 0%, transparent 30%); }
  .hero-split-text { position: relative; width: 100%; padding: 40px 20px 60px; text-align: center; }
  .hero-split-text h1 { font-size: 32px !important; }
  .hero-split-text p { font-size: 16px !important; }

  /* Zig-Zag Services */
  .zig-zag-row, .zig-zag-row:nth-child(even) { flex-direction: column; gap: 30px; margin-bottom: 60px; }
  .zig-zag-img { height: 250px; border-radius: 40px; width: 100%; }
  
  /* Masonry Grid */
  .masonry-item.large { grid-row: span 1; }
  
  /* Spiritual Quote */
  .spiritual-quote { padding: 50px 25px; border-radius: 30px; }
  .spiritual-quote h2 { font-size: 18px !important; line-height: 1.6; }
  .spiritual-quote::before { font-size: 80px; top: -10px; left: 15px; }
  
  /* Magazine Reading */
  .magazine-reading { font-size: 16px; padding: 0 10px; }
  .magazine-reading h2 { font-size: 26px !important; line-height: 1.4; }
  .magazine-reading h3 { font-size: 22px; margin-top: 30px; }
}
