
/* Sliding Bar */
.sliding-bar {
  background: linear-gradient(90deg,#4a90e2 18%, #ff6f61 100%);
  color: #fff;
  padding: 12px 0;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 18px 18px;
  margin-bottom: 5px;
}
.sliding-bar p {
  display: inline-block;
  white-space: nowrap;
  animation: slide-left 50s linear infinite;
}
@keyframes slide-left {
  0% { transform: translateX(100%);}
  100% { transform: translateX(-100%);}
}

/* Guide Info Section */
.guide-info-section {
  background: #f9f9f9;
  padding: 26px 0;
  text-align: center;
  color: #2c3e50;
}
.guide-info-container {
  max-width: 800px;
  margin: auto;
  padding: 18px 2vw;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.guide-info-container h2 {
  font-size: 1.3rem;
  margin-bottom: 13px;
  color: #e74c3c;
}
.guide-info-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.read-more-btn {
  display: inline-block;
  padding: 11px 21px;
  background: #e74c3c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.read-more-btn:hover, .read-more-btn:focus {
  background: #c0392b;
}

.ticket-button:hover, .ticket-button:focus {
  background: linear-gradient(135deg,var(--color-primary),var(--color-secondary));
  transform: translateY(-4px) scale(1.04);
}
.floating-book-now {
  background: #c62828;
  color: #fff;
  padding: 8px 14px;
  font-size: 1.07rem;
  font-weight: bold;
  text-align: center;
  animation: glow 1.5s ease-in-out infinite alternate;
  border-radius: 10px;
  margin: 16px auto;
  width: fit-content;
}
@keyframes glow {
  from { text-shadow: 0 0 5px #fff, 0 0 10px #ff5252;}
  to   { text-shadow: 0 0 10px #fff, 0 0 20px #ff1744;}
}
/* Floating Graphics */
.floating-graphic {
  position: absolute; border-radius: 50%; opacity: 0.12;
  background: var(--color-primary); filter: blur(30px);
  animation: floatMove 8s ease-in-out infinite alternate;
}
.circle1 { width:120px; height:120px; top:14%; left:7%;}
.circle2 { width:90px; height:90px; bottom:14%; right:10%;}
.circle3 { width:60px; height:60px; top:24%; right:17%;}
@keyframes floatMove { to { transform: translateY(-14px) translateX(9px);} }


.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;   /* increased */
  height: 90px;  /* increased */
  border-radius: 100%;
  text-decoration: none;
  cursor: pointer;
  background: #ffffff00;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.footer {
  background: linear-gradient(to bottom, #000000, #0a0a23);
  color: white;
  padding: 30px 5vw 20px 5vw;
  font-family: Arial, sans-serif;
  border-radius: 20px 20px 0 0;
  margin-top: 10px;
}
.footer h3 { color: orange; margin-bottom: 12px;}
.footer-container { display: flex; flex-direction: column; align-items: center; gap: 15px;}
.footer-col { flex: 1 1 250px; margin: 0; width: 100%;}
.footer-col ul { list-style: none; padding: 0;}
.footer-col ul li { padding: 8px 0; color: #ddd;}
.footer-col ul li a { color: #ddd; text-decoration: none; transition: color 0.3s;}
.footer-col ul li a:active, .footer-col ul li a:focus, .footer-col ul li a:hover { color: orange;}
.footer p i { margin-right: 8px; color: orange;}
.footer-social { display: flex; justify-content: center; gap: 1.3rem; margin-top: 1.2rem;}
.footer-social a { font-size:1.45rem; color: #bbb; transition: color var(--transition);}
.footer-social a:active, .footer-social a:focus, .footer-social a:hover { color: var(--color-accent);}
.footer p { margin-top: 18px; color: #fff; font-size: 1rem;}

/* Mobile - improve tap targets and layout */
nav .menu-toggle, .mobile-menu a, .book-tour-btn, .footer-col ul li a, .floating-review, .floating-call {
  min-height: 48px;
}
/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container { flex-direction: column; align-items: center;}
}
@media (max-width: 700px) {
  .floating-review { font-size: 0.98rem; padding: 10px 14px; bottom: 16px; left: 16px;}
  .floating-call   { font-size: 1.3rem;  padding: 10px 12px; bottom: 16px; right: 16px;}
  .footer { padding: 21px 8px;}
  .footer-social a { font-size:1.7rem; padding: 0 8px;}
  .container, main.container { width: 98vw; padding-left: 0; padding-right: 0;}
  .ticket-grid { grid-template-columns: 1fr;}
  .tajmahal-img { max-height: 170px;}
}

/* Social icons for quick links in footer */
.footer-social-quicklinks {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: center;
}
.footer-icon {
  display: inline-block;
  width: 38px; height: 38px;
  font-size: 1.7rem;
  background: #444;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.footer-icon.insta { background: linear-gradient(45deg,#fd5949,#d6249f,#285AEB); }
.footer-icon.insta:hover, .footer-icon.insta:focus { color: #fff; background: linear-gradient(45deg,#d6249f,#fd5949,#fccc63); transform: scale(1.08); }
.footer-icon.gmail { background: #ea4335; }
.footer-icon.gmail:hover, .footer-icon.gmail:focus { color: #fff; background: #c5221f; transform: scale(1.08); }
.footer-icon.facebook { background: #1877f3; }
.footer-icon.facebook:hover, .footer-icon.facebook:focus { color: #fff; background: #145db2; transform: scale(1.08); }

/* Desktop: Keep nav links in a straight horizontal line */
@media (min-width: 769px) {
  nav ul.nav-links {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
  }
  nav ul.nav-links li {
    display: inline-block;
    white-space: nowrap;
  }`
} /* Add this CSS below your existing styles (or near other button styles) */

.book-guided-tour-btn {
  display: inline-block;
  margin: 18px auto 0 auto;
  padding: 14px 34px;
  background: linear-gradient(90deg, #FFD700 0%, #ff6f61 90%);
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(255,111,97,0.18), 0 2px 8px #FFD70060;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  z-index: 2;
  animation: popGlow 2.3s infinite alternate;
}
.book-guided-tour-btn:hover,
.book-guided-tour-btn:focus {
  background: linear-gradient(90deg, #ff6f61 0%, #FFD700 90%);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 8px 32px #FFD70080, 0 2px 10px #ff6f61a0;
}
@keyframes popGlow {
  0% { box-shadow: 0 2px 10px #FFD70060, 0 0 0 #ff6f6100; }
  60% { box-shadow: 0 8px 32px #FFD70080, 0 0 16px #ff6f6120; }
  100% { box-shadow: 0 4px 18px #ff6f6140, 0 0 8px #FFD70030; }
}
@media (max-width: 600px) {
  .book-guided-tour-btn {
    font-size: 1rem;
    padding: 12px 0;
    width: 90%;
    margin: 14px auto 0 auto;
  }
}
@media (max-width: 600px) {
  .hero-content {
    margin-top: 35px;
  }
}
.book-tour-container {
  text-align: center;
  margin: 20px auto;
}

.book-tour-btn {
  background: #1976d2;   /* professional blue */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.book-tour-btn:hover {
  background: #125aa0;   /* darker blue on hover */
  transform: scale(1.05);
}
/* Social icons inside mobile menu */
.mobile-social-icons {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 20px;                 /* equal spacing between icons */
  margin-top: 16px;
  text-align: center;
}

.mobile-social-icons a {
  font-size: 1.8rem;         /* bigger icons */
  color: var(--color-dark);
  transition: color 0.3s, transform 0.2s;
}

.mobile-social-icons a:hover {
  color: var(--color-secondary);
  transform: scale(1.2);
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-social-icons {
    display: none;
  }
}
.mobile-social-icons {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.mobile-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.2s ease, background 0.3s ease;
}

/* Gmail button */
.mobile-social-icons a[aria-label="Gmail"] {
  background: #ea4335;
}
.mobile-social-icons a[aria-label="Gmail"]:hover {
  background: #c5221f;
  transform: scale(1.1);
}

/* WhatsApp button */
.mobile-social-icons a[aria-label="WhatsApp"] {
  background: #25d366;
}
.mobile-social-icons a[aria-label="WhatsApp"]:hover {
  background: #128c7e;
  transform: scale(1.1);
}

/* Instagram button */
.mobile-social-icons a[aria-label="Instagram"] {
  background: linear-gradient(45deg,#fd5949,#d6249f,#285AEB);
}
.mobile-social-icons a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg,#d6249f,#fd5949,#fccc63);
  transform: scale(1.1);
}

/* Hide on desktop */
@media (min-width: 769px) {
  .mobile-social-icons {
    display: none;
  }
}

/* Booking Page */
.booking-section {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 2rem auto;
}

.booking-form .form-group {
  margin-bottom: 1.2rem;
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}

.submit-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background: var(--color-primary);
  transform: scale(1.05);
}
/* Pricing Section */
.pricing-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
}

.pricing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 1.5rem;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-header h3 {
  margin: 5px 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
}

.pricing-body {
  text-align: left;
  margin: 1rem 0;
}

.pricing-body h4 {
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pricing-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-body ul li {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #333;
}

.book-btn {
  display: block;
  width: 100%;
  background: #4CAF50;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 12px;
}

.book-btn:hover {
  background: #388e3c;
  transform: scale(1.05);
}

.currency-toggle {
  margin-top: 15px;
  font-size: 0.95rem;
}

.currency-toggle label {
  margin: 0 10px;
  cursor: pointer;
}
/* Tour Details */
.tour-details {
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.notice-box {
  background: #fff3cd;
  color: #856404;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.tour-details ol {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.included li {
  color: #2e7d32;
  margin-bottom: 6px;
}

.not-included li {
  color: #c62828;
  margin-bottom: 6px;
}

.charges-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.charges-table th,
.charges-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.charges-table th {
  background: #f5f5f5;
}
.tour-hero {
  margin: 2rem auto;
}

.tour-hero-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.tour-hero-image {
  flex: 1 1 50%;
}

.tour-hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.tour-hero-details {
  flex: 1 1 45%;
}

.tour-hero-details h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.tour-hero-details .tag {
  background: #ffc107;
  color: #000;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.tour-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  margin-top: 1rem;
}

.tour-pricing {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.tour-why ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1rem;
}

.book-btn {
  display: inline-block;
  text-align: center;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  border: none;
  border-radius: 50px;  /* ✅ Curved edges */
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.book-btn:hover {
  background: linear-gradient(135deg, #45a049, #256d27);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.currency-switcher {
  text-align: center;
  margin: 15px 0;
}

.currency-switcher select {
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 25px;
  border: 2px solid #4CAF50;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.currency-switcher select:hover {
  border-color: #388E3C;
  background: #f9f9f9;
}

.currency-switcher label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 15px;
  color: #444;
}
.guide-info {
  margin: 50px auto;
  padding: 20px;
}

.guide-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.guide-image img {
  width: 220px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.guide-details {
  flex: 1;
}

.guide-details h3 {
  font-size: 1.6rem;
  color: #2E7D32;
  margin-bottom: 10px;
}

.guide-details p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

.guide-details ul {
  list-style: none;
  padding: 0;
}

.guide-details ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}


/* === Professional & Elegant Typography === */
body {
  font-family: 'Poppins', sans-serif;
  color: #222; /* Darker, more professional tone */
  line-height: 1.75;
  font-size: 1rem;
  background-color: #fdfdfd;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222; /* Unified elegant heading color */
  margin-bottom: 0.7em;
}

/* Elegant section titles */
.section-title,
.guide-info-container h2,
.tour-hero-details h1,
.testimonials h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 1rem;
}

/* === Refined Link Styling === */
a {
  color: #004aad;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
a:hover {
  color: #ff6f61;
}

/* === Professional Buttons === */
.book-guided-tour-btn,
.book-tour-btn,
.submit-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #004aad, #0077ff);
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.book-guided-tour-btn:hover,
.book-tour-btn:hover,
.submit-btn:hover {
  background: linear-gradient(135deg, #003380, #0059c1);
  transform: scale(1.05);
}

/* === Elegant Tour Cards === */
.tour-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.tour-card h3 {
  color: #004aad;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.tour-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}



/* ✅ Modern Meet Your Guide Styling */
.modern-guide-section {
  background: url('images/1.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 70px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dark overlay for better readability */
.modern-guide-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  z-index: 0;
}

/* Container */
.modern-guide-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 1;
}

/* Guide Image */
.guide-image img {
  width: 220px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.guide-image img:hover {
  transform: scale(1.05);
}

/* Guide Content */
.guide-content {
  max-width: 550px;
  text-align: left;
}

.guide-content h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.guide-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f5f5f5;
  margin-bottom: 15px;
}

/* Read More Button */
.modern-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ff6f61, #ff9d76);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.modern-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .modern-guide-container {
    flex-direction: column;
    text-align: center;
  }
  .guide-content {
    text-align: center;
  }
}
/* Guide Section */
.guide-info {
  background: linear-gradient(135deg, #000000, #282e5e);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Container */
.guide-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: #fff;
}

/* Guide image with circular glow */
.guide-img img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 0 25px rgba(0, 74, 173, 0.7);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.guide-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(20, 15, 173, 0.9);
}

/* Guide text */
.guide-text {
  max-width: 500px;
  text-align: left;
}
.guide-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ffdd33;
  animation: fadeInUp 1s ease;
}
.guide-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #f0f0f0;
  animation: fadeInUp 1.3s ease;
}

/* Button */
.btn-main {
  background: #094652;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}
.btn-main:hover {
  background: #094652a6;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #0a0f2c, #000000);
  padding: 80px 20px;
  color: #fff;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

/* Decorative FAQ image */
.faq-decor img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.faq-decor img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(37, 20, 138, 0.7);
}

/* FAQ Content */
.faq-content {
  flex: 1;
}
.faq-content h2 {
  font-size: 2.2rem;
  color: #ffdd33;
  margin-bottom: 25px;
}

/* Accordion */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  text-align: left;
  width: 100%;
  padding: 12px 0;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: #fdfdff97;
}
.faq-answer {
  display: none;
  padding: 10px 0 15px;
  font-size: 0.95rem;
  color: #ddd;
}

/* Show Answer */
.faq-item.active .faq-answer {
  display: block;
}
/* ============================
   🏛 Official Visitor Guidelines
============================ */
.tickets-section {
  background-color: #f8f9fa;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 50px 25px;
  color: #222;
  font-family: "Roboto", "Noto Sans", Arial, sans-serif;
}

.tickets-container {
  max-width: 900px;
  margin: 0 auto;
}

.tickets-section h2 {
  text-align: center;
  font-size: 1.7rem;
  color: #003366;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  border-bottom: 2px solid #003366;
  display: inline-block;
  padding-bottom: 5px;
  width: 100%;
}

.guidelines-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #2b2b2b;
  margin-bottom: 18px;
  text-align: justify;
}

.guidelines-text a {
  color: #004b8d;
  text-decoration: none;
}

.guidelines-text a:hover {
  text-decoration: underline;
}

.official-links {
  margin-left: 20px;
  margin-bottom: 25px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.official-links li {
  margin-bottom: 8px;
}

.note {
  background: #eef4fb;
  border-left: 4px solid #004b8d;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 0.9rem;
}

/* 📱 Responsive Style */
@media (max-width: 768px) {
  .tickets-section {
    padding: 35px 15px;
  }

  .tickets-section h2 {
    font-size: 1.4rem;
  }

  .guidelines-text,
  .official-links {
    font-size: 0.9rem;
  }
}

/* Section Background */
.modern-services {
  padding: 80px 6%;
  background: linear-gradient(to bottom, #f8f8f8, #ececec);
  font-family: 'Poppins', sans-serif;
}

/* Header */
.modern-services .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
}

.modern-services .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #545454;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

/* Premium Service Cards */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.18);
}

/* Image Styling */
.image-wrap {
  height: 200px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.09);
}

/* Text Area */
.service-info {
  padding: 20px;
  text-align: left;
}

.service-info h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1f1f1f;
}

.service-info p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.55;
}

/* Bottom Note */
.services-note {
  margin-top: 50px;
  text-align: center;
  font-size: 1.2rem;
  color: #222;
  font-weight: 500;
}


/* Footer */
.footer {
  background: linear-gradient(135deg, #0d0d0f, #1a1c25, #0f2027);
  color: #ccc;
  padding: 70px 20px 30px;
  font-size: 0.95rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.footer-col h3, 
.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.footer-col p {
  margin: 8px 0;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff6f61;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.3rem;
  color: #ddd;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #ff6f61;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}


.post-question-btn {
  display: inline-block;
  margin: 12px 0 25px 0;
  padding: 12px 28px;
  background: linear-gradient(135deg, #4a90e2, #0077ff);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, transform 0.2s;
}

.post-question-btn:hover {
  background: linear-gradient(135deg, #003380, #0059c1);
  transform: scale(1.05);
}
/* ===== Apple-Style Floating Premium Button (All Devices) ===== */
.premium-btn {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;

  /* 🍏 Glassy Apple Look */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #111827;

  /* Soft floating shadow */
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.1),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.55);

  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 🖱️ Hover/Focus interaction */
.premium-btn:hover,
.premium-btn:focus-visible {
  transform: translateX(-50%) translateY(-3px);
  background: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  color: #000;
}

/* 🧠 Tap/Click feedback */
.premium-btn:active {
  transform: translateX(-50%) scale(0.97);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* ✨ Subtle Apple blue accent glow */
.premium-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(0, 122, 255, 0.15), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.premium-btn:hover::after {
  opacity: 1;
}

/* 📱 Responsive adjustments */
@media (max-width: 768px) {
  .premium-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .premium-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
    bottom: 18px;
  }
}

.login-btn {
  background: #007aff; /* Apple Blue */
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  margin-left: 12px;
}
.login-btn:hover {
  background: #005ecb;
  transform: translateY(-2px);
}
.visitor-counter {
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e, #16213e); /* dark gradient */
  color: #FFD700;
  padding: 16px 10px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-top: 3px solid #ff6f61;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}

.visitor-counter p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.visitor-counter p::before {
  content: "👥";
  font-size: 1.4rem;
}

/* ===== Search Bar ===== */
.search-bar {
  max-width: 500px;
  margin: 20px auto 40px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 12px 45px 12px 18px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.search-bar input:focus {
  border-color: #4285f4;
  box-shadow: 0 4px 12px rgba(66,133,244,0.25);
}
.search-bar i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}
#scrollTopBtn {
  display: none;   /* hidden by default */
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1099;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#scrollTopBtn img {
  width: 32px;
  height: 32px;
}

/* === GOOGLE-STYLE SPLIT HERO LAYOUT === */
.hero-google {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
  padding: 3rem 2rem;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* Left Text Section */
.hero-left {
  flex: 1 1 480px;
  text-align: left;
  animation: fadeUp 1s ease;
}

.hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  color: #202124;
}

.hero-left .highlight {
  background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  margin-top: 1rem;
  color: #5f6368;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.google-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(26, 115, 232, 0.3);
}
.google-btn:hover {
  background: #155ab6;
  transform: translateY(-2px);
}
.outline-btn {
  background: #fff;
  border: 2px solid #dadce0;
  color: #3c4043;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.outline-btn:hover {
  border-color: #1a73e8;
  color: #1a73e8;
  transform: translateY(-2px);
}

/* Right Slideshow Section */
.hero-right {
  flex: 1 1 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  animation: fadeIn 1.3s ease;
}

.hero-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 420px;
}

.hero-slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  border-radius: 20px;
  animation: slideFade 30s infinite;
}

.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 6s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 12s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 18s; }
.hero-slideshow .slide:nth-child(5) { animation-delay: 24s; }

@keyframes slideFade {
  0%, 20%, 100% { opacity: 0; }
  10%, 15% { opacity: 1; }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    order: 1;
    text-align: center;
  }
  .hero-right {
    order: 2;
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
  }
  .hero-slideshow {
    min-height: 320px;
  }
  .hero-left h1 {
    font-size: 2.2rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
  .google-btn, .outline-btn {
    width: 90%;
  }
}
/* === Toast Message Styling === */
.toast {
  visibility: hidden;
  min-width: 280px;
  background: rgba(32, 33, 36, 0.9);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 14px 20px;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}

/* === Full-Screen Taj Mahal Banner === */
.taj-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-top: 4px solid #b78b1e;
  border-bottom: 4px solid #b78b1e;
  font-family: 'Playfair Display', serif;
}

/* Taj Mahal Image Full-Screen */
.taj-banner-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.taj-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 6s ease;
}

/* Gentle zoom effect */
.taj-banner-image:hover img {
  transform: scale(1.05);
}

/* === Overlay Text (Centered) === */
.taj-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
  padding: 0 1rem;
  z-index: 2;
}

.taj-overlay h2 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f8e49d, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem;
}

.taj-overlay p {
  font-size: 1.3rem;
  font-style: italic;
  color: #f7f1e0;
  max-width: 700px;
  margin: 0 auto;
}

/* === Subtle Gradient Overlay === */
.taj-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.4));
  z-index: 1;
}

/* === Mughal-Style Description Box === */
.taj-description {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.2rem 2rem;
  background: #fffaf1;
  border: 2px solid #d4af37;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  color: #3b2a10;
  line-height: 1.9;
  font-size: 1.1rem;
  overflow: hidden;
}

/* Arch Top Ornament */
.taj-description::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  background: #fffaf1;
  border: 2px solid #d4af37;
  border-bottom: none;
  border-radius: 60px 60px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Inner Gold Border */
.taj-description::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212,175,55,0.5);
  border-radius: 18px;
  pointer-events: none;
}

/* Typography Enhancements */
.taj-description strong {
  color: #b8860b;
  font-weight: 700;
}

.taj-description em {
  color: #6b4c2f;
  font-style: italic;
}

/* === Responsive === */
@media (max-width: 992px) {
  .taj-overlay h2 { font-size: 2.8rem; }
  .taj-overlay p { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .taj-overlay h2 { font-size: 2.2rem; }
  .taj-overlay p { font-size: 1rem; }
  .taj-description {
    max-width: 95%;
    margin: 2rem auto;
    padding: 1.5rem 1.2rem;
    font-size: 1rem;
    border-radius: 14px;
  }
  .taj-description::before {
    width: 80px;
    height: 40px;
    top: -20px;
    border-width: 1.5px;
  }
}

@media (max-width: 480px) {
  .taj-overlay h2 { font-size: 1.6rem; }
  .taj-description {
    padding: 1.2rem;
    font-size: 0.95rem;
  }
}
/* === Google-Style "Know More" Button === */
.know-more-btn {
  position: absolute;
  top: 20px;
  left: 25px;
  background: #ffffff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.know-more-btn:hover {
  background: #f2f2f2;
  transform: scale(1.05);
}

/* === Popup Modal === */
.taj-modal {
  display: none;
  position: fixed;
  z-index: 10;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.taj-modal-content {
  background: #fffaf1;
  border-radius: 16px;
  border: 2px solid #d4af37;
  max-width: 600px;
  width: 90%;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-family: 'Poppins', sans-serif;
  color: #3a2e20;
  position: relative;
  animation: scaleIn 0.3s ease;
}

/* Modal Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.8rem;
  color: #b8860b;
  cursor: pointer;
  transition: 0.2s;
}

.close-modal:hover {
  color: #000;
}

/* Popup Heading */
.taj-modal-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: #b8860b;
}

/* Popup Text */
.taj-modal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #3b2a10;
  margin-bottom: 1rem;
}

/* Book Now Button */
.book-now-btn {
  display: inline-block;
  background: linear-gradient(135deg, #b8860b, #ff6f61);
  color: #fff;
  padding: 12px 30px;
  border-radius: 35px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #ffffff, #f4f4f4);
  color: #b8860b;
  transform: scale(1.05);
}

/* === Responsive Modal === */
@media (max-width: 768px) {
  .taj-modal-content {
    padding: 1.5rem;
  }
  .taj-modal-content h3 {
    font-size: 1.3rem;
  }
  .taj-modal-content p {
    font-size: 0.95rem;
  }
  .book-now-btn {
    width: 100%;
    text-align: center;
  }
}
:root {
  --color-primary: rgb(33, 14, 14);
  --color-secondary: #4a90e2;
  --color-dark: #333;
  --color-light: #fafafa;
  --color-accent: #f1c40f;
  --font-base: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: 0.5s;
  --max-width: 1200px;
  --gutter: 24px;
  --radius: 20px;
  --shadow: 0 8px 24px rgba(0,0,0,0.09);
}
/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-base);
  color: var(--color-dark);
  background: var(--color-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
a { color: var(--color-secondary); text-decoration: none; transition: color var(--transition);}
a:hover { color: var(--color-primary);}
img { max-width: 100%; display: block;}
.container { width: 92vw; max-width: var(--max-width); margin: auto; }

nav {
  background: rgba(255, 255, 255, 0.95); /* semi-transparent white */
  backdrop-filter: blur(10px);
  position: sticky;
  top: 14px;               /* give it some space from the top */
  z-index: 100;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  border-radius: 50px;     /* round edges */
  width: 90%;              /* not full width */
  margin: 0 auto;          /* center it */
  transition: all 0.3s ease;
}

nav .nav-container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 5vw;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  position: relative;
}

nav .logo {
  height: 50px;
  border-radius: 12px;   /* soft rounded corners */
  transition: transform 0.3s ease;
}
nav .logo:hover { transform: scale(1.1);}


nav .book-tour-btn:active, nav .book-tour-btn:focus {
  background: linear-gradient(45deg, #ff9900, #ff6600);
}
nav ul.nav-links {
  display: flex;
  gap: var(--gutter);
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav ul.nav-links li { position: relative; }
nav ul.nav-links a {
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  color: var(--color-dark);
}
nav ul.nav-links a:hover, nav ul.nav-links a.active {
  background: var(--color-secondary);
  color: #fff;
}

nav ul.nav-links a.tour-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4a90e2 60%, #ff6f61 100%);
  animation: shimmer 2s infinite ease-in-out;
  border-radius: 2px;
}
@keyframes navGlow {
  0% { text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;}
  50% { text-shadow: 0 0 15px #FFA500, 0 0 25px #FFA500;}
  100% { text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700;}
}
@keyframes shimmer {
  0% { transform: scaleX(0); opacity: 0;}
  50% { transform: scaleX(1); opacity: 1;}
  100% { transform: scaleX(0); opacity: 0;}
}
/* === MENU BUTTON === */
.menu-toggle {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
}

.menu-gif {
  width: 38px;
  height: 38px;
  filter: hue-rotate(10deg) brightness(1.1);
  transition: transform 0.25s ease;
}
.menu-toggle:hover .menu-gif {
  transform: scale(1.15);
}

/* ============================================================
   📱 MOBILE VERSION
   ============================================================ */
@media (max-width: 768px) {
  .apple-navbar {
    width: 90%;
    padding: 6px 14px;
    border-radius: 60px;
  }

  .nav-links { display: none !important; }

  .nav-icons {
    gap: 14px;
  }

  .logo img { height: 42px; }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
  }

  .menu-gif {
    width: 40px;
    height: 40px;
  }

  /* === Slide Menu === */
  .mobile-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 80%;
    max-width: 360px;
    height: calc(100vh - 100px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    gap: 22px;
    transition: left 0.45s cubic-bezier(.68,-0.55,.27,1.55);
    z-index: 3500;
  }

  .mobile-menu.open { left: 10%; }

  .mobile-menu a {
    color: #1d1d1f;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    transition: color 0.25s ease;
  }

  .mobile-menu a:hover {
    color: #007aff;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 3000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.no-scroll { overflow: hidden; }
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 62px;
  right: 6vw;
  left: 6vw;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.18);
  border-radius: var(--radius);
  max-width: 98vw;
  padding: 15px 0;
  z-index: 99;
  animation: mobileMenuIn 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes mobileMenuIn {
  0% { opacity: 0; transform: translateY(-30px);}
  100% { opacity: 1; transform: translateY(0);}
}
.mobile-menu.open { display: flex;}
.mobile-menu a,
.mobile-menu li a {
  text-align: center !important;
  display: block;
  padding: 16px 0;
  font-size: 1.13rem;
  border-radius: 9px;
  margin: 2px 12px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu a:active, .mobile-menu a:focus, .mobile-menu a:hover {
  background: var(--color-secondary);
  color: #daa34a;
}


@keyframes softGlow {
  from { text-shadow: 0 0 8px rgba(255, 200, 0, 0.7);}
  to   { text-shadow: 0 0 16px rgba(255, 120, 0, 0.9);}
}
/* --- Responsive Nav --- */
@media (max-width: 768px) {
  nav ul.nav-links { display: none;}
  .menu-toggle { display: flex;}
  nav .nav-container { flex-direction: row; gap: 0; padding: 12px 6px;}
  nav .logo { height: 44px;}
  nav .book-tour-btn { font-size: 0.91rem; padding: 8px 12px;}
}

/* === Apple-Style Left-to-Right Sliding Nav === */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: linear-gradient(135deg, #f5f5f7, #dcdcdc);
  backdrop-filter: blur(20px);
  box-shadow: 5px 0 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 30px;
  transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2000;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.mobile-menu a {
  font-size: 1.3rem;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  margin: 14px 0;
  transition: transform 0.3s, color 0.3s;
}

.mobile-menu a:hover {
  color: #007aff; /* Apple blue */
  transform: translateX(10px);
}

/* Open state */
.mobile-menu.open {
  left: 0;
}

/* Menu toggle button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2100;
  transition: transform 0.3s;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* Dim background overlay when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1900;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* === Google-Style Clean White Left-to-Right Menu === */
.apple-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 25px;
  transition: left 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 3000;
}

/* Open state */
.apple-menu.open {
  left: 0;
}

/* Close Button */
.apple-menu .close-menu {
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #111;
  cursor: pointer;
  align-self: flex-start;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}
.apple-menu .close-menu:hover {
  transform: rotate(90deg);
}

/* Menu Links */
.apple-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.apple-menu ul li {
  margin: 14px 0;
}

.apple-menu ul li a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.apple-menu ul li a:hover {
  color: #007aff;
  transform: translateX(6px);
}

/* Bottom Section */
.menu-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-bottom a {
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.menu-bottom a:hover {
  color: #007aff;
}

/* Background overlay (subtle, light tint) */
.apple-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 2500;
}

.apple-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ✅ Fix: Hide mobile Apple-style menu and overlay completely on desktop */
@media (min-width: 769px) {
  .apple-menu,
  .apple-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
/* ===== Search Bar ===== */
.search-bar {
  position: relative;
  margin: 24px auto;
  max-width: 500px;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 6px 14px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  color: #111;
  padding: 10px 8px;
}

.search-bar i {
  color: #6b7280;
  font-size: 1.2rem;
  margin-left: 8px;
  cursor: pointer;
}
#starRating {
  display: inline-block;
  pointer-events: auto;
  position: relative;
  z-index: 5;
}
   .guide-info {
        padding: 30px; /* Adds 30 pixels of padding on all sides within the section */
    }
/* ===========================
   ALBUMS GRID LAYOUT
   =========================== */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  padding: 20px 0;
  justify-items: center;
}

/* ===========================
   ALBUM CARD (STATIC + JS)
   =========================== */
.album-card {
  width: 260px;              /* Fixed size for all albums */
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #ddd;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
}

/* Hover effect */
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

/* ===========================
   ALBUM IMAGE
   =========================== */
.album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   GLOSS LAYER
   =========================== */
.album-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.05));
  pointer-events: none;
}

/* ===========================
   ALBUM META (TITLE + COUNT)
   =========================== */
.album-meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.album-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.album-count {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.album-card.video-album {
  margin-left: auto;
  margin-right: auto;
}


/* ===========================
   ENTRANCE ANIMATION
   =========================== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 480px) {
  .album-card {
    width: 90%;
    height: 180px;
  }
}
.gny-iframe {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.gny-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .gny-iframe {
    height: 100svh;
  }
}
/* ===== FOOTER BOTTOM LIVE TIME (APPLE STYLE) ===== */
.footer-bottom-time {
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;

  font-family: -apple-system, BlinkMacSystemFont, "San Francisco",
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.75);
}

.footer-separator {
  opacity: 0.6;
}

#live-time {
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .footer-bottom-time {
    flex-wrap: wrap;
    row-gap: 4px;
  }
}
.republic-bar{
  background: linear-gradient(90deg, #FF9933, #ffffff, #138808);
  color:#000;
  text-align:center;
  font-weight:700;
  padding:10px 14px;
  font-size:14px;
  letter-spacing:.4px;
}
