/* ==========================================================================
   KAKATIYA PROFESSIONAL CLEANING SERVICES — COMPONENTS & POPUPS STYLESHEET
   ========================================================================== */

/* --- MODALS & OVERLAYS --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 6, 38, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: var(--bg-soft);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- SERVICE DETAIL MODAL --- */
.service-modal-card {
  max-width: 780px;
  padding: 0;
  overflow: hidden;
}

.service-modal-header-accent {
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}

.service-modal-icon-lg {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
}

.service-modal-body {
  padding: 30px;
}

.service-modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-modal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.service-modal-meta-item i {
  color: var(--primary-badge);
}

.service-modal-features {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-feature-item i {
  color: var(--whatsapp-green);
}

.service-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

/* --- LIGHTBOX MODAL --- */
.lightbox-card {
  max-width: 900px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  text-align: center;
  position: relative;
}

.lightbox-img-wrapper {
  max-height: 80vh;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-img-wrapper img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 700;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--whatsapp-green);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* --- VIDEO PLAYER MODAL --- */
.video-modal-card {
  max-width: 820px;
  width: 95%;
  background: #110526;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-modal-header {
  margin-bottom: 16px;
  text-align: center;
}

.video-badge-tag {
  display: inline-block;
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.video-modal-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: #000000;
}

.modal-video-player {
  width: 100%;
  max-height: 72vh;
  display: block;
  outline: none;
}

.video-modal-footer {
  margin-top: 20px;
  text-align: center;
}

/* --- BLOG ARTICLE MODAL READER --- */
.blog-modal-card {
  max-width: 850px;
  padding: 40px;
}

.blog-modal-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.blog-modal-title {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.blog-modal-meta {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-modal-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  margin-bottom: 24px;
}

.blog-modal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.blog-modal-content p {
  margin-bottom: 20px;
}

.blog-modal-content h3 {
  font-size: 1.35rem;
  margin: 28px 0 14px 0;
  color: var(--primary);
}

.blog-modal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.blog-modal-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.blog-modal-cta {
  background: var(--primary-light);
  border: 1px dashed var(--primary-badge);
  border-radius: var(--border-radius-md);
  padding: 24px;
  margin-top: 30px;
  text-align: center;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-dark);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--border-radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notification i {
  color: var(--whatsapp-green);
  font-size: 1.2rem;
}

/* --- POPUP SPECIFICS --- */
.popup-icon-badge {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px auto;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .service-modal-features {
    grid-template-columns: 1fr;
  }
  .modal-card {
    padding: 24px 18px;
    max-height: 88vh;
  }
  .blog-modal-card {
    padding: 24px 18px;
  }
  .blog-modal-title {
    font-size: 1.4rem;
  }
  .service-modal-hero {
    height: 180px;
  }
  .service-modal-hero-overlay h2 {
    font-size: 1.35rem;
  }
  .service-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* ==========================================================================
   1. PRELOADER LOADING SCREEN STYLES (Image 4 Reference)
   ========================================================================== */
.site-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #0a2558 0%, #030d22 75%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

.site-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  text-align: center;
  max-width: 440px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo-wrapper {
  background: #ffffff;
  padding: 16px 28px;
  border-radius: 20px;
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.4), 0 15px 35px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  animation: preloaderPulse 2s infinite alternate ease-in-out;
}

@keyframes preloaderPulse {
  0% { transform: scale(1); box-shadow: 0 0 25px rgba(16, 185, 129, 0.3); }
  100% { transform: scale(1.03); box-shadow: 0 0 45px rgba(16, 185, 129, 0.6); }
}

.preloader-logo-wrapper img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.preloader-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.preloader-badge i {
  color: #10b981;
}

.preloader-progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.preloader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
  border-radius: 10px;
  transition: width 0.15s ease-out;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.9);
}

.preloader-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
}

.preloader-percentage {
  color: #10b981;
  font-weight: 800;
}

/* ==========================================================================
   2. HERO & FEATURE CARDS LAYOUT (Image 2 Reference)
   ========================================================================== */
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.hero-badge-green {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.35) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero-green-text {
  color: #10b981;
  display: block;
  font-weight: 800;
}

.btn-green-glow {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-green-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

.hero-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-feature-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.feature-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feature-tag.tag-zet {
  background: #10b981;
  color: #ffffff;
}

.feature-tag.tag-sanitized {
  background: #2563eb;
  color: #ffffff;
}

.card-img-holder {
  height: 160px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-feature-card:hover .card-img-holder img {
  transform: scale(1.08);
}

.card-footer-title {
  background: #061533;
  color: #ffffff;
  padding: 12px 10px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   3. SIDE 4-ICON FLOATING QUICK ACTION BAR (Bottom-Right Position)
   ========================================================================== */
.floating-quick-sidebar {
  position: fixed !important;
  right: 20px !important;
  bottom: 24px !important;
  top: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  z-index: 1800 !important;
}

.side-float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: none;
  background: none;
}

.side-float-btn:hover {
  transform: scale(1.14) translateX(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.side-btn-gift {
  background: linear-gradient(135deg, #ff8c00 0%, #f97316 100%);
}

.side-btn-gift.pulse-on-scroll {
  animation: giftAttention 1.2s ease-in-out infinite alternate;
}

@keyframes giftAttention {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 140, 0, 0.5); }
  100% { transform: scale(1.18) translateY(-4px); box-shadow: 0 0 30px rgba(255, 140, 0, 0.9); }
}

/* 2nd Floating Circle Button: Kakatiya Logo */
.side-btn-logo {
  background: #ffffff !important;
  border: 2.5px solid #061533 !important;
  box-shadow: 0 8px 22px rgba(6, 21, 51, 0.35) !important;
  padding: 5px !important;
  overflow: hidden !important;
}

.logo-circle-wrapper {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.side-logo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 50% !important;
}

.side-btn-phone {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.side-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.btn-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.pulse-badge-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  animation: badgeBounce 1.5s infinite alternate;
}

@keyframes badgeBounce {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.online-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.side-btn-tooltip {
  position: absolute;
  right: 64px;
  background: #061533;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}

.side-float-btn:hover .side-btn-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   4. FESTIVE OFFER POPUP STYLES (Image 3 Reference)
   ========================================================================== */
.festive-offer-card {
  background: linear-gradient(165deg, #061737 0%, #030a1c 100%) !important;
  border-radius: 28px !important;
  padding: 36px 28px !important;
  color: #ffffff !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6) !important;
  text-align: center;
  position: relative;
}

.festive-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.festive-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
  line-height: 1.25;
  position: relative;
}

.highlight-green-wavy {
  color: #10b981;
  position: relative;
  display: inline-block;
}

.highlight-green-wavy::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath d='M0 2 Q 5 0, 10 2 T 20 2' fill='none' stroke='%2310b981' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
}

.festive-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

.festive-stats-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 8px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.festive-stat-item {
  text-align: center;
  padding: 0 4px;
}

.festive-stat-item.border-x {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.festive-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.star-gold {
  color: #ffc107;
  font-size: 1.1rem;
}

.festive-stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.festive-coupon-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1.5px dashed #10b981;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.festive-coupon-box:hover {
  background: rgba(16, 185, 129, 0.15);
}

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

.coupon-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-weight: 600;
}

.coupon-code {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  font-family: monospace;
}

.coupon-badge {
  background: #10b981;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.festive-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-festive-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px;
  border-radius: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-festive-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.6);
}

.btn-festive-whatsapp {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.btn-festive-whatsapp:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.festive-footer-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.festive-footer-note i {
  color: #10b981;
}

/* Enquiry Popup Logo Circle (Image 6 Reference) */
.popup-logo-badge {
  width: 72px !important;
  height: 72px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  padding: 8px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
  border: 2px solid rgba(16, 185, 129, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 16px auto !important;
}

.popup-badge-logo-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* ==========================================================================
   5. MOBILE RESPONSIVE MEDIA QUERIES (Image 7 Reference - Content Fitting)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0;
  }
}

@media (max-width: 600px) {
  .floating-quick-sidebar {
    right: 10px !important;
    gap: 10px !important;
  }
  .side-btn-tooltip {
    display: none !important;
  }
  .side-float-btn {
    width: 44px;
    height: 44px;
  }
  .btn-icon-wrapper {
    font-size: 1.1rem;
  }
  .hero-feature-cards {
    grid-template-columns: 1fr;
  }

  /* Festive Offer Modal Mobile View Fitting */
  .modal-overlay {
    padding: 10px !important;
  }
  
  .festive-offer-card {
    padding: 20px 12px 16px 12px !important;
    max-width: 100% !important;
    border-radius: 20px !important;
    box-sizing: border-box !important;
  }

  .festive-top-badge {
    font-size: 0.72rem !important;
    padding: 5px 12px !important;
    margin-bottom: 10px !important;
  }

  .festive-title {
    font-size: 1.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .festive-subtitle {
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    margin-bottom: 14px !important;
    padding: 0 4px !important;
  }

  .festive-stats-card {
    padding: 10px 4px !important;
    margin-bottom: 14px !important;
  }

  .festive-stat-value {
    font-size: 1.12rem !important;
  }

  .festive-stat-label {
    font-size: 0.58rem !important;
    letter-spacing: 0.02em !important;
  }

  .festive-coupon-box {
    padding: 10px 10px !important;
    margin-bottom: 14px !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .coupon-left {
    text-align: center !important;
    width: 100% !important;
  }

  .coupon-label {
    font-size: 0.65rem !important;
  }

  .coupon-code {
    font-size: 0.85rem !important;
    letter-spacing: 0.02em !important;
    word-break: break-all !important;
  }

  .coupon-badge {
    font-size: 0.75rem !important;
    padding: 4px 10px !important;
    margin-top: 2px !important;
  }

  .festive-actions {
    gap: 8px !important;
    margin-bottom: 12px !important;
  }

  .btn-festive-primary {
    font-size: 0.85rem !important;
    padding: 12px 10px !important;
    border-radius: 12px !important;
    gap: 6px !important;
    white-space: normal !important;
    line-height: 1.25 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .btn-festive-whatsapp {
    font-size: 0.82rem !important;
    padding: 11px 10px !important;
    border-radius: 12px !important;
    gap: 6px !important;
    white-space: normal !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .festive-footer-note {
    font-size: 0.68rem !important;
    line-height: 1.3 !important;
  }
}

/* --- MOBILE RESPONSIVE MODAL OVERRIDES --- */
@media (max-width: 768px) {
  .lightbox-card {
    width: 96% !important;
    max-width: 100% !important;
  }
  .lightbox-prev {
    left: 8px !important;
    background: rgba(0, 0, 0, 0.65) !important;
    z-index: 100 !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }
  .lightbox-next {
    right: 8px !important;
    background: rgba(0, 0, 0, 0.65) !important;
    z-index: 100 !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }
  .lightbox-img-wrapper img {
    max-height: 70vh !important;
  }
  .video-modal-card {
    padding: 20px 14px !important;
    width: 96% !important;
  }
  .video-modal-title {
    font-size: 1.15rem !important;
  }
  .modal-video-player {
    max-height: 55vh !important;
  }
}


