* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --primary: #1ba0d8;
  --primary-dark: #2e3190;
  --gold: #f0a500;
  --dark: #0a0a1a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #080820;
  color: #e0e0e0;
  padding: 0 clamp(15px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(27, 160, 216, 0.25);
  min-height: 48px;
  flex-wrap: wrap;
}

.top-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.top-row.left {
  flex: 1;
  justify-content: flex-start;
}
.top-row.right {
  justify-content: flex-end;
}

.top-row span,
.top-row .review-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-row i {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.review-stat {
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: 20px;
  transition: var(--transition-smooth);
  cursor: default;
}
.review-stat:hover {
  background: rgba(255, 255, 255, 0.12);
}
.review-stat .stars {
  color: #ffb800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  display: flex;
  gap: 1px;
}
.review-stat .stars i {
  color: #ffb800 !important;
  font-size: 0.65rem;
}
.review-stat .rating-text {
  font-weight: 700;
  color: white;
  font-size: 0.82rem;
}
.review-stat .review-count {
  color: #aaa;
  font-size: 0.7rem;
}
.review-stat.google .platform-icon {
  color: #4285f4 !important;
}
.review-stat.tripadvisor .platform-icon {
  color: #00af87 !important;
}

.top-social {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}
.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: white;
  transition: var(--transition-smooth);
  font-size: 0.75rem;
  text-decoration: none;
}
.top-social a:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 160, 216, 0.3);
}

/* ========== HEADER ========== */
.header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px clamp(15px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(27, 160, 216, 0.1);
  gap: 15px;
  min-height: 65px;
}

.logo {
  flex-shrink: 0;
  z-index: 1002;
}
.logo img {
  height: clamp(40px, 5vw, 55px);
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: clamp(15px, 2.5vw, 30px);
  align-items: center;
}
.nav-links a {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(27, 160, 216, 0.3);
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}
.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 49, 144, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1a1a2e;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  transition: var(--transition-smooth);
}
.menu-toggle:hover {
  color: var(--primary);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: white;
  z-index: 1003;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.mobile-nav-panel.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.mobile-nav-header .nav-logo {
  height: 42px;
}
.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1a1a2e;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-smooth);
}
.mobile-close-btn:hover {
  color: var(--primary);
}

.mobile-nav-body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-body a {
  display: block;
  padding: 14px 16px;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.mobile-nav-body a:hover {
  background: #f5f9ff;
  color: var(--primary);
}
.mobile-nav-body .btn-mobile {
  background: var(--primary);
  color: white !important;
  text-align: center;
  border-radius: 50px;
  margin-top: 15px;
  padding: 14px;
  font-weight: 700;
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.mobile-nav-footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #555;
}
.mobile-nav-footer .contact-info i {
  color: var(--primary);
  width: 18px;
}
.mobile-review-stats {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.mobile-review-stats .review-stat {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(480px, 85vh, 750px);
  min-height: 450px;
  overflow: hidden;
}
.slides {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  width: 25%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 850px;
  padding: 0 clamp(15px, 5vw, 40px);
  animation: fadeInUp 0.8s ease;
  width: 100%;
}
.slide-content .subtitle {
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.slide-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.slide-content p {
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  margin-bottom: 25px;
  opacity: 0.95;
}

.btn-hero {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: clamp(10px, 2vw, 15px) clamp(25px, 4vw, 40px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  box-shadow: 0 15px 35px rgba(27, 160, 216, 0.45);
  text-decoration: none;
  margin: 5px;
}
.btn-hero:hover {
  background: transparent;
  border-color: white;
  transform: translateY(-3px);
}
.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: clamp(10px, 2vw, 15px) clamp(25px, 4vw, 40px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  transition: var(--transition-smooth);
  border: 2px solid white;
  text-decoration: none;
  margin: 5px;
}
.btn-hero-outline:hover {
  background: white;
  color: var(--dark);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-dots {
  position: absolute;
  bottom: clamp(15px, 3vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(8px, 1.5vw, 12px);
  z-index: 10;
}
.slider-dots span {
  width: clamp(8px, 1.2vw, 11px);
  height: clamp(8px, 1.2vw, 11px);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.slider-dots span.active {
  background: var(--primary);
  width: clamp(25px, 3.5vw, 32px);
  border-radius: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  width: clamp(36px, 5vw, 48px);
  height: clamp(36px, 5vw, 48px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.slider-arrow.prev {
  left: clamp(8px, 2vw, 20px);
}
.slider-arrow.next {
  right: clamp(8px, 2vw, 20px);
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(50px, 8vw, 80px) clamp(15px, 5vw, 40px);
  max-width: 1350px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(35px, 5vw, 55px);
}
.section-header .label {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  margin-bottom: 6px;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0a0a1a;
  margin-bottom: 8px;
}
.section-header h2 span {
  color: var(--primary);
}
.section-header .divider {
  width: clamp(45px, 6vw, 65px);
  height: 3px;
  background: var(--primary);
  margin: 10px auto;
  border-radius: 2px;
}
.section-header p {
  color: #555;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  max-width: 550px;
  margin: 0 auto;
}

/* ========== PACKAGES GRID ========== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}
.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.07);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -15px rgba(27, 160, 216, 0.2);
}
.card-image {
  position: relative;
  height: clamp(190px, 25vw, 240px);
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.package-card:hover .card-image img {
  transform: scale(1.06);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(27, 160, 216, 0.35);
  z-index: 2;
}
.card-badge.gold {
  background: var(--gold);
}
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.card-body {
  padding: clamp(18px, 2.5vw, 24px);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 6px;
  color: #0a0a1a;
}
.card-body > p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
  font-size: 0.82rem;
  color: #555;
}
.card-features span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-features i {
  color: var(--primary);
  font-size: 0.75rem;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.price {
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: var(--primary-dark);
}
.price small {
  font-size: 0.78rem;
  font-weight: 500;
  color: #888;
}
.btn-card {
  background: var(--primary);
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.btn-card:hover {
  background: var(--primary-dark);
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.review-card {
  background: white;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: var(--transition-smooth);
}
.review-card:hover {
  box-shadow: 0 20px 45px rgba(27, 160, 216, 0.1);
  transform: translateY(-5px);
}
.review-stars {
  color: #ffb800;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.review-text {
  font-style: italic;
  color: #444;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}
.why-card {
  text-align: center;
  padding: clamp(28px, 3.5vw, 38px) clamp(18px, 2.5vw, 24px);
  border-radius: 20px;
  background: white;
  border: 1px solid #eef2ff;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.02);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 38px rgba(27, 160, 216, 0.08);
  transform: translateY(-4px);
}
.why-icon {
  width: clamp(60px, 8vw, 72px);
  height: clamp(60px, 8vw, 72px);
  background: linear-gradient(135deg, #e8f4fd, #d0eaf8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  color: var(--primary);
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f1f3a 50%, #0a1628 100%);
  color: white;
  text-align: center;
  padding: clamp(55px, 8vw, 80px) clamp(20px, 4vw, 40px);
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(27, 160, 216, 0.08) 0%,
    transparent 50%
  );
  animation: ctaGlow 8s infinite alternate;
}
@keyframes ctaGlow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5%, 3%);
  }
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-section .cta-badge {
  display: inline-block;
  background: rgba(27, 160, 216, 0.2);
  border: 1px solid rgba(27, 160, 216, 0.4);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-section h2 span {
  color: var(--primary);
}
.cta-section .cta-description {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  opacity: 0.85;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: clamp(13px, 2vw, 17px) clamp(30px, 5vw, 44px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  transition: var(--transition-smooth);
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(27, 160, 216, 0.4);
}
.btn-cta-primary:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: clamp(13px, 2vw, 17px) clamp(30px, 5vw, 44px);
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  transition: var(--transition-smooth);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-cta-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}
.cta-contact-item i {
  font-size: 1.3rem;
  color: var(--primary);
  background: rgba(27, 160, 216, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-contact-item a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
.cta-contact-item a:hover {
  color: var(--primary);
}

/* ========== FOOTER ========== */
.footer {
  background: #060615;
  color: #c0c0d0;
  padding: clamp(45px, 7vw, 65px) clamp(15px, 5vw, 40px) 20px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-dark),
    var(--primary)
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(25px, 4vw, 45px);
  max-width: 1350px;
  margin: 0 auto 35px;
}
.footer h4 {
  color: white;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  position: relative;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a0a0b8;
  margin-bottom: 9px;
  transition: var(--transition-smooth);
  font-size: 0.88rem;
  text-decoration: none;
  padding: 5px 0;
}
.footer-links a .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(27, 160, 216, 0.2);
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}
.footer-links a:hover .check-icon {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(27, 160, 216, 0.4);
}
.footer-contact p {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.footer-contact i {
  color: var(--primary);
  width: 16px;
}
.footer-newsletter input {
  width: 100%;
  padding: 11px 15px;
  border-radius: 50px;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  margin-bottom: 10px;
  outline: none;
  font-size: 0.88rem;
}
.footer-newsletter input:focus {
  border-color: var(--primary);
}
.footer-newsletter button {
  width: 100%;
  padding: 11px;
  border-radius: 50px;
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
}
.footer-newsletter button:hover {
  background: var(--primary-dark);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.83rem;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* ========== WHATSAPP WIDGET ========== */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-chat-box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  width: 320px;
  max-width: calc(100vw - 40px);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  pointer-events: none;
}
.whatsapp-chat-box.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
.whatsapp-chat-header {
  background: var(--whatsapp);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-chat-header .agent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--whatsapp);
  flex-shrink: 0;
}
.whatsapp-chat-header .agent-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.whatsapp-chat-header .agent-info span {
  font-size: 0.78rem;
  opacity: 0.9;
}
.whatsapp-chat-header .close-chat {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  opacity: 0.8;
  transition: 0.2s;
}
.whatsapp-chat-header .close-chat:hover {
  opacity: 1;
}
.whatsapp-chat-body {
  padding: 20px;
  background: #f5f7fb;
}
.whatsapp-chat-body .chat-message {
  background: white;
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  line-height: 1.5;
}
.whatsapp-chat-body .chat-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whatsapp-chat-body input,
.whatsapp-chat-body textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  font-family: inherit;
  font-size: 0.9rem;
  resize: none;
  outline: none;
  transition: 0.2s;
  background: white;
}
.whatsapp-chat-body input:focus,
.whatsapp-chat-body textarea:focus {
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}
.whatsapp-chat-body textarea {
  min-height: 70px;
}
.whatsapp-chat-body .btn-send {
  background: var(--whatsapp);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.whatsapp-chat-body .btn-send:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  position: relative;
  animation: pulse 2s infinite;
}
.whatsapp-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.55);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.whatsapp-float-btn .tooltip {
  position: absolute;
  right: 72px;
  background: #333;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.whatsapp-float-btn:hover .tooltip {
  opacity: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    padding: 0 15px;
    gap: 0;
  }
  .top-row {
    width: 100%;
    justify-content: center;
    padding: 6px 0;
    gap: 10px;
  }
  .top-row.left {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header {
    padding: 10px 15px;
    min-height: 58px;
  }
  .nav-links {
    display: none !important;
  }
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .menu-toggle:active {
    background: rgba(27, 160, 216, 0.1);
  }
  .mobile-nav-panel {
    z-index: 1003 !important;
  }
  .mobile-nav-overlay {
    z-index: 1002 !important;
  }
  .mobile-nav-overlay.active {
    display: block !important;
  }
  .mobile-nav-body a {
    padding: 16px !important;
    margin: 2px 0;
  }
  .mobile-nav-body a:active {
    background: #f0f9ff !important;
    color: var(--primary) !important;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
  .cta-contact-row {
    flex-direction: column;
    gap: 15px;
  }
  .whatsapp-chat-box {
    width: 290px;
  }
  .whatsapp-float-btn {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
  }
}

@media (min-width: 769px) {
  .mobile-nav-panel,
  .mobile-nav-overlay {
    display: none !important;
  }
  .mobile-nav-panel.active,
  .mobile-nav-overlay.active {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 38px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
