/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fb;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: absolute; /* floats on top of banner */
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.25); /* semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  padding: 0 25px;
  flex-wrap: wrap;
}

.logo img {
  height: 58px;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #343665;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.35);
  transition: 0.3s ease;
  text-decoration: none;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.45);
}

/* ================= MOBILE & TABLET HEADER FIX ================= */

.menu-toggle{
  display:none;
}

/* Mobile + Tablet */
@media (max-width:1024px){

  header{
    position:relative;
    background:#fff;
  }

  .header-flex{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    height:65px !important;
    padding:0 8px !important;   /* left right gap reduce */
  }

  /* Logo left */
  .logo{
    margin:0;
  }

  .logo img{
    height:45px;
  }

  /* Hide desktop menu */
  nav{
    display:none;
    position:absolute;
    top:65px;
    left:0;
    width:100%;
    background:#ffffff;
    flex-direction:column;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
  }

  nav a{
    padding:14px;
    border-bottom:1px solid #eee;
  }

  /* Show menu when toggle click */
  nav.show{
    display:flex;
  }

  /* Hide connect button */
  .btn-header{
    display:none;
  }

  /* Toggle right side */
  .menu-toggle{
    display:block;
    font-size:26px;
    color:#8b0000;
    cursor:pointer;
    margin:0;
  }

}

/* ================= MOBILE HEADER FIX ================= */

@media (max-width: 992px){

  /* Header normal position */
  header{
    position: relative;
    top: 0;
    background: #ffffff;
    border-radius: 0;
  }

  /* Banner should come below header */
  .banner-section{
    margin-top: 0;
    padding-top: 40px;
  }

}
/* ================= BANNER SECTION ================= */
.banner-section {
    width: 100%;
    height: 800px;
    background: url('../images/Banner Image - Kovilpatti.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* header overlays banner, so no margin-top */
}

.banner-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.banner-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 25px;
}


/* ================= MOBILE & TABLET BANNER ================= */

@media (max-width: 992px){

  .banner-section{
    height: auto; /* allow image ratio */
    min-height: 520px;
    background: url('../images/Kovilpatti banner mobile.png') center/cover no-repeat;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .banner-content h1{
    font-size: 32px;
  }

  .banner-content p{
    font-size: 16px;
  }

  .btn-banner{
    font-size:14px;
    padding:10px 22px;
  }

}

/* ================= PROJECT INTRO ================= */
.project-intro {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, #f3f6fc);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 60px;
}

.intro-content h2 {
  font-size: 30px;
  color: #8b0000;

  margin-bottom: 12px;
}

.intro-location {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(242, 186, 186, 1);
  color: #292929;
  font-size: 17px;
  font-weight: 500;
}

.intro-content p {
  color: #292929;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 18px;
  font-family: 'times roman';
}

.intro-content h3 {
  font-size: 15px;
}

.intro-content li{
  font-size: 18;
}

/* Buttons */
.intro-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-intro {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.btn-brochure {
  background: linear-gradient(135deg, #8b0000, #c62828);
  color: white;
  box-shadow: 0 8px 22px rgba(11,44,95,0.35);
}

.btn-walk {
  background: white;
  color: #0b2c5f;
  border: 1px solid #dde3ed;
}

.btn-enquire {
  background: linear-gradient(135deg, #ffd54f, #ffca28);
  color: black;
}

/* Image */
.intro-image {
  position: relative;   /* ADD THIS */
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.intro-image:hover img {
  transform: scale(1.06);
}

/* Status Tag */
.status-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #e53935, #b71c1c);
  color: white;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= PREMIUM STATS ================= */
.premium-stats {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #fff7c5, #ffd54f);
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 35px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h3 {
  color: #b71c1c; /* Replace with your desired color */
  font-size: 2.5rem; /* optional: adjust size if needed */
  font-weight: 700;  /* optional: make it bold */
}

/* ================= PROJECT FEATURES ================= */
.project-features {
  padding: 100px 0;
  background: linear-gradient(135deg, #8c0001, #b71c1c);
  color: white;
}

/* FLEX */
.features-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/* LEFT */
.features-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* RIGHT */
.features-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-right img {
  width: 100%;
  max-width: none;   /* remove previous max-width limit */
  height: auto;
}

/* CIRCLE AREA */
.circle-layout {
  position: relative;
  width: 520px;     /* increased */
  height: 520px;
}

/* CENTER TEXT */
.circle-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.circle-center h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.circle-center p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 280px;
  line-height: 1.6;
}

/* FEATURE BOX */
.feature-item {
  position: absolute;
  width: 170px;          /* slightly larger */
  padding: 18px 14px;
  border-radius: 20px;
  text-align: center;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
}

/* Hover */
.feature-item:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255,255,255,0.28);
}

/* Title */
.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Paragraph */
.feature-item p {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ================= PERFECT NON-OVERLAP POSITIONS ================= */

/* Top */
.item1 { top: 0; left: 50%; transform: translateX(-50%); }

/* Top Right */
.item2 { top: 110px; right: -100px; }

/* Bottom Right */
.item3 { bottom: 70px; right: -100px; }

/* Bottom */
.item4 { bottom: -30px; left: 50%; transform: translateX(-50%); }

/* Bottom Left */
.item5 { bottom: 70px; left: -100px; }

/* Top Left */
.item6 { top: 110px; left: -100px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .features-flex {
    flex-direction: column;
    text-align: center;
  }

  .circle-layout {
    width: 360px;
    height: 360px;
  }

  .feature-item {
    position: relative;
    margin: 10px auto;
    inset: auto;
    transform: none;
  }

  .features-right img {
    max-width: 100%;
  }
}

/* ================= TABLET VIEW ================= */

@media (max-width: 992px){

  .project-features{
    padding:70px 20px;
  }

  .features-flex{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:40px;
    text-align:center;
  }

  .features-left,
  .features-right{
    width:100%;
    display:flex;
    justify-content:center;
  }

  /* Circle layout smaller */
  .circle-layout{
    width:340px;
    height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .circle-center{
    position:relative;
    margin-bottom:10px;
  }

  .circle-center h2{
    font-size:28px;
  }

  .circle-center p{
    font-size:14px;
    max-width:320px;
  }

  /* Feature boxes */
  .feature-item{
    position:relative;
    width:100%;
    max-width:420px;
    margin:auto;
    inset:auto;
    transform:none;
  }

  /* Remove circle positions */
  .item1,
  .item2,
  .item3,
  .item4,
  .item5,
  .item6{
    top:auto;
    bottom:auto;
    left:auto;
    right:auto;
  }

  .features-right img{
    width:100%;
    max-width:420px;
    height:auto;
  }

}


/* ================= MOBILE VIEW ================= */

@media (max-width:600px){

  .project-features{
    padding:60px 15px;
  }

  .circle-layout{
    width:100%;
    max-width:320px;
    gap:14px;
  }

  .circle-center h2{
    font-size:24px;
  }

  .circle-center p{
    font-size:13px;
  }

  .feature-item{
    max-width:100%;
    padding:16px;
  }

  .feature-item h4{
    font-size:14px;
  }

  .feature-item p{
    font-size:12px;
  }

  .features-right img{
    width:100%;
  }

}


/* ================= BENEFITS SECTION ================= */
/* ================= BENEFITS SECTION ================= */
.benefits-section {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;

  /* Pencil sketch shading effect using layered gradients */
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.02) 5%, transparent 6%),
    radial-gradient(circle at 80% 30%, rgba(0,0,0,0.015) 4%, transparent 5%),
    radial-gradient(circle at 50% 70%, rgba(0,0,0,0.02) 6%, transparent 7%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.015) 5%, transparent 6%);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Section Header */
.benefits-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.benefits-section .section-header h2 {
  font-size: 36px;
  color: #8d0501;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefits-section .section-header p {
  font-size: 16px;
  color: #292929;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* Individual Benefit Card */
.benefit-card {
  background: white;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border-left: 6px solid #144a9a;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Title & Description */
.benefit-card h3 {
  font-size: 18px;
  color: #8d0501;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 15px;
  color: #292929;
  line-height: 1.5;
}

/* Card Accent Colors */
.benefit-card:nth-child(1) { border-color: #f1c40f;}
.benefit-card:nth-child(2) { border-color: #f1c40f; }
.benefit-card:nth-child(3) { border-color: #f1c40f; }
.benefit-card:nth-child(4) { border-color: #f1c40f; }
.benefit-card:nth-child(5) { border-color: #f1c40f; }
.benefit-card:nth-child(6) { border-color: #f1c40f; }

/* Responsive */
@media screen and (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

}

.contact-section {
  padding: 80px 0;
  background: #f5f5f5;
  font-family: 'Poppins', sans-serif;
}

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Map */
.contact-map {
  flex: 1 1 45%;
  min-height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form */
.contact-form {
  flex: 1 1 45%;
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  font-size: 28px;
  color: #a81414;
  margin-bottom: 15px;
}

.contact-form p {
  font-size: 16px;
  color: #292929;
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #144a9a;
}

.contact-form button {
  background: #a81414;
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #a81414;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    flex-direction: column;
  }
  .contact-map,
  .contact-form {
    flex: 1 1 100%;
    min-height: 350px;
  }
}




/* ================= POPUP OVERLAY ================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
  overflow: hidden; /* prevent page scroll when popup is open */
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ================= POPUP BOX ================= */
.popup-box {
  background: #fff;
  width: 400px;
  max-width: 95%;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: fixed; /* make popup fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ================= POPUP TITLE ================= */
.popup-box h2 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* ================= CLOSE BUTTON ================= */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* ================= MONTH NAVIGATION ================= */
.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.month-navigation h3 {
  font-size: 16px;
}

.month-navigation button {
  background: #d4af37;
  border: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

/* ================= CALENDAR ================= */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-grid div {
  padding: 10px 0;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  transition: 0.2s;
}

.calendar-grid div:hover {
  background: #f0f0f0;
}

.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.selected {
  background: #d4af37;
  color: #fff;
}

.selected-info {
  margin-top: 12px;
  font-size: 14px;
  text-align: left;
}

/* ================= FORM FIELDS ================= */
.input-field {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

/* ================= SUBMIT BUTTON ================= */
.book-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #d4af37;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.book-btn:hover {
  background: #b8922e;
}

/* ================= FORM MESSAGE ================= */
#formMessage {
  margin-top: 10px;
  font-size: 14px;
  min-height: 18px;
  text-align: center;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 576px) {

  .popup-box {
    width: 90%;
    padding: 12px;
    max-height: 90vh;       /* fits mobile screen */
    position: fixed;        /* remain fixed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;       /* no scroll inside popup */
  }

  .popup-box h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .month-navigation h3 {
    font-size: 14px;
  }

  .month-navigation button {
    padding: 4px 8px;
    font-size: 14px;
  }

  .calendar-grid {
    gap: 3px;               /* smaller gaps for compact view */
    grid-template-columns: repeat(7, 1fr);
  }

  .calendar-grid div {
    padding: 4px 0;         /* smaller calendar cells */
    font-size: 11px;
  }

  .input-field {
    padding: 6px;
    font-size: 13px;
    margin-top: 8px;
  }

  .book-btn {
    padding: 8px;
    font-size: 14px;
    margin-top: 10px;
  }

  .selected-info {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* 🔹 FIX ADDED HERE */
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
  text-decoration: none;   /* Removes underline */
}

.footer-col ul li a:hover {
  color: #fff7c5;
  padding-left: 4px;
}

/* Logo */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* About text */
.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  font-family: justify-content;
}

/* Business info */
.footer-info li {
  opacity: 0.9;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}


/* ================= VELAVAN FLOATING BUTTONS + CHATBOT ================= */

/* Dialogflow host */
#vpDfMessenger {
  --df-messenger-button-titlebar-color: #8c0000;
  --df-messenger-chat-background-color: #ffffff;
  --df-messenger-font-color: #222;
  --df-messenger-send-icon: #8c0000;
  --df-messenger-chat-icon: none;

  position: fixed !important;
  right: 20px !important;
  bottom: 95px !important;
  z-index: 99999 !important;
}

/* COMPLETELY hide Dialogflow default launcher */
#vpDfMessenger::part(chat-button) {
  display: none !important;
}

df-messenger-chat-bubble {
  display: none !important;
}

df-messenger::part(chat-button) {
  display: none !important;
}

/* Desktop buttons */
.vp-desktop-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 100000;
}

.vp-action-btn {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: transform 0.25s ease;
}

.vp-action-btn:hover {
  transform: scale(1.08);
}

.vp-whatsapp { 
  background: #25D366; 
}

.vp-call { 
  background: #0d6efd; 
}

.vp-chat { 
  background: #b30000; 
}

.vp-chat i,
.vp-mobile-bar-item i {
  pointer-events: none;
}

/* Mobile bottom bar hidden in desktop */
.vp-mobile-bottom-bar {
  display: none;
}

#vpChatToggleBtn,
#vpMobileChatToggleBtn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ================= MOBILE + TABLET ================= */

@media (max-width: 1024px) {

  /* Hide desktop floating buttons */
  .vp-desktop-actions {
    display: none !important;
  }

  /* Mobile bottom bar */
  .vp-mobile-bottom-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
    width: calc(100% - 24px);
    max-width: 360px;
    background: #c61f26;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
    z-index: 100002;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 4px 8px calc(4px + env(safe-area-inset-bottom));
    border-radius: 16px;
  }

  .vp-mobile-bar-item {
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
  }

  .vp-mobile-chat {
    background: #c61f26;
    
  }

  /* Dialogflow chat position in mobile */
  #vpDfMessenger {
    right: 10px !important;
    bottom: 125px !important;
    z-index: 99999 !important;
  }
}

/* Hide Dialogflow default launcher completely */
df-messenger::part(chat-button) {
  display: none !important;
}

df-messenger-chat-bubble {
  display: none !important;
}

df-messenger-button {
  display: none !important;
}

/* Prevent any default bubble appearing */
df-messenger {
  --df-messenger-chat-icon: none !important;
}