* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

body {
  background: radial-gradient(circle at top, #eef6ff, #f3f6fb);
  padding: 25px 14px;
  color: #0f172a;
  overflow-x: hidden;
}

.container {
  max-width: 1150px;
  margin: auto;
}

/* HERO STRIP */
.hero-strip {
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #0ea5e9);
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0px 20px 60px rgba(37, 99, 235, 0.25);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(40px);
}

.hero-strip::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(45px);
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-left p {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.7;
  max-width: 700px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

/* FORM */
.quote-form {
  padding: 28px;
  border-radius: 18px;
  background: white;
  border: 1px solid #e8eef6;
  box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.06);
  width: 100%;
}

.form-title {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbe3ef;
  outline: none;
  font-size: 14px;
  background: #f8fafc;
  transition: 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2563eb;
  background: white;
  box-shadow: 0px 0px 0px 4px rgba(37, 99, 235, 0.12);
}

textarea {
  resize: none;
  height: 90px;
}

.note {
  font-size: 12px;
  margin-top: 6px;
  color: #64748b;
}

/* ROW */
.row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.row .form-group {
  flex: 1;
  min-width: 220px;
}

/* CHECKBOX */
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 15px;
  margin-top: 18px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  color: white;
  background: linear-gradient(90deg, #2563eb, #1d4ed8, #0ea5e9);
  box-shadow: 0px 18px 55px rgba(37, 99, 235, 0.28);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 60px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.submit-btn:hover::before {
  left: 120%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 22px 70px rgba(37, 99, 235, 0.4);
}

/* DESTINATIONS SECTION */
.destinations-section {
  margin-top: 35px;
}

.destinations-heading {
  text-align: center;
  margin-bottom: 20px;
}

.small-title {
  font-size: 13px;
  font-weight: 900;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.destinations-heading h3 {
  font-size: 22px;
  font-weight: 900;
  margin-top: 6px;
}

.sub-text {
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

/* TABS */
.package-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #dbe3ef;
  background: white;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
  color: #334155;
  box-shadow: 0px 8px 20px rgba(15, 23, 42, 0.06);
}

.tab-btn:hover {
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  box-shadow: 0px 14px 35px rgba(37, 99, 235, 0.25);
}

/* TAB CONTENT */
.tab-content {
  display: none !important;
}

.tab-content.active {
  display: grid !important;
}

/* DESTINATION GRID */
.destinations-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* CARD */
.destination-card {
  background: white;
  border-radius: 18px;
  border: 1px solid #e8eef6;
  padding: 12px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(25px);
  overflow: hidden;
  position: relative;
}

.destination-card.show {
  opacity: 1;
  transform: translateY(0px);
}

.destination-card img {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
  transition: 0.5s ease;
  border: 1px solid #dbe3ef;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0px 18px 55px rgba(37, 99, 235, 0.22);
}

.destination-card h4 {
  font-size: 15px;
  font-weight: 900;
  margin-top: 12px;
}

.destination-card p {
  font-size: 12px;
  color: #64748b;
  margin-top: 5px;
  line-height: 1.5;
}

.destination-card::after {
  content: "View Deals";
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

/* DOMESTIC SECTION */
.domestic-section {
  margin-top: 30px;
  border-radius: 22px;
  padding: 34px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #0ea5e9);
  box-shadow: 0px 22px 65px rgba(37, 99, 235, 0.28);
  position: relative;
  overflow: hidden;
}

.domestic-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  filter: blur(35px);
}

.domestic-section::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(40px);
}

.domestic-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.domestic-left {
  flex: 1;
}

.domestic-left h3 {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
}

.domestic-left p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin-bottom: 18px;
}

.domestic-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.domestic-highlights span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.domestic-btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: white;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 900;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.18);
}

.domestic-btn-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transform: skewX(-20deg);
  transition: 0.5s ease;
}

.domestic-btn-pro:hover::before {
  left: 120%;
}

.domestic-btn-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0px 20px 55px rgba(0, 0, 0, 0.25);
}

.domestic-right {
  width: 280px;
  flex-shrink: 0;
}

.domestic-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0px 18px 55px rgba(0, 0, 0, 0.18);
}

.domestic-card h4 {
  font-size: 15px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.domestic-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.domestic-card ul li {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 99999;
}

.modal-content {
  max-width: 450px;
  width: 100%;
  padding: 25px;
  border-radius: 18px;
  background: white;
  border: 1px solid #e8eef6;
  text-align: center;
  box-shadow: 0px 25px 60px rgba(0, 0, 0, 0.35);
}

.modal-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
}

.modal-content p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 18px;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-buttons button {
  padding: 12px 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  transition: 0.25s;
  min-width: 120px;
}

.yes-btn {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: white;
}

.no-btn {
  background: #e2e8f0;
  color: #0f172a;
}

/* FLOATING BUTTONS */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0px 12px 30px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.fab-btn svg {
  width: 24px !important;
  height: 24px !important;
  fill: white !important;
  display: block !important;
}

.fab-btn.whatsapp {
  background: #25D366;
}

.fab-btn.call {
  background: #2563eb;
}

.fab-btn:hover {
  transform: scale(1.08);
}

/* Domestic Bubble */
.floating-domestic {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.domestic-text {
  background: white;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
  white-space: nowrap;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.domestic-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0px 12px 30px rgba(0,0,0,0.25);
}

.domestic-icon svg {
  width: 24px !important;
  height: 24px !important;
  fill: white !important;
  display: block !important;
}

/* RESPONSIVE */
@media(max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .domestic-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .domestic-right {
    width: 100%;
  }
}

@media(max-width: 650px) {
  .hero-strip {
    padding: 20px;
  }

  .hero-left h1 {
    font-size: 20px;
  }

  .quote-form {
    padding: 18px;
    border-radius: 14px;
  }

  .row {
    flex-direction: column;
    gap: 0px;
  }

  .row .form-group {
    min-width: 100%;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 170px;
  }

  .domestic-text {
    display: none;
  }

  .fab-btn, .domestic-icon {
    width: 50px;
    height: 50px;
  }

  .fab-btn svg, .domestic-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
}
