/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  --background: #ffffff;
  --foreground: #1a1a2e;
  --card: #ffffff;
  --card-foreground: #1a1a2e;
  --primary: #00BBE4;
  --primary-hover: #007a91;
  --primary-foreground: #ffffff;
  --secondary: #f0f7f9;
  --secondary-foreground: #1a1a2e;
  --muted: #f5f5f5;
  --muted-foreground: #6b7280;
  --accent: #00BBE4;
  --accent-foreground: #ffffff;
  --border: #e5e7eb;
  --dark-bg: #1a1a2e;
  --dark-text: #c9d1d9;
  --dark-muted: #6b7280;
  --dark-input: #2a2a4a;
  --dark-border: #3a3a5a;
  --radius: 0.5rem;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --whatsapp: #25D366;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input { font: inherit; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.text-balance { text-wrap: balance; }
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { background: var(--accent); }
.btn-outline {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.3); }
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--dark-bg);
  color: #e0e0e0;
  font-size: 0.75rem;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.topbar-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.topbar-item i { width: 12px; height: 12px; }

/* City dropdown in topbar */
.topbar-city-dropdown {
  position: relative;
}
.topbar-city-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  color: #e0e0e0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.topbar-city-btn:hover { background: rgba(255,255,255,0.15); }
.topbar-chevron {
  transition: transform 0.2s;
}
.topbar-city-btn[aria-expanded="true"] .topbar-chevron {
  transform: rotate(180deg);
}
.topbar-city-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  overflow: hidden;
  min-width: 130px;
  z-index: 200;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.topbar-city-menu.open { display: block; }
.topbar-city-option {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  color: #c9d1d9;
  cursor: pointer;
  transition: background 0.15s;
}
.topbar-city-option:hover { background: rgba(255,255,255,0.08); }
.topbar-city-option.active {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   NAVBAR
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
main {
  padding-top: var(--header-height, 4rem);
}
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 48px; width: auto; }
.logo-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-foreground);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}
.logo-text {
  display: flex; flex-direction: column;
}
.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  color: var(--foreground);
}
.logo-tagline {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--secondary);
}
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .nav-cta { display: flex; } }
.nav-cta .btn { padding: 0.5rem 1rem; }

/* Mobile hamburger */
.mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
}
.mobile-toggle:hover { background: var(--secondary); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  background: var(--background);
  border-top: 1px solid var(--border);
  padding: 1rem;
}
.mobile-menu.is-open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.mobile-menu a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}
.mobile-menu-cta .btn {
  text-align: center;
  padding: 0.625rem 1rem;
}
.mobile-menu-info {
  padding-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu-info span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero { min-height: 700px; } }
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
  max-width: 36rem;
}
@media (min-width: 768px) { .hero-content { padding: 8rem 0 5rem; } }
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 28rem;
}
@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ============================================
   PRIVACY BANNER
   ============================================ */
.privacy-banner {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem 0;
}
.privacy-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .privacy-banner .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.privacy-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.privacy-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.privacy-left h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}
.privacy-left a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
}
.privacy-left a:hover { text-decoration: underline; }
.privacy-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.privacy-right a {
  text-decoration: underline;
  font-weight: 500;
}

/* ============================================
   INSURANCE CATEGORIES
   ============================================ */
.categories {
  padding: 4rem 0;
  background: var(--background);
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}
.category-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.category-card-img {
  position: relative;
  height: 16rem;
  overflow: hidden;
}
@media (min-width: 768px) { .category-card-img { height: 18rem; } }
.category-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-card:hover .category-card-img img {
  transform: scale(1.05);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.4);
  transition: background 0.3s;
}
.category-card:hover .category-card-overlay {
  background: rgba(26,26,46,0.5);
}
.category-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
}
.category-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}
.category-card-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* ============================================
   RAMOS DE SEGUROS
   ============================================ */
.ramos {
  padding: 5rem 0;
  background: var(--secondary);
}
.ramos h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
}
@media (min-width: 768px) { .ramos h2 { font-size: 2.25rem; } }
.ramos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .ramos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ramos-grid { grid-template-columns: repeat(3, 1fr); } }
.ramo-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.ramo-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.ramo-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  background: rgba(0,151,178,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.ramo-icon i { width: 1.5rem; height: 1.5rem; }
.ramo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card-foreground);
}
.ramo-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.ramo-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
}
.ramo-link:hover { text-decoration: underline; }

/* ============================================
   A TU LADO BANNER
   ============================================ */
.a-tu-lado {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.a-tu-lado-bg {
  position: absolute;
  inset: 0;
}
.a-tu-lado-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.a-tu-lado-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,151,178,0.8);
}
.a-tu-lado-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.a-tu-lado h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) { .a-tu-lado h2 { font-size: 3rem; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 5rem 0;
  background: var(--background);
}
.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
}
@media (min-width: 768px) { .testimonials h2 { font-size: 2.25rem; } }
/* Testimonials carousel */
.testimonials-carousel {
  margin-top: 3rem;
  position: relative;
}
.testimonials-viewport {
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-track { transition: none; }
}
@media (min-width: 768px) {
  .testimonials-track { gap: 1.5rem; }
}
.testimonials-carousel .testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testimonials-carousel .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .testimonials-track.last-page-single .testimonial-card:last-child {
    flex: 0 0 100%;
  }
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-bottom: 0.25rem;
}
.testimonials-dots:empty {
  display: none;
}
.testimonials-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}
.testimonials-dot:hover {
  background: var(--muted-foreground);
}
.testimonials-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}
.testimonial-card {
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 768px) {
  .testimonial-card { padding: 2rem 2.25rem 2rem 2rem; }
}
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--card-foreground);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.testimonial-quote {
  position: relative;
}
.testimonial-quote svg {
  width: 1rem; height: 1rem;
  color: rgba(0,151,178,0.3);
  margin-bottom: 0.5rem;
}
.testimonial-quote p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
  padding-right: 0.25em;
}

/* Mobile carousel controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .testimonial-controls { display: none; } }
.testimonial-arrow {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--foreground);
  transition: background 0.2s;
}
.testimonial-arrow:hover { background: var(--secondary); }
.testimonial-dots {
  display: flex; gap: 0.5rem;
}
.testimonial-dot {
  width: 0.625rem; height: 0.625rem;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.testimonial-dot.active { background: var(--primary); }

/* ============================================
   PARTNERS
   ============================================ */
.partners {
  padding: 3rem 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}
@media (min-width: 768px) { .partners-title { font-size: 1.5rem; margin-bottom: 2rem; } }
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) { .partners-row { gap: 3.5rem; } }
.partner-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  opacity: 0.6;
  letter-spacing: 0.025em;
  transition: opacity 0.3s;
}
@media (min-width: 768px) { .partner-name { font-size: 1.25rem; } }
.partner-name:hover { opacity: 1; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--primary);
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) { .cta-banner h2 { font-size: 1.5rem; } }
.cta-banner .subtitle {
  color: rgba(255,255,255,0.8);
}

/* ============================================
   NEWS
   ============================================ */
.news {
  padding: 5rem 0;
  background: var(--background);
}
.news h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  color: var(--foreground);
}
@media (min-width: 768px) { .news h2 { font-size: 2.25rem; } }
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(4, 1fr); } }
.news-card {
  background: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.news-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.news-card-img {
  position: relative;
  height: 12rem;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1rem; }
.news-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--card-foreground);
  line-height: 1.4;
}
.news-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.news-date i { width: 14px; height: 14px; color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark-bg);
  color: var(--dark-text);
}
.footer-main {
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-about p {
  font-size: 0.875rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--dark-input);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-text);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
}
.social-link i { width: 14px; height: 14px; }
.footer-posts { display: flex; flex-direction: column; gap: 1rem; }
.footer-post a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-post a:hover { color: var(--primary); }
.footer-post-date {
  font-size: 0.75rem;
  color: var(--dark-muted);
  margin-top: 0.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-search {
  display: flex;
}
.footer-search input {
  flex: 1;
  background: var(--dark-input);
  border: 1px solid var(--dark-border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
}
.footer-search input::placeholder { color: var(--dark-muted); }
.footer-search input:focus { outline: none; border-color: var(--primary); }
.footer-search button {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background 0.2s;
}
.footer-search button:hover { background: var(--accent); }
.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-item i {
  width: 16px; height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--dark-input);
  padding: 1rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--dark-muted);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.whatsapp-btn:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transform: scale(1.05);
}
.whatsapp-btn i { width: 28px; height: 28px; }

/* Quote SVG icon for testimonials */
.quote-icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: rgba(0,151,178,0.3);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 0.5rem;
}
