* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
/* navbar css start*/

.navbar {
  background-color: #000;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transition: all 0.3s ease;
}
.company-logo {
  background: linear-gradient(135deg, #3AAFE0, #1B4F72, #3AAFE0);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Montserrat', 'Arial', sans-serif;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(58, 175, 224, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  padding: 5px 0;
  animation: gradientShift 5s ease infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover Effects */
.company-logo:hover {
  transform: scale(1.08);
  text-shadow: 0 4px 20px rgba(58, 175, 224, 0.5);
  /* letter-spacing: 2px; */
}

/* Subtle Underline Effect */
/* .company-logo::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #3AAFE0, #1B4F72);
  transition: all 0.4s ease;
  border-radius: 2px;
} */

/* .company-logo:hover::after {
  width: 100%;
  left: 0;
} */

/* Navbar Links (Optional) */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(58, 175, 224, 0.1);
  color: #1B4F72;
}

/* Responsive Design */
@media (max-width: 768px) {
  .company-logo {
      font-size: 1.8rem;
  }
  
  .navbar {
      padding: 12px 5%;
  }
}
.nav-link {
  color: #fff !important;
  margin-right: 1.5rem;
  font-size: 1rem;
}
.dropdown-menu {
  background-color: #000;
}
.dropdown-item {
  color: #fff !important;
}
.dropdown-item:hover {
  background-color: #333;
}
.btn-book-flight {
  background: linear-gradient(to right, #3AAFE0, #e04e00);
  border: none;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-book-flight:hover {
  background: linear-gradient(to right, #e04e00, #3AAFE0);
  color: #fff;
}

@media (min-width: 250px) and (max-width: 1199px) {
  .navbar-brand img {
    width: 230px;
    height: auto; 
  }
  
  .company-logo {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 576px) {
  .company-logo {
    font-size: 1.3rem;
    letter-spacing: 0.3px;
  }
}
/* end */

/* hero section css */

.hero-section {
  background-image: url("../images/home-banner.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0;
  color: #fff;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  padding: 42px 20px;
  gap: 40px;
}
.package-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  color: #333;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
 
}
.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}
.package-card h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
  /* font-family: 'Protest Riot' !important; */
  line-height: 1.1;
}
.package-card .discount {
  background-color: #3AAFE0;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  /* margin-bottom: 30px; */
  box-shadow: 0 6px 12px rgba(0, 95, 150, 0.4);
}
.package-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-items: start;
}
.package-card ul li {
  margin-bottom: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
}
.package-card ul li svg {
  margin-right: 15px;
  color: #3AAFE0;
  flex-shrink: 0;
  margin-top: 2px;
}
/* Make the last two items span across the bottom row */
.package-card ul li:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}
.package-card ul li:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2;
}
.enquiry-form-container {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.enquiry-form-header {
  background-color: #3AAFE0;
  color: #fff;
  padding: 9px 25px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.enquiry-form-body {
  padding: 30px 25px;
}
.enquiry-form-body .form-control,
.enquiry-form-body .form-select {
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 8px 18px;
  border: 2px solid #e9ecef;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.enquiry-form-body .form-control:focus,
.enquiry-form-body .form-select:focus {
  border-color: #3AAFE0;
  box-shadow: 0 6px 12px rgba(0, 95, 150, 0.4);
}
.enquiry-form-body .btn-send-quotes {
  background-color: #3AAFE0;
  border: none;
  color: #fff;
  padding: 9px 25px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 95, 150, 0.4);
}
.enquiry-form-body .btn-send-quotes:hover {
  background-color: #3AAFE0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 95, 150, 0.4);
}
.enquiry-form-body .btn-send-quotes svg {
  margin-left: 10px;
}
.enquiry-form-body small {
  display: block;
  margin-top: 15px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-content {
    padding: 40px 15px;
    gap: 30px;
  }
  .package-card {
    padding: 30px;
  }
  .package-card h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }
  .package-card,
  .enquiry-form-container {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .package-card h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }
  .package-card {
    padding: 25px;
  }
  .package-card h2 {
    font-size: 2rem;
  }
  .package-card ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
    gap: 15px;
  }
  .package-card ul li:nth-child(4),
  .package-card ul li:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
  .enquiry-form-body {
    padding: 25px 20px;
  }
}

/* Feature Bar Section */
.feature-bar {
  background: linear-gradient(135deg, #000 0%, #2c1810 100%);
  padding: 10px 0;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.feature-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  flex: 1;
  justify-content: flex-start;
  min-width: 0;
}

.feature-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon.check {
  background-color: #3AAFE0;
}

.feature-icon.clock {
  background-color: #ffa500;
}

.feature-icon.document {
  background-color: #ff4444;
}

.feature-icon.support {
  background-color: #ff69b4;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustments for feature bar */
@media (max-width: 768px) {
  .feature-bar {
    padding: 25px 0;
  }
  .feature-bar-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .feature-item {
    flex: none;
    justify-content: center;
    gap: 12px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .feature-text {
    font-size: 1rem;
    line-height: 1.3;
    white-space: normal;
    text-align: center;
  }
}

/* Reduce gap between hero and content */
.content-section {
  margin-top: 0;
  padding-top: 40px;
}

/* Footer */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #3AAFE0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-item i {
    color: #3AAFE0;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.newsletter-desc {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.newsletter-form .input-group {
    display: flex;
    width: 100%;
}

.newsletter-input {
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
    font-size: 0.9rem;
    flex: 1;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.2);
    border-color: #ff7043;
    background-color: #fff;
}

.newsletter-btn {
     background: linear-gradient(135deg, #3AAFE0, #1B4F72);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #3AAFE0, #3C91E6);
    color: #fff;
    transform: translateY(-1px);
}

.newsletter-btn i {
    font-size: 0.8rem;
}

.newsletter-input::placeholder {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 30px 0;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li a {
        font-size: 0.85rem;
    }
    
    .contact-item span {
        font-size: 0.85rem;
    }
    
    .newsletter-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form .input-group {
        width: 100%;
    }
    
    .newsletter-input {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
    }
    
    .newsletter-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 25px 0;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        border-radius: 25px;
        margin-bottom: 10px;
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border: 2px solid #fff;
        background-color: #fff;
        color: #333;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        min-height: 50px;
    }
    
    .newsletter-btn {
        border-radius: 25px;
        justify-content: center;
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        min-height: 50px;
    }
    
    .newsletter-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
}

/* Copyright Section */
.copyright-section {
    background-color: #000;
    padding: 20px 0;
    border-top: 1px solid #333;
}

.copyright-text {
    color: #fff;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* end */

/* package css */

.card-img-container {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flight-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #dc3545;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-rating {
  color: #3AAFE0;
  font-size: 14px;
}

.rating-count {
  color: #999;
  font-size: 14px;
}

.duration-badges {
  margin: 0;
  display: flex;
}

.duration-badge {
  /* background-color: #ffd4b3; */
  border: 1px solid #3AAFE0;
  color: #3AAFE0;
  padding: 4px 12px;
  font-size: 12px;
  margin-right: 0;
  font-weight: 500;
  position: relative;
}

.duration-badge:first-child {
  border-radius: 15px 0 0 15px;
  border-right: none;
}

.duration-badge.active {
  background-color: #3AAFE0;
  color: white;
  border-radius: 0 15px 15px 0;
  border-left: none;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.card-title {
  font-size: 16px;
  /* font-weight: bold; */
  color: #333;
}

.package-includes {
  background-color: #4a4a4a;
  color: white;
  padding: 10px 15px;
  margin: 15px 12px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.includes-list {
  max-height: 120px;
  overflow-y: auto;
  padding: 15px 0;
  background-color: #f8f9fa;
  margin: 0 -15px;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  padding: 0 15px;
}

.includes-item .fa-check {
  color: #28a745;
  margin-right: 8px;
  margin-top: 2px;
  font-size: 12px;
}

.card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Custom scrollbar */
.includes-list::-webkit-scrollbar {
  width: 4px;
}

.includes-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.includes-list::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 2px;
}

.includes-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Package Cards CSS */
.card-img-container1 {
  position: relative;
  height: 300px !important;
  overflow: hidden;
  border-radius: 10px;
}

.card-img-top1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}

.flight-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(135deg, #3AAFE0, #1B4F72);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.star-rating {
  color: #3AAFE0;
  font-size: 14px;
}

.rating-count {
  color: #999;
  font-size: 14px;
}

.duration-badges {
  margin: 0;
  display: flex;
}

.duration-badge {
  border: 1px solid #3AAFE0;
  color: #3AAFE0;
  padding: 4px 12px;
  font-size: 12px;
  margin-right: 0;
  font-weight: 500;
  position: relative;
}

.duration-badge:first-child {
  border-radius: 15px 0 0 15px;
  border-right: none;
}

.duration-badge.active {
  background-color:  #3AAFE0;
  color: white;
  border-radius: 0 15px 15px 0;
  border-left: none;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.card-title {
  font-size: 16px;
  color: #333;
}

.package-includes {
  background-color: #4a4a4a;
  color: white;
  padding: 10px 15px;
  margin: 15px 12px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.includes-list {
  max-height: 120px;
  overflow-y: auto;
  padding: 15px 0;
  background-color: #f8f9fa;
  margin: 0 -15px;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.4;
  padding: 0 15px;
}

.includes-item .fa-check {
  color: #28a745;
  margin-right: 8px;
  margin-top: 2px;
  font-size: 12px;
}

.package-quote-btn {
  /* background: linear-gradient(96deg, #af311b, #eb662b); */
  background: linear-gradient(135deg, #3AAFE0, #1B4F72);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  width: auto;
  min-width: 180px;
  margin: 15px auto 0 auto;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 95, 150, 0.4);;
}

.package-quote-btn:hover {
  background: linear-gradient(135deg, #3AAFE0, #3C91E6);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 95, 150, 0.4);;
  color: white;
}

.package-card {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Custom scrollbar */
.includes-list::-webkit-scrollbar {
  width: 4px;
}

.includes-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.includes-list::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 2px;
}

.includes-list::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Package Categories Section */
.package-categories-section {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.category-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-title {
  color: #3AAFE0;
  font-size: 18px;
  font-weight: bold;
  /* margin-bottom: 20px; */
  padding-bottom: 10px;
}

.category-title.international {
  color: #333;
  border-bottom-color: #333;
}

.category-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-column ul li {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.category-column ul li::before {
  content: "•";
  color: #333;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .category-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .category-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-card {
    padding: 20px;
  }

  .category-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .package-categories-section {
    padding: 30px 0;
  }

  .category-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .category-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .category-column ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}

/* Trusted Partners & Destinations Section */
.trusted-partners-section {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

.partners-header {
  margin-bottom: 50px;
}

.partners-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.partners-subtitle {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.9;
  margin: 0;
}

.partners-section {
  margin-bottom: 50px;
}

.partners-label {
  margin-bottom: 30px;
}

.partners-label span {
  font-size: 1rem;
  color: #fff;
  opacity: 0.8;
}

.partners-image-container {
  margin: 30px 0;
}

.partners-image {
  max-width: 100%;
  height: auto;
  width: 100%;
  /* max-width: 800px; */
}

/* Destinations Section */
.list-inline-item {
  margin-right: 1.5rem; /* Spacing between items */
  margin-bottom: 0.5rem; /* For wrapping on smaller screens */
  position: relative; /* Needed for bullet */
  padding-left: 1rem; /* Space for bullet */
}

.list-inline-item::before {
  content: "•"; /* Bullet */
  position: absolute;
  left: 0;
  color: #fff; /* Bullet color */
}

/* Responsive Design */
@media (max-width: 992px) {
  .partners-title {
    font-size: 1.8rem;
  }

  .partners-subtitle {
    font-size: 1rem;
  }

  .destination-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .trusted-partners-section {
    padding: 40px 0;
  }

  .partners-title {
    font-size: 1.5rem;
  }

  .partners-subtitle {
    font-size: 0.9rem;
  }

  .destination-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .destination-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .trusted-partners-section {
    padding: 30px 0;
  }

  .partners-title {
    font-size: 1.3rem;
  }

  .partners-subtitle {
    font-size: 0.85rem;
  }

  .destination-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .destination-column ul li {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
}

/* Expert Travel Agent Banner */
.expert-section {
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.expert-content {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding: 10px;
}

.expert-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3AAFE0;
}

.expert-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.discount {
  color: #3AAFE0;
}

.social-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-callback {
  background: linear-gradient(135deg, #3AAFE0, #1B4F72);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-callback:hover {
  background-color: #3AAFE0;
  transform: translateY(-2px);
}
.follow-text {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #666;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #3AAFE0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .expert-section {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .expert-content {
    flex-direction: column;
  }

  .expert-text {
    font-size: 14px;
  }

  .social-section {
    justify-content: center;
  }
}
/* end */
