/* ==========================================================================
   Base Styles & Best Practices
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at center, #fff9e6 20%, #f1cd62 80%);
  background-attachment: fixed;
  color: #1e293b;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ==========================================================================
   Header - Mobile First Design
   ========================================================================== */
.custom-header {
  background: radial-gradient(circle at center, #fff9e6 0%,
  #ffe175 30%,
  #facc15 60%,
  #e6b368 85%,
  #eab308 100%);
  text-align: center;
  padding: 2rem 1rem 6rem;
  position: relative;
  overflow: hidden;
}

.curve-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* --- Mobile Header: Stacked & Centered --- */
.circle {
  position: relative; /* Removes absolute positioning on mobile */
  border: 2px solid gold;
  border-radius: 50%;
  overflow: hidden;
  background: white;
}

.circle-left-top { /* Main Logo */
  width: 120px;
  height: 120px;
  margin-bottom: -1rem; /* Pull text block up slightly */
}

.logo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-center {
  z-index: 5; /* This was already there, but it's part of the solution */
}

.business-name {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #c1121f;
  line-height: 1.1;
}

.business-name span {
  font-size: 2.2rem;
  color: #1d3557;
}

.bis-tag {
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  margin-top: 0.75rem;
  display: inline-block;
  border: 2px solid #0077b6;           /* Soft blue border */
  border-radius: 8px;
  background-color: #e0f3ff;           /* Soft blue background */
  color: #00334e;                      /* Dark blue text */
  font-weight: 600;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}



.address-text {
  font-size: 1rem;
  font-weight: bold;
  color: #700000;
  margin-top: 0.5rem;
}

/* Secondary images are hidden by default, shown in their container */
.circle-left-bottom,
.circle-right-top,
.circle-right-bottom {
  display: none;
}

.header-secondary-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  position: relative; /* This is needed for z-index to work reliably */
  /* THE FIX: Ensure the images are on a higher layer than the curve */
  z-index: 2;
}
.header-secondary-images .circle {
  display: block; /* Show the circles inside this container */
  width: 60px;
  height: 60px;
}

.header-secondary-images .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curve-text-banner {
  position: absolute;
  bottom: -3.5rem;
  width: 100%;
  left: 0;
  z-index: 10;
  padding: 0 1rem;
}

.curve-text-banner span {
  font-size: 0.8rem;
  font-weight: bold;
  background: linear-gradient(90deg, #d97706, #dc2626, #1d4ed8, #059669, #a855f7);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: colorShift 6s linear infinite;
}
.header-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  /* THE FIX: Push the curve to a lower layer */
  z-index: 1; 
}

/* ==========================================================================
   Desktop Header - Restore original layout with proper positioning
   ========================================================================== */
@media (min-width: 768px) {
  .custom-header {
    padding: 3rem 1rem 8rem; /* Increased padding for desktop */
  }

  .curve-container {
    min-height: 300px; /* Adequate height for absolute positioning */
  }

  /* --- Hide the mobile-specific wrapper --- */
  .header-secondary-images {
    display: none;
  }

  /* --- Restore absolute positioning with proper z-index layering --- */
  .circle {
    position: absolute;
    display: block;
    width: 120px;
    height: 120px;
    z-index: 8; /* Above curve but below text */
  }

  .circle-left-top {
    top: 30px;
    left: 50px;
    z-index: 9; /* Main logo gets higher priority */
  }

  .circle-left-bottom {
    top: 180px;
    left: 50px;
  }

  .circle-right-top {
    top: 30px;
    right: 50px;
  }

  .circle-right-bottom {
    top: 180px;
    right: 50px;
  }

  /* --- Center content positioning --- */
  .header-center {
    position: relative;
    z-index: 10; /* Highest priority for text content */
    margin-top: 1rem;
  }

  /* --- Restore larger font sizes --- */
  .business-name,
  .business-name span {
    font-size: 4rem;
  }

  .bis-tag {
    font-size: 1.2rem;
  }

  .address-text {
    font-size: 1.8rem;
  }

  .curve-text-banner {
    bottom: -4rem; /* Adjusted for desktop */
  }

  .curve-text-banner span {
    font-size: 1.5rem;
  }

  .header-curve {
    height: 120px; /* Slightly taller for desktop */
  }
}

/* Extra large screens */
@media (min-width: 1200px) {
  .circle-left-top,
  .circle-left-bottom {
    left: 80px;
  }

  .circle-right-top,
  .circle-right-bottom {
    right: 80px;
  }

  .business-name,
  .business-name span {
    font-size: 4.5rem;
  }

  .address-text {
    font-size: 2rem;
  }
}


/* ==========================================================================
   Rest of the CSS (with minor responsive tweaks)
   ========================================================================== */
.hero-section {
  padding: 4rem 1rem;
  text-align: center;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 1rem;
  color: #02200d;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #056528;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.rates-section {
  padding: 2rem 1rem;
}

.horizontal-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.golden-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 0.5rem 0;
  color: #434309;
}

.gold-line {
  width: 150px;
  height: 2px;
  background: linear-gradient(to right, #494522, #fff9e6, #685108);
}

.rates-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rate-card {
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gold-card {
  background: rgba(255, 241, 188, 0.7);
  border: 2px solid #facc15;
}

.silver-card {
  background: rgba(226, 232, 240, 0.7);
  border: 2px solid #cbd5e1;
}

.rate-heading {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rate-row:last-of-type {
  border-bottom: none;
}

.rate-label {
  font-weight: 700;
  font-size: 1.1rem;
}

.rate-price {
  font-weight: bold;
  font-size: 1.1rem;
}

.luxury-gallery-section,
.why-choose-section,
.contact-section {
    padding: 3rem 1rem;
}

.inline-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.golden-heading-inline {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  text-align: center;
  color: #534414;
}

.gold-line-short {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, #d4af37, #fff9e6, #d4af37);
  max-width: 100px;
}

.slideshow-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide.fade {
  animation: fade 1.5s ease-in-out;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.feature-box img {
  margin: 0 auto 1rem;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.phone-list a {
  display: block;
  color: #1e40af;
  font-weight: bold;
  margin-top: 0.4rem;
  font-size: 1.2rem;
  text-decoration: underline  ;
}

.phone-list a:hover {
  text-decoration: underline;
}
.contact-card .contact-link {
  font-size: 1.2 rem;       /* 🔺 Increase as needed */
  font-weight: bold;
  color: #1e40af;          /* Optional: WhatsApp green */
  text-decoration: none;
  margin-top: 0.5rem;
  display: inline-block;
}

.contact-card .contact-link:hover {
  text-decoration: underline;
}

.address-card .contact-link {
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 1rem; /* Optional: slightly smaller on mobile */
  line-height: 1.4;
  padding: 0 10px; /* Add horizontal padding if needed */
  text-align: center; /* For neatness */
}
@media (max-width: 480px) {
  .address-card .contact-link {
    font-size: 0.95rem;
    padding: 0 5px;
  }
}


/* Make the notice section full width */
.full-width-banner {
  width: 100%;
  padding: 2rem 0;
  background: linear-gradient(135deg, #fff9e6, #facc15);
  display: flex;
  justify-content: center;
}

/* Style the inner card to stretch nicely */
.no-branch-card.no-branch-full {
  width: 90%;
  max-width: 1200px;
  border-radius: 15px;
  background: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex-direction: column;
}

/* Optional animation and styling */
.no-branch-icon {
  font-size: 2.2rem;
  animation: pulse 2s infinite;
}

.no-branch-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #7c2d12;
}

.no-branch-text span {
  color: #c1121f;
  font-weight: bold;
}

.golden-footer {
  background: linear-gradient(to top, #f5d46a, #fdf3d1);
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: 'Cinzel', serif;
  color: #534414;
}

.footer-top-line {
  height: 3px;
  background: linear-gradient(to right, #d4af37, #fff9e6, #d4af37);
  margin: 0 auto 1rem;
  width: 80%;
}

/* Animations */
@keyframes pulse {
  50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes colorShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Media Queries for Tablet and Desktop */
@media (min-width: 768px) {
  .rates-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .rate-card {
    flex-basis: 48%;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .contact-row {
      display: contents;
  }
  .contact-card {
      flex: 1 1 48%;
  }
  .address-card {
      flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .golden-heading {
    font-size: 3.5rem;
  }
  .golden-heading-inline {
    font-size: 3rem;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 10;
  
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
