/* ==========================================
   GRUPO JAZMAR - Estilos Principales
   ========================================== */

:root {
  --primary: #1e3a5f;
  --primary-dark: #0d1f3c;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --accent: #2ecc71;
  --light: #f8f9fc;
  --gray: #6c757d;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #2d3748;
  line-height: 1.7;
  background: var(--white);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  background: rgba(14, 28, 54, 0.97) !important;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand img {
  height: 50px;
  filter: brightness(1.1);
  transition: var(--transition);
}

.navbar-brand img:hover { transform: scale(1.05); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
  background: rgba(201,162,39,0.15);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--primary-dark) !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  padding: 8px 24px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

/* Language Switcher */
.btn-lang-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,162,39,0.4);
  color: #fff;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lang-toggle:hover {
  background: rgba(201,162,39,0.2);
  border-color: var(--gold);
}
.lang-dropdown {
  background: #0d1f3c !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  padding: 6px !important;
  min-width: 160px;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.lang-opt:hover, .lang-opt.lang-active {
  background: rgba(201,162,39,0.18);
  color: var(--gold-light);
}

/* ==========================================
   HERO / SLIDES
   ========================================== */
.hero-swiper {
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,28,54,0.88) 0%, rgba(14,28,54,0.5) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.5);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-title span { color: var(--gold-light); }

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions { animation: fadeInUp 1s ease 0.6s both; }

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,162,39,0.4);
  color: var(--primary-dark);
}

.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold-light) !important;
  background: rgba(14,28,54,0.6);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after { font-size: 18px !important; font-weight: 900; }

.swiper-pagination-bullet { background: rgba(255,255,255,0.6) !important; }
.swiper-pagination-bullet-active { background: var(--gold-light) !important; }

/* ==========================================
   STATS BAR
   ========================================== */
.stats-bar {
  background: var(--primary-dark);
  padding: 25px 0;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  color: var(--gold-light);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
section { padding: 90px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
  display: inline-block;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(201,162,39,0.3);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.divider-gold {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.services-section { background: var(--light); }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-body { padding: 28px; }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--gold-light);
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

.service-tag {
  background: rgba(30,58,95,0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.btn-service {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.btn-service:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section { background: var(--white); }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrapper img { width: 100%; border-radius: var(--radius); }

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  padding: 20px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-float span { display: block; font-size: 11px; font-weight: 600; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

.value-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }

.value-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 20px;
}

.value-title { font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }

.value-text { color: var(--gray); font-size: 14px; }

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section { background: var(--light); }

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--gold-light);
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 55px;
  left: calc(50% + 35px);
  width: calc(100% - 70px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.step-title { font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.step-text { color: var(--gray); font-size: 14px; }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 70%);
}

.cta-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.cta-subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-top: 12px; }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section { background: var(--white); }

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  height: 100%;
}

.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 18px;
}

.contact-text-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-text-value { color: #fff; font-weight: 500; }
.contact-text-value a { color: var(--gold-light); text-decoration: none; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-control, .form-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
  background: #f8f9fc;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30,58,95,0.1);
  background: var(--white);
}

.form-label { font-weight: 600; font-size: 13px; color: var(--primary-dark); margin-bottom: 6px; }

/* ==========================================
   PAGE HERO (internal pages)
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-title { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
.page-hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 12px; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active, .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.6); }

/* ==========================================
   SERVICE DETAIL STYLES
   ========================================== */
.feature-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.feature-box-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.feature-box-title { font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.feature-box-text { color: var(--gray); font-size: 14px; }

/* ==========================================
   INSURANCE PRICE HIGHLIGHT
   ========================================== */
.price-highlight {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.price-highlight::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
}

.price-value {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.price-label { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}

.footer-brand img { height: 55px; margin-bottom: 20px; filter: brightness(1.2); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 280px; }

.footer-heading { color: var(--gold-light); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
}
.social-btn:hover { background: var(--gold); color: var(--primary-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==========================================
   CHATBOT WIDGET
   ========================================== */
#chatbot-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(30,58,95,0.4);
  transition: var(--transition);
  border: none;
}

#chatbot-trigger:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(30,58,95,0.5); }

.chatbot-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
}

#chatbot-container {
  position: fixed;
  bottom: 106px;
  right: 30px;
  width: 380px;
  height: 560px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  z-index: 998;
  display: flex;
  flex-direction: column;
  transform: scale(0) translateY(20px);
  transform-origin: bottom right;
  transition: var(--transition);
  opacity: 0;
  overflow: hidden;
}

#chatbot-container.open {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 44px;
  height: 44px;
  background: rgba(201,162,39,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.chatbot-info { flex: 1; }
.chatbot-name { color: #fff; font-weight: 700; font-size: 15px; }
.chatbot-status { color: rgba(255,255,255,0.65); font-size: 12px; }
.chatbot-status::before { content: '● '; color: var(--accent); }

.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.chatbot-close:hover { color: #fff; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8f9fc;
}

.chatbot-messages::-webkit-scrollbar { width: 4px; }
.chatbot-messages::-webkit-scrollbar-track { background: transparent; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.chat-msg {
  max-width: 85%;
  animation: fadeInMsg 0.3s ease;
}

.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }

.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
}

.chat-msg.bot .chat-bubble {
  background: #fff;
  color: var(--primary-dark);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-time { font-size: 10px; color: #aaa; margin-top: 4px; padding: 0 4px; }
.chat-msg.user .chat-time { text-align: right; }

.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.chat-typing span {
  width: 8px; height: 8px;
  background: var(--gray);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.quick-reply {
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.quick-reply:hover { background: var(--primary); color: #fff; }

.chatbot-contact-form {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-top: 6px;
}

.chatbot-contact-form h6 { color: var(--primary-dark); font-weight: 700; margin-bottom: 12px; font-size: 14px; }
.chatbot-contact-form input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  margin-bottom: 8px;
  outline: none;
}
.chatbot-contact-form input:focus { border-color: var(--primary); }
.chatbot-contact-form button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.chatbot-contact-form button:hover { opacity: 0.9; }

.chatbot-input-area {
  padding: 12px 14px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
  background: #fff;
}

.chatbot-input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 25px;
  padding: 10px 16px;
  font-size: 13.5px;
  outline: none;
  transition: var(--transition);
}

.chatbot-input:focus { border-color: var(--primary); }

.chatbot-send {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-send:hover { transform: scale(1.1); }

/* ==========================================
   BUTTONS GENERAL
   ========================================== */
.btn-primary-jz {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary-jz:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,162,39,0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  padding: 12px 32px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,162,39,0.4); color: var(--primary-dark); }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
  .hero-content { padding: 100px 30px 60px; }
  .about-badge-float { position: static; margin-top: 20px; display: inline-block; }
  .step-connector { display: none; }
}

@media (max-width: 767px) {
  section { padding: 60px 0; }
  #chatbot-container { width: calc(100vw - 30px); right: 15px; }
  #chatbot-trigger { right: 15px; bottom: 20px; }
  .hero-title { font-size: 2rem; }
}

@media (max-width: 575px) {
  .contact-info-card, .contact-form-card { padding: 24px; }
}
