/* =======================================================
   Royal Hive Rentals – Clean Stylesheet
   Luxury Party Rentals & Décor
   ======================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Montserrat:wght@400;600&display=swap');

/* =======================================================
   Base & Reset
   ======================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
  padding-top: 110px; /* space for fixed navbar on desktop */
}

/* =======================================================
   Shared Animations
   ======================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glassShimmer {
  0%   { transform: translateX(-10%); opacity: 0.14; }
  50%  { transform: translateX(10%);  opacity: 0.22; }
  100% { transform: translateX(-10%); opacity: 0.14; }
}
@keyframes ambientGlow {
  0%, 100% { filter: blur(4px) brightness(1.1) saturate(120%); }
  50%      { filter: blur(5px) brightness(1.18) saturate(130%); }
}
@keyframes aboutPan {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* =======================================================
   Navbar – Frosted Transparent Glass
   Desktop: tabs left, bee + wordmark to the right
   ======================================================= */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  height: 90px; /* thin sleek */
  z-index: 1000;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(1.1);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  overflow: hidden;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/topback.png') center/cover no-repeat;
  opacity: .45;
  filter: brightness(1.2) saturate(140%) blur(10px);
  z-index: -2;
}
.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,.15) 0%,
    rgba(255,255,255,.04) 40%,
    rgba(255,255,255,.18) 100%
  );
  mix-blend-mode: screen;
  opacity: .18;
  animation: glassShimmer 18s ease-in-out infinite;
  z-index: -1;
}

/* Nav links (desktop) */
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.navbar nav a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}
.navbar nav a:hover,
.navbar nav a.active {
  color: #b48a1f;
}

/* CTA button */
.navbar .cta {
  white-space: nowrap;
  color: #fff;
  background: #b48a1f;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background .3s, transform .3s;
}
.navbar .cta:hover {
  background: #d4b24f;
  transform: scale(1.05);
}

/* Logo group (bee + wordmark on the right side) */
.logo {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 40px;
  flex: 1;
}
.logo .bee-icon {
  height: 90px;
  width: auto;
  flex-shrink: 0;
}
.logo .bee-text {
  height: 150px;
  width: auto;
  margin-left: auto; /* pushes text logo to far right inside logo row */
}
.logo:hover .bee-text {
  transform: scale(1.03);
  transition: transform .25s ease;
}

/* Layout: tabs left, logo group right */
.navbar nav {
  margin-right: auto; /* push logo row to the right */
}

/* ==== MOBILE NAVBAR + LOGO FIX — CLEAN & CENTERED WORDMARK ==== */
@media (max-width: 768px) {

  /* keep the navbar compact */
  .navbar {
    padding: 8px 16px !important;
    height: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
  }

  /* LOGO ROW — bee left, wordmark centered */
  .logo {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;  /* bee left stays */
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;           /* enables center overlay */
  }

  /* Bee icon — stays left */
  .logo .bee-icon {
    height: 34px !important;
    width: auto !important;
    position: static !important;
    transform: none !important;
    flex-shrink: 0;
  }

  /* Royal Hive wordmark — centered & larger */
  .logo .bee-text {
    height: 80px !important;       /* <-- adjust size here */
    width: auto !important;
    position: absolute !important; /* center without moving bee */
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* MENU — tabs centered below */
  nav {
    width: 100% !important;
    order: 2;
  }

  nav ul {
    display: flex !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 6px !important;
    flex-wrap: wrap !important;
  }

  /* Book now spacing */
  #book-now-btn {
    margin-top: 6px !important;
  }

  /* hero spacing */
  body {
    padding-top: 135px !important;
  }
}

/* =======================================================
   Hero
   ======================================================= */
.hero-luxury {
  background: url('images/hero.jpg') center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 0 20px;
}
.hero-content {
  max-width: 800px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  animation: fadeInUp 1s both;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #b48a1f;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 32px;
}
.btn-primary {
  background: #b48a1f;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-primary:hover {
  background: #d4b24f;
  transform: scale(1.05);
}
.btn-primary:active {
  transform: scale(.96);
  transition: transform .1s ease;
}

/* Rotating headline */
#rotating-text {
  display: inline-block;
  min-height: 1.2em;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  transition: transform .6s ease, opacity .6s ease;
}
.slide-out { opacity: 0; transform: translateX(-40px); }
.slide-in  { opacity: 1; transform: translateX(0); }
.dots {
  margin: 16px 0 8px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  background: #dcdcdc;
  border-radius: 50%;
  transition: background-color .4s ease, transform .3s ease;
}
.dot.active {
  background: #b48a1f;
  transform: scale(1.3);
}

/* =======================================================
   Hero Contact (phone line)
   ======================================================= */
.hero-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(180, 138, 31, 0.4);
  box-shadow: 0 4px 16px rgba(180, 138, 31, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #222;
  transition: all 0.3s ease;
}
.hero-content .btn-primary + .hero-contact {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 18px;
}
.hero-contact:hover {
  background: rgba(180, 138, 31, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 138, 31, 0.25);
}
.hero-contact i[data-lucide] {
  width: 22px;
  height: 22px;
  color: #b48a1f;
}
.hero-contact .label {
  font-weight: 500;
  color: #222;
  letter-spacing: 0.2px;
}
.hero-contact .phone {
  color: #b48a1f;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(180, 138, 31, 0.4);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.hero-contact .phone:hover {
  color: #d4b24f;
  border-color: transparent;
}

/* Mobile tweaks for hero-contact */
@media (max-width: 768px) {
  .hero-contact {
    width: 90% !important;
    max-width: 360px !important;
    min-width: 280px !important;
    margin: 16px auto 0 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
  }
  .hero-contact .label {
    white-space: nowrap !important;
    font-size: 14px !important;
  }
  .hero-contact .phone {
    white-space: nowrap !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  .hero-contact i[data-lucide] {
    width: 18px !important;
    height: 18px !important;
  }
}

/* =======================================================
   Modals
   ======================================================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeInUp .5s ease;
}
.modal-content {
  background: rgba(255,255,255,.3);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 18px;
  padding: 40px 50px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  animation: fadeInUp .5s ease;
}
.modal-content h2 {
  font-family: 'Playfair Display', serif;
  color: #b48a1f;
  text-align: center;
  margin-bottom: 10px;
}
.modal-subtitle {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
#bookNowModal textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
#bookNowModal textarea:focus {
  border-color: #b48a1f;
}
.submit-btn {
  width: 100%;
  margin-top: 10px;
}
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.6rem;
  color: #555;
  cursor: pointer;
  transition: color .3s ease;
}
.close-btn:hover {
  color: #b48a1f;
}

/* View Prices variation */
#priceModal .modal-content {
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(18px) saturate(200%);
  -webkit-backdrop-filter: blur(18px) saturate(200%);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 40px rgba(180,138,31,.3);
}
#priceModal h2 {
  color: #b48a1f;
}
#priceModal .modal-subtitle {
  color: #333;
  font-weight: 500;
}
#priceModal .submit-btn {
  background: #b48a1f;
  color: #fff;
}
#priceModal .submit-btn:hover {
  background: #d4b24f;
  transform: scale(1.05);
}

/* Book Now (wide) */
#bookNowModal .modal-content.wide {
  position: relative;
  max-width: 640px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(255,255,255,.32);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(180,138,31,.35);
  padding: 40px 50px;
}
#bookNowModal .close-btn {
  top: 16px;
  right: 22px;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 10;
}
#bookNowModal h2 {
  color: #b48a1f;
  text-align: center;
  margin-bottom: 10px;
}
#bookNowModal .modal-subtitle {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
}

/* =======================================================
   Categories (Shop by Occasion)
   ======================================================= */
.categories {
  position: relative;
  padding: 140px 60px 120px;
  overflow: hidden;
  z-index: 0;
}
.categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/image1.png') center/cover no-repeat;
  filter: blur(4px) brightness(1.1) saturate(120%) contrast(1.05);
  transform: scale(1.02);
  animation: ambientGlow 14s ease-in-out infinite;
  z-index: -2;
}
.categories::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #b48a1f;
  text-align: center;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: #444;
  margin-bottom: 40px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center; /* centers each card */
  align-items: stretch;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;        /* vertical alignment */
  align-items: center;           /* center align everything */
  text-align: center;            /* center text */
  gap: 18px;
  padding: 36px 32px;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(20px) saturate(180%) brightness(1.08);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 4px 20px rgba(0,0,0,.1), inset 0 1px 4px rgba(255,255,255,.18);
  transition: all .45s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.45);
  box-shadow: 0 8px 30px rgba(180,138,31,.35), inset 0 1px 5px rgba(255,255,255,.25);
}
.category-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,.25) 0%,
    rgba(255,255,255,.05) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: all .5s ease;
  pointer-events: none;
}
.category-card:hover::after {
  opacity: 1;
  left: 120%;
  transition: all .8s ease;
}
.icon-wrap {
  width: 100%;
  display: flex;
  justify-content: center;   /* center icon */
  align-items: center;
  margin-bottom: 8px;
}

.icon-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.1));
  transition: transform .4s ease, filter .3s ease;
}
.category-card:hover .icon-img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(180,138,31,.4));
}
.text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.details {
  margin-top: 18px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.category-card:hover .details {
  opacity: 1;
  transform: translateY(0);
}
.extra-text {
  font-size: .9rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.5;
}
.view-btn {
  display: inline-block;
  background: #b48a1f;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s ease, transform .3s ease;
}
.view-btn:hover {
  background: #d4b24f;
  transform: scale(1.05);
}
.category-card .emoji {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 12px;
  transition: transform .4s ease, text-shadow .4s ease;
}
.category-card:hover .emoji {
  transform: scale(1.25);
  text-shadow: 0 0 14px rgba(180,138,31,.55);
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;   /* One card per row */
    justify-items: center;
  }

  .category-card {
    padding: 28px 20px;
  }

  .icon-wrap i[data-lucide],
  .icon-wrap svg {
    width: 68px;
    height: 68px;
  }
}

/* Lucide icon size */
.icon-wrap i[data-lucide],
.icon-wrap svg {
  width: 82px;
  height: 82px;
  color: #b48a1f;
  opacity: 0.95;
  transition: transform 0.3s ease, color 0.3s ease;
}
.category-card:hover .icon-wrap svg {
  transform: scale(1.1);
  color: #d4b24f;
}

/* =======================================================
   Our Process
   ======================================================= */
.our-process {
  text-align: center;
  padding: 100px 60px 60px;
  background: linear-gradient(to bottom, #fff, #fdf9f1);
  animation: fadeInUp 1.2s both;
}
.our-process h2 {
  font-family: 'Playfair Display', serif;
  color: #b48a1f;
  font-size: clamp(2rem,5vw,2.8rem);
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.our-process .section-subtitle {
  color: #444;
  margin-bottom: 50px;
  font-size: 1.1rem;
  opacity: .9;
}
.timeline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-step {
  flex: 1 1 230px;
  min-width: 240px;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 38px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: all .4s ease;
}
.timeline-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(180,138,31,.3);
  background: rgba(255,255,255,.45);
}
.timeline-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #b48a1f;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.timeline-step p {
  font-size: .98rem;
  color: #333;
  line-height: 1.6;
  opacity: .9;
}

/* =======================================================
   Gallery (Masonry)
   ======================================================= */
.gallery-container {
  padding: 120px 40px 60px;
  column-count: 3;
  column-gap: 1.5rem;
  animation: fadeInUp 1.2s both;
}
.gallery-item {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
  break-inside: avoid;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform .4s ease;
  filter: brightness(.9);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gallery-item:hover {
  box-shadow: 0 8px 24px rgba(180,138,31,.3);
  transform: translateY(-4px);
}
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  font-size: 1rem;
  padding: 12px;
  text-align: left;
}

/* =======================================================
   About Page
   ======================================================= */
.about-hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 140px;
  box-sizing: border-box;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/image1.png') center/cover no-repeat;
  filter: blur(10px) brightness(1.15) saturate(130%);
  transform: scale(1.05);
  animation: aboutPan 40s linear infinite alternate;
  z-index: -2;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -1;
}
.about-content {
  max-width: 720px;
  padding: 32px 24px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  animation: fadeInUp 1s both;
}
.about-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  color: #ffcf48;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: .3px;
}
.about-content .lead {
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 18px;
  opacity: .9;
}
.about-content p {
  font-size: .9rem;
  line-height: 1.55;
  color: #f3f3f3;
  margin-bottom: 16px;
}
.about-content .highlight {
  color: #ffcf48;
  font-weight: 600;
}
.about-content .btn-primary {
  font-size: .86rem;
  padding: 9px 16px;
  border-radius: 8px;
}

.about-values {
  background: linear-gradient(to bottom, #fff, #fefaf3);
  text-align: center;
  padding: 100px 40px;
}
.about-values h2 {
  font-family: 'Playfair Display', serif;
  color: #b48a1f;
  font-size: 2.2rem;
  margin-bottom: 50px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(180,138,31,.25);
}

/* =======================================================
   Footer
   ======================================================= */
footer {
  background: #111;
  text-align: center;
  padding: 20px;
  font-size: .9rem;
  color: #aaa;
}

/* =======================================================
   Chat + Call Floating Icons
   ======================================================= */

/* Container before glow */
.chatbot-container::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: -1;
}

/* Chat + WhatsApp baseline */
.call-button,
.chatbot-container {
  position: fixed;
  bottom: 42px;
  z-index: 10000;
}

/* WhatsApp icon */
.call-button {
  right: 160px;
  width: 58px;
  height: 58px;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease;
}
.call-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.call-button:hover {
  transform: scale(1.07);
}

/* Chat icon */
.chatbot-container {
  right: 70px;
}
.chatbot-button {
  width: 54px;
  height: 54px;
  border: none;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.chatbot-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
.chatbot-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Welcome bubble */
.welcome-bubble {
  position: fixed;
  bottom: 115px;
  right: 110px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #333;
  border-radius: 18px;
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  z-index: 9999;
}
.welcome-bubble.show {
  opacity: 1;
  transform: translateY(0);
}
.welcome-bubble.hide {
  opacity: 0;
  transform: translateY(10px);
}

/* Notification bubble (blue iMessage-style) */
.chat-notification {
  position: fixed;
  bottom: 118px;
  right: 66px;
  max-width: 260px;
  background: linear-gradient(135deg, #0a84ff, #4da6ff);
  color: #fff;
  font-family: "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
  z-index: 99999;
}
.chat-notification::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #0a84ff, #4da6ff);
  transform: rotate(45deg);
  border-bottom-right-radius: 4px;
}
.chat-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hide floating bubbles when chat is open */
.chatbot-window.show ~ .welcome-bubble,
.chatbot-window.show ~ .chat-notification {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Mobile adjustments for floating icons & bubbles */
@media (max-width: 768px) {
  .call-button,
  .chatbot-container {
    bottom: 23px !important;
  }
  .call-button {
    right: 100px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .chatbot-container {
    right: 30px !important;
  }
  .chatbot-button {
    width: 44px !important;
    height: 44px !important;
  }
  .welcome-bubble,
  .chat-notification {
    bottom: 75px !important;
    right: 25px !important;
    max-width: 220px !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
  }
}

/* =======================================================
   Chatbot Window
   ======================================================= */
.chatbot-window {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  right: 45px;
  width: 320px;
  max-height: 460px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 22px;
  border: 1px solid rgba(180, 138, 31, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  z-index: 9999;
  transition: all 0.4s ease;
  font-family: "SF Pro Text", "Helvetica Neue", sans-serif;
  padding: 14px 18px;
}
.chatbot-window.show {
  display: flex !important;
  animation: slideUpFromIcon 0.5s ease-out;
}
@keyframes slideUpFromIcon {
  from { opacity: 0; transform: translateY(60px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.chatbot-header {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 249, 236, 0.8) 40%,
    rgba(242, 220, 145, 0.75) 100%
  );
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #2b2b2b;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 12px rgba(187, 156, 58, 0.2);
}
.chatbot-header h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #b48a1f, #e3c56c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chatbot-close {
  background: transparent;
  border: none;
  color: #444;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chatbot-close:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Messages */
.chatbot-messages {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: #2c2c2c;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
}
.chatbot-message,
.chatbot-msg {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(180, 138, 31, 0.15);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.chatbot-message strong,
.chatbot-msg strong {
  color: #b48a1f;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.chatbot-message:not(:last-child),
.chatbot-msg:not(:last-child) {
  margin-bottom: 6px;
}

/* Option buttons */
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option-btn {
  background: #ffcc73;
  color: #222;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.option-btn:hover {
  background: #ffd98e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Input area – hidden (option-only chat) */
.chatbot-input {
  display: none !important;
}
.chatbot-input input,
.chatbot-input button {
  display: none !important;
}

/* =======================================================
   Lead Form Card (if used inside chat / modal)
   ======================================================= */
.lead-form {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(180, 138, 31, 0.25);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #222;
  font-family: "Playfair Display", serif;
  line-height: 1.5;
}
.lead-form h4,
.lead-form p {
  color: #222;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  border: 1px solid rgba(180, 138, 31, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: 0.25s ease;
}
.lead-form input:focus,
.lead-form select:focus {
  border-color: #b48a1f;
  box-shadow: 0 0 6px rgba(180, 138, 31, 0.3);
  outline: none;
  background: rgba(255, 255, 255, 0.9);
}
.lead-form button {
  display: inline-block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #b48a1f, #d4b24f);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(180, 138, 31, 0.25);
}
.lead-form button:hover {
  background: linear-gradient(135deg, #d4b24f, #b48a1f);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180, 138, 31, 0.35);
}
