/* ---------- Hero container + lighter overlay ---------- */
.tmp-banner-one-area.style-2.bg_image.bg_image--4 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.tmp-banner-one-area.style-2.bg_image.bg_image--4::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
  pointer-events: none;
}
/* Ensure all hero content sits above bubbles */
.tmp-banner-one-area.style-2.bg_image.bg_image--4 .banner-one-main-wrapper {
  position: relative;
  z-index: 2;
}

/* ---------- Floating bubbles (middle layer) ---------- */
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-bubbles .bubble {
  position: absolute;
  bottom: -12vh;
  border-radius: 50%;
  opacity: 0.25;
  mix-blend-mode: screen;
  --c: var(--theme-color, #00e5ff);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 62%);
  border: 1px solid color-mix(in oklab, var(--c), transparent 75%);
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--c), transparent 82%),
    0 0 18px rgba(0, 229, 255, 0.14);
  animation-name: bubble-rise, bubble-drift;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

/* vertical rise */
@keyframes bubble-rise {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-125vh) scale(1.12);
  }
}

/* gentle side-to-side drift */
@keyframes bubble-drift {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 14px;
  }
  100% {
    margin-left: 0;
  }
}

/* Sizes */
.hero-bubbles .bubble.xs {
  width: 10px;
  height: 10px;
  opacity: 0.22;
}
.hero-bubbles .bubble.sm {
  width: 16px;
  height: 16px;
}
.hero-bubbles .bubble.md {
  width: 24px;
  height: 24px;
}
.hero-bubbles .bubble.lg {
  width: 32px;
  height: 32px;
  opacity: 0.32;
}

/* ---------- Left text / Right image layout ---------- */
.tmp-banner-one-area.style-2 .inner {
  text-align: left;
}
@media (max-width: 991.98px) {
  .tmp-banner-one-area.style-2 .inner {
    text-align: center;
  }
}
.tmp-banner-one-area.style-2 .button-area-banner-one {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

/* Right image styling + float animation */
.hero-visual {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.hero-visual .hero-img {
  width: 100%;
  
  border-radius: 18px;
  
  opacity: 0.95;
  animation: floatTilt 8s ease-in-out infinite;
}
@media (max-width: 991.98px) {
  .hero-visual .hero-img {
    max-width: 420px;
  }
}

@keyframes floatTilt {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1.5deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1.5deg);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bubbles .bubble {
    animation: none;
    opacity: 0.15;
  }
  .hero-visual .hero-img {
    animation: none;
  }
}

/* Fallback if color-mix not supported */
@supports not (color-mix(in oklab, #000, #fff)) {
  .hero-bubbles .bubble {
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow:
      0 0 0 1px rgba(0, 229, 255, 0.18),
      0 0 18px rgba(0, 229, 255, 0.14);
  }
}

/* ---------- Section Heading (Services) ---------- */
.section-heading {
  font-family: "Architects Daughter", cursive;
  font-weight: 400;
  line-height: 1.05;
  font-size: clamp(3rem, 8vw, 5rem);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 0.3px;
}

/* ========== PACKAGES + ENQUIRE MODAL STYLES ========== */
:root {
  --accent: #1fb6ff;
  --card-bg: #0f141c;
  --ink: #e9eef7;
  --muted: #a7b3c5;
  --chip: #17202c;
  --bd: rgba(255, 255, 255, 0.08);
  --bd-strong: rgba(31, 182, 255, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

#packages {
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  #packages {
    padding-bottom: 120px;
  }
}

.price-plan-card {
  border: 1px solid var(--bd);
  background: #0f141c;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.price-plan-card.active,
.price-plan-card:hover {
  border-color: var(--bd-strong);
}

.js-enquire {
  cursor: pointer;
}

/* MODAL */
.enquire-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.enquire-modal::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.enquire-modal.is-open {
  display: block;
}

.enquire-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: saturate(120%) blur(2px);
}

.enquire-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  margin: clamp(16px, 6vh, 48px) auto;
  border-radius: 18px;
  background: var(--card-bg);
  color: var(--ink);
  border: 1px solid var(--bd-strong);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - clamp(32px, 12vh, 96px));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.enquire-dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.enquire-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  padding-right: 56px;
  background:
    linear-gradient(0deg, rgba(31, 182, 255, 0.08), rgba(31, 182, 255, 0.08)),
    var(--card-bg);
  border-bottom: 1px solid var(--bd);
}
.enquire-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 182, 255, 0.14);
  border: 1px solid var(--bd-strong);
  font-size: 12px;
  color: #cfeaff;
}
.enquire-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.enquire-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  margin-left: 0 !important;
  background: var(--chip);
  color: var(--ink);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}
.enquire-close i {
  font-size: 14px;
}
@media (min-width: 768px) {
  .enquire-close {
    width: 30px;
    height: 30px;
    top: 12px;
    right: 12px;
  }
}

.enquire-body {
  padding: 16px 20px 4px;
}
.enquire-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .enquire-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  color: var(--muted);
}

.input,
.select,
textarea {
  width: 100%;
  background: #0b1220;
  color: var(--ink);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
}
.input:focus,
.select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent), transparent 80%);
}

textarea {
  min-height: 110px;
  resize: vertical;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
textarea::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.services-wrap {
  border: 1px dashed var(--bd-strong);
  border-radius: 14px;
  padding: 12px;
  background: rgba(31, 182, 255, 0.06);
}
.service-list {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 680px) {
  .service-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.service-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  background: #0b1220;
  border: 1px solid var(--bd);
}
.service-list input {
  accent-color: var(--accent);
}

.enquire-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 20, 28, 0.92), rgba(15, 20, 28, 0.98));
  border-top: 1px solid var(--bd);
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: #0b1220;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: var(--bd-strong);
}
.btn-primary {
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--accent), #000 15%),
    var(--accent)
  );
  border-color: var(--bd-strong);
}
.btn-whatsapp {
  background: #25d366;
  border-color: #1ea855;
}
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

body.no-scroll {
  overflow: hidden;
}


/* ---------- Modal dark theme (footer T&C etc.) ---------- */
.modal-dark .modal-content {
  background: #0b1220;
  color: #e8eefc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}
.modal-dark .modal-header,
.modal-dark .modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}
.modal-dark .btn-close {
  filter: invert(1);
}
.modal-body.scrollable {
  max-height: 70vh;
  overflow: auto;
}
.modal-dark .form-control,
.modal-dark .input-field,
.modal-dark textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8eefc;
}

/* Button base */
.tmp-btn {
  background-color: #0056b3;   /* darker blue */
  color: #ffffff;              /* white text */
  border-color: #0056b3;
}

/* Make sure inner span uses the same color */
.tmp-btn .btn-text {
  color: inherit;
}

/* Hover/focus states should also keep good contrast */
.tmp-btn:hover,
.tmp-btn:focus {
  background-color: #00408a;   /* still dark enough */
  border-color: #00408a;
  color: #ffffff;
}

