.navbar-custom {
  background: linear-gradient(90deg, var(--bs-danger), var(--bs-border-color));
  transition: background 0.5s ease;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
  color: white !important;
}

.navbar-custom .nav-link:hover {
  color: #ffd700 !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* CTA Button */
.btn-call {
  background-color: #f1aeb5;
  color: #003366;
  font-weight: bold;
  border-radius: 50px;
  padding: 6px 20px;
  transition: background 0.3s ease;
}

.btn-call:hover {
  background-color: #ffc107;
  color: #002244;
}
/*Ready to begin Journey*/
:root {
  --accent: #0e4d92;
  /* navy */
  --accent-2: #00bfa6;
  /* teal */
  --panel: #0f172a;
  /* slate/blue-black */
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.8);
}

.cta {
  padding: 32px 16px 40px;
  background: radial-gradient(
      1100px 400px at 20% -20%,
      rgba(0, 191, 166, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 0%,
      rgba(14, 77, 146, 0.22),
      transparent 60%
    ),
    linear-gradient(0deg, #06101c, #06101c);
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-text h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 800;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
}

.cta-text p {
  margin: 0;
  color: var(--text-dim);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn .icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(0, 191, 166, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 191, 166, 0.32);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn:focus {
  outline: 2px solid rgba(0, 191, 166, 0.6);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .btn {
    flex: 1;
  }
}
/*Flash Sale*/
.bg-light-sale {
  background: linear-gradient(90deg, var(--bs-danger), var(--bs-border-color));
  transition: background 0.5s ease;
}
/*Customer trust choose*/
/* Section */
.why-choose {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Container */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.heading {
  text-align: center;
  margin-bottom: 50px;
}

.heading h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
}

.heading h2 span {
  color: #0066cc;
}

.heading p {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #80c1ff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 18px;
  margin: 15px 0 10px;
}

.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.5;
}

.icon {
  font-size: 32px;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.icon.blue {
  background: #e6f2ff;
  color: #0066cc;
}

.icon.green {
  background: #e6ffe6;
  color: #009933;
}

.icon.yellow {
  background: #fff9e6;
  color: #cc9900;
}

.icon.purple {
  background: #f3e6ff;
  color: #6600cc;
}

.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 6px;
}

.badge.blue {
  background: #e6f2ff;
  color: #0066cc;
}

.badge.green {
  background: #e6ffe6;
  color: #009933;
}

.badge.yellow {
  background: #fff9e6;
  color: #cc9900;
}

.badge.purple {
  background: #f3e6ff;
  color: #6600cc;
}

/* CTA */
.cta {
  margin-top: 60px;
  background: linear-gradient(to right, #e6f2ff, #e6ffe6);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

.cta span {
  font-weight: bold;
  color: #0066cc;
}

.call-btn {
  display: inline-block;
  background: #0066cc;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.call-btn:hover {
  background: #004999;
}

.note {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}
/* Section Wrapper */
.destinations-section {
  padding: 4rem 1rem;
  background: #f9fafb;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layout */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Card Styles */
.destination-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.destination-card:hover img {
  transform: scale(1.05);
}

/* Rating */
.rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #f59e0b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Card Content */
.card-content {
  padding: 1rem 1.25rem;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.location {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Price */
.price {
  margin-bottom: 1rem;
}

.price span {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

.price strong {
  font-size: 1.5rem;
  color: #16a34a;
}

.price small {
  display: block;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Buttons */
.call-btn {
  display: block;
  text-align: center;
  background: #2563eb;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #1e40af;
}

/* Help Box */
.help-box {
  background: #fff;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.help-box h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.help-box p {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 1.25rem;
}

.help-btn {
  background: #16a34a;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}

.help-btn:hover {
  background: #15803d;
}
/*trust*/
.stats-section {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 40px auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.stats-section h3 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 700;
}

.stats-section p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.stat-box {
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stats-section h3 {
    font-size: 22px;
  }
  .stat-number {
    font-size: 22px;
  }
  .stat-label {
    font-size: 13px;
  }
}
/*Call to Action*/
.cta-box {
  background: #fff8dc;
  border: 2px solid #fcd34d;
  border-radius: 12px;
  padding: 20px 25px;
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.cta-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 18px;
}
.cta-contact a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #059669;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cta-contact a:hover {
  color: #047857;
}
.cta-sub {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 6px;
}
/*cta*/
/* Section */
.promise-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fdf4, #f0f9ff);
  font-family: "Segoe UI", sans-serif;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}
.section-header h2 {
  font-size: 32px;
  margin: 15px 0 10px;
  font-weight: bold;
}
.section-header p {
  color: #555;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* Guarantee Grid */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}
.guarantee-card {
  position: relative;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
}
.guarantee-card:hover {
  border-color: #4ade80;
  transform: translateY(-5px);
}
.guarantee-card .tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 50px;
}
.guarantee-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
}
.guarantee-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.guarantee-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* Steps */
.steps-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}
.steps-box h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 30px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.step {
  text-align: center;
}
.step-circle {
  width: 60px;
  height: 60px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 15px;
  font-weight: bold;
  font-size: 22px;
}
.step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Stats */
.stats-box {
  background: linear-gradient(to right, #111827, #1f2937);
  color: #fff;
  padding: 50px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 60px;
}
.stats-box h3 {
  font-size: 26px;
  margin-bottom: 30px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}
.stats-grid strong {
  display: block;
  font-size: 28px;
  color: #4ade80;
  margin-bottom: 6px;
}
.stats-grid span {
  color: #d1d5db;
  font-size: 14px;
}

/* CTA */
.cta-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #bbf7d0;
  max-width: 600px;
  margin: auto;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.cta-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}
.cta-btn {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #15803d;
}
.cta-sub {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}
.save-money-section {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 10px;
}
.section-header p {
  color: #666;
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 19px;
  margin-bottom: 50px;
}
.step {
  background: #f9fafc;
  border: 2px solid #e3eaf4;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}
.step:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #4a90e2;
}
.step .badge {
  background: #4a90e2;
  color: #fff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 16px;
  margin: 10px 0;
  color: #111;
}
.step p {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
}
.step .time {
  display: inline-block;
  background: #eef2f7;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: #333;
}
.why-choose {
  background: linear-gradient(to right, #f0f9ff, #f0fff4);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
}
.why-choose h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.why-choose ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px 20px;
}
.why-choose li {
  font-size: 14px;
  color: #444;
}
.cta-box {
  background: #eef6ff;
  border: 2px solid #cce0ff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}
.cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}
.cta-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}
.cta-btn- {
  display: inline-block;
  background: #0073e6;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.cta-btn-:hover {
  background: #005bb5;
}
.note {
  margin-top: 10px;
  font-size: 13px;
  color: #777;
}
/*Contact Us*/

.contact-header {
  background: linear-gradient(to right, #1b1464, #ffd700);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.contact-form-section {
  background: white;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  margin-top: -50px;
  z-index: 2;
  position: relative;
}

.form-control {
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-bottom: 2px solid #1b1464;
}

.btn-custom {
  background-color: #1b1464;
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #ffd700;
  color: #1b1464;
}

.map-responsive iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 30px 15px;
  }
}
