/* ============================================================
   FINCA VIDALENTA â€” style.css
   ============================================================ */

/* 1. Variables */
:root {
  --brand-blue:       #0A5D70;
  --brand-blue-dark:  #074a5a;
  --brand-blue-light: #1e7a8f;
  --brand-beige:      #F5F0E8;
  --brand-sand:       #E8DCC8;
  --brand-warm:       #C4A882;
  --text-dark:        #1a2226;
  --text-muted:       #657177;
  --white:            #ffffff;
  --font-body:        'Outfit', sans-serif;
  --font-heading:     'Playfair Display', serif;
  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        28px;
  --shadow-sm:        0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:        0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:        0 24px 64px rgba(0,0,0,0.16);
  --nav-h:            90px;
  --transition:       0.3s ease;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* 3. TipografÃ­a */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--brand-blue);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}
.lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.text-center { text-align: center; }
blockquote.quote {
  border-left: 3px solid var(--brand-warm);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--brand-blue);
  background: rgba(196,168,130,0.1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* 4. Layout */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.bg-main { background: var(--white); }
.bg-soft  { background: var(--brand-beige); }

/* 5. Glass */
.glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.glass-hover {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* 6. Botones */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}
.btn-primary:hover {
  background: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,93,112,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn-outline:hover {
  background: rgba(10,93,112,0.05);
  transform: translateY(-2px);
}
.btn-large {
  padding: 1.05rem 2.6rem;
  font-size: 1.05rem;
}

/* 7. Hero-tag (etiqueta pill) */
.hero-tag {
  display: inline-block;
  padding: 0.4rem 1.15rem;
  background: rgba(10,93,112,0.1);
  color: var(--brand-blue);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* 8. Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--brand-blue);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.logo-link { display: flex; align-items: center; }
.brand-logo { height: 65px; width: auto; }
.brand-logo.hidden { display: none; }

/* Logo swap: azul por defecto, blanco al hacer scroll */
.logo-azul   { display: block; }
.logo-blanco { display: none; }
.navbar.scrolled .logo-azul   { display: none; }
.navbar.scrolled .logo-blanco { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--brand-warm);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-links .btn-primary { text-shadow: none; }
.nav-links .btn-primary::after { display: none; }
.navbar.scrolled .nav-links a { text-shadow: none; }

/* BotÃ³n hamburguesa (mÃ³vil) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.4rem;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* 9. Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url('../img/hero_piscina.png') center center / cover no-repeat;
  background-color: var(--brand-blue-dark);
  color: var(--white);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: var(--nav-h);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0.92;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.hero-capacity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}
.hero-capacity svg { width: 18px; height: 18px; }

/* 10. FilosofÃ­a / grid de 2 columnas */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.philosophy-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* Imagen y badge flotante */
.philosophy-image-container { position: relative; }
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
}
.generated-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-sand);
}
#philosophy-img {
  background-image: url('../zona_piscina_sombrillas.jpg');
}
#events-img {
  background-image: url('../evebto_atardecer.jpg');
  background-color: #E6D5C3;
}

.floating-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: 50px;
  padding: 0.7rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  animation: floatBadge 3s ease-in-out infinite;
  z-index: 2;
  white-space: nowrap;
}
.floating-badge svg { width: 18px; height: 18px; color: var(--brand-warm); }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* 11. Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--brand-sand);
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-blue);
  padding: 1.5rem 1.5rem 0.5rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.65;
}

/* 11.5 Carousel (Scroll lateral) */
.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-warm) rgba(0,0,0,0.05);
}
.carousel::-webkit-scrollbar {
  height: 8px;
}
.carousel::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}
.carousel::-webkit-scrollbar-thumb {
  background: var(--brand-warm);
  border-radius: 4px;
}
.carousel > .feature-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}

/* 12. Booking */
.booking-section { background: var(--brand-beige); }
.booking-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
}
.booking-container h2 { margin-bottom: 0.75rem; }
.booking-container > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 13. Mapa */
.location-section { background: var(--brand-beige); }
.map-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}
.map-container iframe { display: block; }

/* 14. Footer */
.footer {
  background: var(--brand-blue-dark);
  color: rgba(255,255,255,0.82);
  padding: 4rem 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  font-size: 0.93rem;
  opacity: 0.65;
  max-width: 280px;
  line-height: 1.6;
}
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  line-height: 1.55;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--brand-warm); }
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--brand-warm);
  transform: scale(1.1);
}
.social-links svg { width: 18px; height: 18px; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* 15. WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.48);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.58);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* 16. AnimaciÃ³n de entrada al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* 16.5 Contact Form */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 4rem;
}
.dynamic-form .form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.dynamic-form .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}
.dynamic-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.dynamic-form label {
  font-weight: 600;
  color: var(--brand-blue-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.dynamic-form input,
.dynamic-form select,
.dynamic-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: rgba(255,255,255,0.9);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.dynamic-form input:focus,
.dynamic-form select:focus,
.dynamic-form textarea:focus {
  outline: none;
  border-color: var(--brand-warm);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.2);
}
.hidden-field {
  display: none !important;
}

/* 16.6 Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.5rem;
  background: rgba(7, 74, 90, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.5rem 3rem;
  }
}
.cookie-content h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: var(--brand-warm);
}
.cookie-content p {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 800px;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.cookie-banner .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.cookie-link {
  font-size: 0.85rem;
  text-decoration: underline;
  opacity: 0.8;
}
.cookie-link:hover {
  opacity: 1;
}

/* 16.7 Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}
.modal-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  animation: slideUp 0.3s forwards;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition);
}
.modal-close:hover {
  background: var(--brand-warm);
  color: var(--white);
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { transform: translateY(0); } }

/* 16.8 Flatpickr Customization (Calendario) */
.flatpickr-calendar {
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: none;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  background: rgba(255, 60, 60, 0.08) !important;
  color: #d83b3b !important;
  text-decoration: line-through;
  border-color: transparent;
}
.flatpickr-day.ocupado-rojo:not(.selected) {
  background: rgba(255, 60, 60, 0.15) !important;
  color: #d83b3b !important;
  border-color: transparent;
}
.flatpickr-day.ocupado-naranja:not(.selected) {
  background: rgba(255, 165, 0, 0.2) !important;
  color: #d87b00 !important;
  border-color: transparent;
}
.flatpickr-day:not(.flatpickr-disabled):not(.nextMonthDay):not(.prevMonthDay) {
  background: rgba(37, 211, 102, 0.1);
  color: var(--brand-blue-dark);
  font-weight: 500;
  border-radius: 50%;
}
.flatpickr-day:not(.flatpickr-disabled):not(.nextMonthDay):not(.prevMonthDay):hover {
  background: rgba(37, 211, 102, 0.3);
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  color: #fff !important;
}

/* 17. Responsive */
@media (max-width: 960px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .events .philosophy-image-container { order: -1; }
  .image-wrapper { aspect-ratio: 16 / 9; }
  .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .floating-badge { right: 0; bottom: -10px; }
}

@media (max-width: 700px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* MenÃº mÃ³vil */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--brand-blue);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links .btn { width: 100%; justify-content: center; }

  .hero-title { font-size: 2.3rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .booking-container { padding: 2rem 1.25rem; }

  .carousel > .feature-card {
    flex: 0 0 85vw;
  }

  .contact-form-container { padding: 2rem 1.5rem; }
  .dynamic-form .form-row { flex-direction: column; gap: 0; }
  .dynamic-form .form-row .form-group { margin-bottom: 1.5rem; }
  .form-actions { flex-direction: column; gap: 0.75rem !important; }
}

/* ==========================================================================
   Chatbot Styles
   ========================================================================== */

.chatbot-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-warm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.chatbot-toggle i {
    width: 28px;
    height: 28px;
}

.chatbot-window {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 350px;
    max-height: 500px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: var(--brand-blue-dark);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

#chatbot-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 250px;
    max-height: 350px;
    background: #f8f9fa;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.chat-bubble.bot {
    background: white;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 0.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-bubble.user {
    background: var(--brand-warm);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0.2rem;
    box-shadow: 0 2px 5px rgba(216, 123, 0, 0.2);
}

.chatbot-options {
    padding: 1rem;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-option-btn {
    background: rgba(30, 60, 114, 0.05);
    border: 1px solid rgba(30, 60, 114, 0.1);
    color: var(--brand-blue-dark);
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.chat-option-btn:hover {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}

/* Chatbot Mobile Responsiveness */
@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100% - 2rem);
        right: 1rem;
        bottom: 5rem;
    }
    .chatbot-toggle {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }
}

