/* ==========================================
   PREMIUM HIGH-END FOOTER DESIGN SYSTEM
   ========================================== */

/* Modern Footer Container spacing and luxurious layout */
.hp-footer-extra {
  width: 100%;
  margin-top: 40px;
  padding: 36px 24px;
  background: linear-gradient(135deg, #1a1713 0%, #0d0c0a 100%);
  border: 1px solid rgba(255, 159, 67, 0.16);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: 'Manrope', 'Outfit', 'Inter', sans-serif;
  box-sizing: border-box;
}

/* Beautiful inline footer navigation */
.hp-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.hp-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}

/* Elegant line underline transition */
.hp-footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ff9f43, #cca43b);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-footer-links a:hover {
  color: #ffd98a;
  transform: translateY(-1px);
}

.hp-footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Symmetrical high-end Branding Row */
.hp-footer-branding {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Beautiful Glassmorphic Pill Badge for credits */
.hp-footer-credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hp-footer-credit-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 159, 67, 0.3);
  box-shadow: 0 12px 35px rgba(255, 159, 67, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Badge Text elements */
.hp-badge-icon {
  color: #ff9f43;
  width: 14px;
  height: 14px;
  animation: pulse-gold 3s infinite;
  flex-shrink: 0;
}

@keyframes pulse-gold {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 4px rgba(255, 159, 67, 0.6)); }
  100% { transform: scale(1); opacity: 0.8; }
}

.hp-footer-credit,
.hp-footer-marketing {
  font-size: 13px;
  line-height: 1.2;
}

.hp-footer-credit {
  color: #ffd98a;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hp-credit-divider {
  color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 300;
}

.hp-footer-marketing {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hp-partner-name {
  color: #ffffff;
  font-weight: 600;
  transition: color 0.25s ease;
}

.hp-footer-credit-badge:hover .hp-partner-name {
  color: #ff9f43;
}

/* Social Media Container */
.hp-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Original Social Link Base styles */
.hp-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-sizing: border-box;
}

.hp-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dynamic Hover with Original Official Brand Colors & Glowing Shadow Systems */
.hp-social-facebook:hover {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(24, 119, 242, 0.45);
  transform: translateY(-4px);
}

.hp-social-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(220, 39, 67, 0.45);
  transform: translateY(-4px);
}

.hp-social-twitter:hover {
  background: #000000 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

.hp-social-youtube:hover {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.45);
  transform: translateY(-4px);
}

.hp-social-link:hover svg {
  transform: scale(1.15) rotate(8deg);
}

/* Responsive Adaptive Layout Rules */
@media (max-width: 768px) {
  .hp-footer-branding {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .hp-footer-extra {
    align-items: center;
    flex-direction: column;
    gap: 18px;
  }
  .hp-footer-links {
    gap: 12px;
  }
  .hp-footer-credit-badge {
    padding: 8px 14px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }
}

.hp-form-error {
  width: 100%;
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: #8b1e1e;
  background: #fff0f0;
  border: 1px solid #f2b8b8;
  font-size: 13px;
  font-weight: 700;
}

.hp-mail-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  top: -9999px;
  border: 0;
}

/* Glossy action-oriented call and WhatsApp bar */
#callnowbutton,
.call-now-button,
.ht-ctc,
.ht_ctc_chat_data,
#ht-ctc-chat,
a.elementor-button-link[href^="tel:7090010853"]:not(.hp-mobile-quick-cta),
a.elementor-button-link[href*="wa.me/917090010853"]:not(.hp-mobile-quick-cta) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hp-mobile-quick-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 56px !important;
  width: 100% !important;
  max-width: 340px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 226, 174, 0.38) !important;
  color: #fff !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(35, 0, 8, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.hp-mobile-quick-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.52), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.15));
  opacity: 0.72;
}

.hp-mobile-call {
  background: linear-gradient(135deg, #b51124 0%, #ff4658 48%, #760815 100%) !important;
}

.hp-mobile-whatsapp {
  background: linear-gradient(135deg, #0d8d50 0%, #20c86c 48%, #075d35 100%) !important;
}

.hp-mobile-cta-icon,
.hp-mobile-cta-text {
  position: relative;
  z-index: 1;
}

.hp-mobile-cta-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hp-mobile-cta-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hp-mobile-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hp-mobile-cta-text strong {
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
}

.hp-mobile-cta-text small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 11px;
  font-weight: 700;
}

body {
  padding-bottom: 88px;
}

.hp-action-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999999999;
  width: min(640px, calc(100% - 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 226, 174, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(34, 5, 10, 0.72);
  box-shadow: 0 24px 70px rgba(30, 0, 8, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.hp-action-btn {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 14px;
  color: #fff !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.hp-action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.5), transparent 32%, transparent 66%, rgba(255, 255, 255, 0.16));
  opacity: 0.68;
  pointer-events: none;
}

.hp-action-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.hp-action-call {
  background: linear-gradient(135deg, #b51124 0%, #ec3a4c 48%, #7b0716 100%);
}

.hp-action-whatsapp {
  background: linear-gradient(135deg, #0f8f4f 0%, #22c76d 48%, #075f37 100%);
}

.hp-action-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  position: relative;
  z-index: 1;
}

.hp-action-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hp-action-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.hp-action-copy strong {
  color: #fff !important;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.hp-action-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 480px) {
  body {
    padding-bottom: 78px;
  }

  .hp-action-bar {
    bottom: 10px;
    width: calc(100% - 14px);
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }

  .hp-action-btn {
    min-height: 56px;
    gap: 8px;
  }

  .hp-action-icon {
    width: 32px;
    height: 32px;
  }

  .hp-action-copy strong {
    font-size: 14px;
  }

  .hp-action-copy small {
    display: none;
  }
}

/* Premium AI image booking form */
.booknow {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 86px) 0 !important;
  background:
    linear-gradient(105deg, rgba(35, 5, 8, 0.88) 0%, rgba(86, 12, 18, 0.78) 44%, rgba(21, 9, 8, 0.48) 100%),
    url("uploads/booking/booking-form-bg.png") center center / cover no-repeat !important;
  isolation: isolate;
}

.booknow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 213, 126, 0.24), transparent 24rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 62%);
}

.booknow .elementor-background-overlay {
  display: none !important;
}

.booknow > .elementor-container {
  position: relative;
  z-index: 1;
}

.booknow .elementor-widget-form {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 226, 174, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(28, 5, 8, 0.62);
  box-shadow: 0 28px 70px rgba(23, 0, 5, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booknow .elementor-form-fields-wrapper {
  align-items: end;
  gap: 14px 0;
}

.booknow .elementor-field-group {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.booknow .elementor-field-label {
  margin-bottom: 8px;
  color: #fff7ed !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.booknow .elementor-field-textual {
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(255, 226, 174, 0.34) !important;
  border-radius: 10px !important;
  color: #21150f !important;
  background: rgba(255, 253, 247, 0.96) !important;
  box-shadow: 0 12px 30px rgba(33, 0, 7, 0.24);
  font-size: 15px !important;
  font-weight: 700 !important;
}

.booknow .elementor-field-textual::placeholder {
  color: rgba(33, 21, 15, 0.58) !important;
}

.booknow .elementor-field-textual:focus {
  border-color: #ffe1a8 !important;
  outline: 3px solid rgba(255, 225, 168, 0.32) !important;
  box-shadow: 0 0 0 1px rgba(126, 10, 20, 0.16), 0 16px 34px rgba(33, 0, 7, 0.28);
}

.booknow .elementor-button {
  min-height: 54px;
  border: 1px solid rgba(255, 226, 174, 0.5) !important;
  border-radius: 10px !important;
  color: #3a080e !important;
  background: linear-gradient(135deg, #ffe1a8, #ffb24d 46%, #ffffff) !important;
  box-shadow: 0 16px 34px rgba(255, 159, 67, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-weight: 900 !important;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.booknow .elementor-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 159, 67, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.booknow .hp-form-error {
  margin-left: 8px;
  margin-right: 8px;
  color: #fff7ed;
  background: rgba(126, 10, 20, 0.9);
  border-color: rgba(255, 226, 174, 0.35);
  box-shadow: 0 12px 26px rgba(33, 0, 7, 0.24);
}

@media (max-width: 767px) {
  .booknow {
    padding: 42px 0 !important;
    background-position: 68% center !important;
  }

  .booknow .elementor-widget-form {
    width: min(100% - 24px, 520px);
    padding: 18px;
    border-radius: 14px;
  }

  .booknow .elementor-field-group {
    width: 100% !important;
    flex-basis: 100% !important;
  }
}

.hp-policy-page {
  margin: 0;
  color: #19140f;
  background: #fff8ec;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.hp-policy-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 58px;
}

.hp-policy-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-weight: 700;
}

.hp-policy-nav a {
  color: #087b78;
  text-decoration: none;
}

.hp-policy-card {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(25, 20, 15, .12);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 48px rgba(63, 42, 18, .1);
}

.hp-policy-card h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
}

.hp-policy-card h2 {
  margin: 30px 0 8px;
  font-size: 24px;
}

.hp-policy-card p,
.hp-policy-card li {
  color: #544b40;
}

.hp-policy-footer {
  color: #fff;
  background: #181612;
}

.hp-policy-footer-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

@media (max-width: 640px) {
  .hp-footer-extra {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Override policy footers to integrate cleanly with their parent dark background */
.hp-policy-footer .hp-footer-extra {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

/* Red premium footer refresh */
.ekit-template-content-footer,
.ekit-template-content-footer .elementor-section,
.ekit-template-content-footer .elementor-container {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 208, 143, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(255, 42, 84, 0.25), transparent 30rem),
    linear-gradient(135deg, #4a0710 0%, #8e0f1d 36%, #bd1b2e 64%, #520713 100%) !important;
}

.ekit-template-content-footer {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.ekit-template-content-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 80%, transparent);
  opacity: 0.26;
}

.ekit-template-content-footer .elementor-element,
.ekit-template-content-footer p,
.ekit-template-content-footer h3,
.ekit-template-content-footer a {
  color: #fff7ed !important;
}

.ekit-template-content-footer .elementskit-infobox {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(32, 0, 6, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hp-footer-extra {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(74, 7, 16, 0.62), rgba(189, 27, 46, 0.44)) !important;
  border-color: rgba(255, 228, 178, 0.27) !important;
  box-shadow: 0 24px 58px rgba(38, 0, 8, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.17) !important;
}

.hp-footer-links a {
  color: rgba(255, 248, 238, 0.88) !important;
}

.hp-footer-links a::after {
  background: linear-gradient(90deg, #ffe1a8, #ff9f43, #ffffff) !important;
}

.hp-footer-links a:hover {
  color: #ffffff !important;
}

.hp-footer-credit-badge {
  background: rgba(255, 255, 255, 0.11) !important;
  border-color: rgba(255, 226, 174, 0.3) !important;
  box-shadow: 0 14px 38px rgba(49, 0, 10, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.hp-footer-credit-badge:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 225, 168, 0.55) !important;
  box-shadow: 0 18px 48px rgba(255, 159, 67, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

.hp-badge-icon,
.hp-footer-credit,
.hp-footer-credit-badge:hover .hp-partner-name {
  color: #ffe1a8 !important;
}

.hp-credit-divider {
  color: rgba(255, 255, 255, 0.38) !important;
}

.hp-footer-marketing {
  color: rgba(255, 248, 238, 0.8) !important;
}

.hp-social-link {
  color: #fff7ed !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.065)) !important;
  border-color: rgba(255, 226, 174, 0.25) !important;
  box-shadow: 0 12px 28px rgba(43, 0, 9, 0.24) !important;
}

.hp-policy-footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 208, 143, 0.22), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(255, 42, 84, 0.2), transparent 28rem),
    linear-gradient(135deg, #4a0710 0%, #8e0f1d 42%, #520713 100%) !important;
}

.hp-policy-footer .hp-footer-extra {
  padding: 28px 22px !important;
}
