/*
Theme Name: BestRides
Theme URI: https://bestridevallarta.com
Author: BestRides Puerto Vallarta
Description: Ultra-clean, 100% responsive, high-end theme for BestRides Puerto Vallarta Private Transfers. Featuring Plus Jakarta Sans & Outfit typography, midnight navy luxury aesthetic, direct WhatsApp and Phone integration (+52 1 322 241 1820).
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: bestrides
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ==========================================================================
   1. RESET & MODERN TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0f172a;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Layout Container */
.site-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (Crisp, White, Sticky)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #f1f5f9;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Desktop Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-size: 1.02rem;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: #1fa79e;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #1fa79e;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Contact Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.phone-action-btn:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

.wa-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.wa-header-btn:hover {
  background-color: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Mobile Hamburger Menu */
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #0f172a;
  border-radius: 3px;
}

@media (max-width: 991px) {
  .desktop-nav, .phone-action-btn {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex;
  }
  .header-inner {
    height: 74px;
  }
  .brand-logo-img {
    height: 48px;
  }
}

/* Mobile Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1100;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.drawer-logo-img {
  height: 44px;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #64748b;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.drawer-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  padding: 6px 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   3. HERO BLOCK (Luxury Midnight Navy, Emerald Badge, Crisp Layout)
   ========================================================================== */
.hero-block {
  background-color: #080E24;
  background-image: 
    radial-gradient(circle at 85% 20%, rgba(31, 167, 158, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.12), transparent 40%);
  color: #ffffff;
  padding: 85px 0 95px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-block {
    padding: 55px 0 65px 0;
  }
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 167, 158, 0.15);
  border: 1px solid rgba(31, 167, 158, 0.35);
  color: #2dd4bf;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 3.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-heading span {
  color: #38bdf8;
  display: block;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.3rem;
  }
}

.hero-text {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 600px;
}

.hero-staff-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.staff-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-hero-wa:hover {
  background-color: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.btn-hero-phone:hover {
  background-color: #ffffff;
  color: #080E24;
  border-color: #ffffff;
}

/* Right Promo Box */
.hero-promo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.promo-circle-box {
  background: linear-gradient(135deg, #0f5132 0%, #15803d 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  padding: 24px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(15, 81, 50, 0.4);
}

.promo-circle-tag {
  display: inline-block;
  background-color: #ffffff;
  color: #0f5132;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.promo-circle-text {
  font-size: 1.05rem;
  line-height: 1.5;
}

.promo-circle-text strong {
  color: #fde047;
}

.hero-van-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.van-visual-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.van-visual-sub {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* ==========================================================================
   4. SECTION HEADINGS & COMMONS
   ========================================================================== */
.section-block {
  padding: 90px 0;
}

@media (max-width: 768px) {
  .section-block {
    padding: 60px 0;
  }
}

.bg-light {
  background-color: #f8fafc;
}

.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0d9488;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background-color: rgba(13, 148, 136, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
}

.section-subtitle {
  font-size: 1.08rem;
  color: #64748b;
  line-height: 1.6;
}

/* ==========================================================================
   5. SERVICES SECTION (Clean Informative Cards)
   ========================================================================== */
.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .services-grid-3 {
    grid-template-columns: 1fr;
  }
}

.service-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.service-icon-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(31, 167, 158, 0.12);
  color: #1fa79e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-box-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-box-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* ==========================================================================
   6. FLEET SECTION (Vehicles With Real Photos)
   ========================================================================== */
.fleet-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .fleet-grid-3 {
    grid-template-columns: 1fr;
  }
}

.fleet-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.fleet-image-box {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  position: relative;
}

.fleet-vehicle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-vehicle-photo {
  transform: scale(1.05);
}

.fleet-card-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background-color: #f1f5f9;
  color: #334155;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.fleet-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.fleet-card-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 18px;
}

.fleet-specs-box {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 14px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

/* ==========================================================================
   7. TOURS SECTION (4 Tours with Real Photos & Short Text)
   ========================================================================== */
.tours-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .tours-grid-2 {
    grid-template-columns: 1fr;
  }
}

.tour-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.tour-image-box {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.tour-card:hover .tour-card-img {
  transform: scale(1.05);
}

.tour-tag-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ea580c;
  background-color: #fff7ed;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.tour-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.tour-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
   8. WHY CHOOSE US (3 Quality Pillars)
   ========================================================================== */
.why-us-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .why-us-grid-3 {
    grid-template-columns: 1fr;
  }
}

.why-us-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.why-icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.why-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* ==========================================================================
   9. TESTIMONIALS & REVIEWS (Midnight Blue)
   ========================================================================== */
.reviews-block {
  background-color: #080E24;
  color: #ffffff;
  padding: 90px 0;
}

.reviews-head {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-head h2 {
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 991px) {
  .reviews-grid-3 {
    grid-template-columns: 1fr;
  }
}

.review-item-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.review-card-stars {
  color: #facc15;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-body-text {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-author-name {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  color: #38bdf8;
}

/* ==========================================================================
   10. CONTACT CTA SECTION (Seamless Midnight Luxury Transition)
   ========================================================================== */
.contact-cta-block {
  background: #070C1E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 85px 0;
  text-align: center;
}

.cta-tag {
  display: inline-block;
  background: rgba(31, 167, 158, 0.2);
  color: #2dd4bf;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cta-title {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.9rem;
  }
}

.cta-text {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 34px auto;
  line-height: 1.6;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.cta-btn-wa:hover {
  background-color: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.cta-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.cta-btn-phone:hover {
  background-color: #ffffff;
  color: #070C1E;
  border-color: #ffffff;
}

/* ==========================================================================
   11. LUXURY FOOTER (Deep Charcoal Midnight Navy #050814)
   ========================================================================== */
.site-footer {
  background-color: #050814;
  color: #ffffff;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
}

.footer-brand-tagline {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.footer-col-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-nav-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  font-size: 0.95rem;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: #2dd4bf;
  transform: translateX(4px);
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.footer-contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.f-contact-icon {
  font-size: 1.4rem;
}

.f-contact-info {
  display: flex;
  flex-direction: column;
}

.f-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.f-contact-val {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-loc-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-top: 14px;
  line-height: 1.5;
}

.loc-pin {
  color: #38bdf8;
  font-size: 1.1rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-bottom-bar strong {
  color: #cbd5e1;
}

/* ==========================================================================
   12. FLOATING WHATSAPP BUBBLE
   ========================================================================== */
.whats-app-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.whats-app-bubble:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
  background-color: #1eb857;
}

.wa-bubble-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .wa-bubble-text {
    display: none;
  }
  .whats-app-bubble {
    padding: 14px;
    bottom: 20px;
    right: 20px;
    border-radius: 50%;
  }
}
