/* ==========================================================================
   BookMyBooking - Travel Services Landing Page Style
   ========================================================================== */

/* CSS Variables */
:root {
  --color-navy: #06193e;
  --color-navy-dark: #041029;
  --color-navy-header: #071b4d;
  --color-blue-primary: #1b63fb;
  --color-blue-hover: #0f52e0;
  --color-blue-light: #eff6ff;
  --color-yellow: #f59e0b;
  --color-teal: #0ea5e9;
  --color-text-dark: #0f172a;
  --color-text-body: #1e293b;
  --color-text-muted: #64748b;
  --color-bg-light: #f8fafc;
  --color-border: #e2e8f0;

  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Caveat', cursive;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(6, 25, 62, 0.08);
  --shadow-lg: 0 12px 32px rgba(6, 25, 62, 0.12);
  --shadow-widget: 0 16px 36px rgba(9, 40, 98, 0.25);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  color: var(--color-text-body);
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

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

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

/* Typography Helpers */
.text-blue {
  color: var(--color-blue-primary);
}

.script-text {
  font-family: var(--font-script);
  font-size: 58px;
  font-weight: 700;
  color: var(--color-navy);
  display: block;
  margin-top: -6px;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 0 28px rgba(255, 255, 255, 0.9);
}

/* Section Shared Styles */
.section {
  padding: 25px 0;
}

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

.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.section-subtitle .dash {
  color: var(--color-blue-primary);
}

.plane-divider {
  color: var(--color-blue-primary);
  font-size: 14px;
  margin-bottom: 6px;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

/* ==========================================================================
   Header / Navbar (Transparent Header)
   ========================================================================== */
.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 90px;
  display: flex;
  align-items: center;
  border-bottom: none;
}

/* Absolute Logo Container with user specified CSS */
.logo-box {
  position: absolute;
  top: 0;
  left: 60px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  z-index: 10;
  display: inline-block;
}

.logo-box img {
  width: 75px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

/* Support Action Button (Exact User Specified WhatsApp Button CSS) */
.support-btn {
  position: absolute !important;
  top: 20px !important;
  right: 66px !important;
  background-color: #2abf62 !important;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(42, 191, 98, 0.2);
  z-index: 99999 !important;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.support-btn:hover {
  background-color: #23a955 !important;
  transform: translateY(-1px);
}

.support-icon {
  font-size: 24px;
  color: #ffffff;
}

.support-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.support-label {
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
}

.support-phone {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background-image: url('/images/homepageimage/hero-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 82% 52%;
  min-height: 460px;
  padding: 110px 0 25px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.hero-text-wrapper {
  max-width: 580px;
  margin: 0 0 20px 0;
  text-align: left;
  position: relative;
  z-index: 10;
  background: radial-gradient(ellipse at left center, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 65%, transparent 100%);
  padding: 12px 20px 12px 0;
  border-radius: 20px;
}

.subtitle-badge {
  font-size: 14px;
  font-weight: 700;
  color: #06193e;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.95);
}

.subtitle-badge .dash {
  color: var(--color-blue-primary);
  font-weight: 800;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #06193e;
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 0 28px rgba(255, 255, 255, 0.9);
}

.hero-description {
  font-size: 15px;
  color: #0f172a;
  font-weight: 600;
  max-width: 560px;
  margin: 0;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.95), 0 0 20px rgba(255, 255, 255, 0.9);
}

/* Search Widget Card (Exactly 50% in Hero & 50% in Next Section) */
.search-widget-card {
  width: 100%;
  max-width: 1140px;
  background: linear-gradient(135deg, #092862 0%, #0d3880 100%);
  border-radius: var(--radius-xl);
  padding: 24px 30px;
  box-shadow: 0 16px 38px rgba(6, 25, 62, 0.28);
  margin-top: 20px;
  margin-bottom: -55px;
  /* Exactly 50% overlaps into section below */
  position: relative;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 160px;
  gap: 16px;
  align-items: flex-end;
}

.field-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.field-group label {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.select-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.select-wrapper select {
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0 50px 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper select:focus {
  outline: none;
  border-color: var(--color-blue-primary);
}

.dropdown-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44px;
  background-color: #0b2d6b;
  color: #ffffff;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  pointer-events: none;
}

.btn-research {
  width: 100%;
  height: 48px;
  background-color: var(--color-blue-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(27, 99, 251, 0.3);
}

.btn-research:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   Why Choose Our Services (Integrated Frame with Soft Gradient Tint)
   ========================================================================== */
.section-why-choose {
  padding-top: 40px;
  /* Perfect spacing for the 50% overlapping search card */
  padding-bottom: 50px;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
}

.grid-6-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 14px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 99, 251, 0.12);
  border-color: #bfdbfe;
}

.feature-card:hover::before {
  background: var(--color-blue-primary);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: #ffffff;
  border: 1.5px solid #dbeafe;
  color: var(--color-blue-primary);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background-color: var(--color-blue-primary);
  color: #ffffff;
  border-color: var(--color-blue-primary);
}

.feature-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   Our Travel Solutions (4 Cards)
   ========================================================================== */
.section-solutions {
  background-color: #ffffff;
}

.grid-4-solutions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.solution-img-wrapper {
  position: relative;
  height: 170px;
  width: 100%;
}

.solution-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-circle-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--color-blue-primary);
  color: #ffffff;
  border: 3.5px solid #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(27, 99, 251, 0.3);
}

.solution-content {
  padding: 34px 20px 24px 20px;
  text-align: center;
}

.solution-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.solution-content p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Need Help Banner
   ========================================================================== */
.banner-section {
  padding: 20px 0;
}

.help-banner {
  background-color: var(--color-navy);
  background-image: radial-gradient(circle at right center, rgba(27, 99, 251, 0.25), transparent 70%);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.banner-text h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.banner-text p {
  font-size: 14px;
  color: #cbd5e1;
}

.btn-talk-expert {
  background-color: #ffffff;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.btn-talk-expert:hover {
  background-color: #f8fafc;
  transform: translateX(2px);
}

.arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--color-blue-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* ==========================================================================
   Stats Bar Section
   ========================================================================== */
.stats-section {
  padding: 15px 0 35px 0;
}

.stats-bar {
  background-color: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  color: #ffffff;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 10px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 26px;
  color: #ffffff;
  opacity: 0.9;
}

.stat-info h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.stat-info p {
  font-size: 12px;
  color: #cbd5e1;
  margin-top: 2px;
}

/* ==========================================================================
   Popular Destinations Section
   ========================================================================== */
.section-destinations {
  background-color: #ffffff;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.destination-card {
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px 8px;
}

.destination-overlay h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.destinations-action {
  text-align: center;
}

.btn-outline-destinations {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-blue-primary);
  color: var(--color-blue-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.btn-outline-destinations:hover {
  background-color: var(--color-blue-primary);
  color: #ffffff;
}

/* ==========================================================================
   How It Works Process Section
   ========================================================================== */
.section-how-it-works {
  background-color: #f8fafc;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 60px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(27, 99, 251, 0.12);
  border-color: #bfdbfe;
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-blue-primary), var(--color-navy));
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(27, 99, 251, 0.3);
  letter-spacing: 0.5px;
}

.step-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #eff6ff;
  border: 2px solid #dbeafe;
  color: var(--color-blue-primary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px auto;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-wrapper {
  background-color: var(--color-blue-primary);
  color: #ffffff;
  border-color: var(--color-blue-primary);
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.step-connector {
  color: var(--color-blue-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

/* ==========================================================================
   Highlights Section Strip
   ========================================================================== */
.highlights-section {
  padding: 20px 0 50px 0;
}

.highlights-grid {
  background-color: #f8fafc;
  border-radius: var(--radius-xl);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--color-blue-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
}

.highlight-info p {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--color-navy-header);
  color: #94a3b8;
  padding: 60px 0 0px 0;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1.3fr;
  gap: 32px;
  /* margin-bottom: 50px; */
}

.white-text {
  color: #ffffff !important;
}

/* ==========================================================================
   Footer (Matching Exact Reference Design Image)
   ========================================================================== */
.footer {
  background-color: #123164;
  color: #cbd5e1;
  padding-top: 60px;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
  background: transparent;
}

.footer-about {
  line-height: 1.6;
  margin-bottom: 22px;
  color: #cbd5e1;
  font-size: 13px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background-color: var(--color-blue-primary);
  border-color: var(--color-blue-primary);
  transform: translateY(-2px);
}

.footer-heading {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 3px;
  background-color: #f97316;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.footer-links li:last-child {
  border-bottom: none;
}

.footer-links a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: 13px;
}

.footer-contact-list i {
  font-size: 16px;
  color: #ffffff;
  margin-top: 2px;
}

.footer-contact-list span small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 2px;
}

.divider-col {
  position: relative;
}

@media (min-width: 1025px) {
  .divider-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 20px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
  }
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background-color: #081730;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.disclaimer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 650px;
}

.disclaimer-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
}

.copyright-box {
  font-size: 11.5px;
  color: #94a3b8;
  text-align: right;
}

.copyright-box strong {
  color: #ffffff;
}

/* Floating Chat Button */
.floating-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-blue-primary);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(27, 99, 251, 0.4);
  z-index: 99;
  transition: transform 0.2s ease;
}

.floating-chat-btn:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   Complete Responsive Breakpoints for All Devices
   ========================================================================== */

/* Laptop & Desktop medium (1100px) */
@media (max-width: 1100px) {
  .logo-box {
    left: 30px;
  }

  .hero-section {
    min-height: 460px;
    padding-top: 100px;
    background-position: 85% 65%;
  }

  .search-widget-card {
    margin-bottom: -55px;
  }

  .section-why-choose {
    padding-top: 85px;
  }

  .search-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4-solutions {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet (850px) */
@media (max-width: 850px) {
  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
    background-position: center center;
  }

  .hero-container {
    align-items: center;
  }

  .hero-text-wrapper {
    margin: 0 auto 30px auto;
    text-align: center;
    max-width: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 70%, transparent 100%);
    padding: 12px 16px;
  }

  .subtitle-badge {
    justify-content: center;
  }

  .logo-box {
    left: 20px;
    padding: 8px 12px;
  }

  .logo-box img {
    height: 38px;
  }

  .hero-title {
    font-size: 36px;
  }

  .script-text {
    font-size: 42px;
  }

  .search-widget-card {
    margin-bottom: -60px;
    padding: 20px;
  }

  .section-why-choose {
    padding-top: 90px;
  }

  .search-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-connector {
    transform: rotate(90deg);
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    border-right: none !important;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
  .logo-box {
    left: 15px;
    padding: 6px 10px;
  }

  .logo-box img {
    height: 32px;
  }

  .support-btn {
    padding: 8px 14px;
  }

  .support-phone {
    font-size: 12px;
  }

  .hero-title {
    font-size: 28px;
  }

  .script-text {
    font-size: 36px;
  }

  .search-widget-card {
    margin-bottom: -70px;
  }

  .section-why-choose {
    padding-top: 100px;
  }

  .grid-6-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4-solutions {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}