@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Kalam:wght@300;400;700&display=swap");

:root {
  --header-color: #d2691e;
  --background: #fff;
  --section-bg: #fafafa;
  --primary-color: #d2691e;
  --secondary-color: #8b4513;
  --accent-color: #ffd700;
  --dark-green: #2f4f2f;
  --light-green: #90ee90;
  --white: #ffffff;
  --black: #000000;
  --text-color: #333;
  --light-text: #fff;
  --transition: all 0.3s ease;
  --gray: #666666;
  --light-gray: #f5f5f5;
  --header-color: #d2691e;
  --text-light2: rgba(255, 255, 255, 0.9);
  --card-border: 1px solid rgba(210, 105, 30, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 2em;
}

body {
  font-family: "Museo Sans", sans-serif;
  background-color: var(--background);
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kalam", cursive;
  color: var(--header-color);
  font-weight: 700;
}

.container .logos img {
  border-radius: 50%;
}

img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.top-bar {
  background: linear-gradient(135deg, #1a2a3a 0%, #3a4a5a 100%);
  padding: -10px 0;
  font-size: 12px;
  color: #fff;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icons1 a {
  margin-left: 15px;
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.social-icons1 a:hover {
  transform: translateY(-3px);
  color: #c19d56;
}

@media (max-width: 576px) {
  .top-bar-content {
    flex-direction: column;
    padding-bottom: 23rem;
    gap: 8px;
    text-align: center;
  }

  .social-icons1 {
    display: none;
  }
}

@media (max-width: 414px) {
  .logo {
    font-size: 1.3rem;
  }
}

@media (max-width: 430px) {
  .logo {
    font-size: 1.3rem;
  }
}

/* Adjust header styles for language switcher */

@media (max-width: 1124px) {
  .logo {
    margin-left: -2rem;
  }

  .top-bar {
    height: 2.6rem;
  }

  .lang-btn {
    margin-right: 0.9rem;
  }
}

@media (max-width: 798px) {
  .logo {
    margin-right: 3rem;
  }

  .top-bar {
    height: 2.6rem;
  }
}

@media (max-width: 998px) {
  .language-switcher {
    margin-left: 0;
    margin-top: 8px;
  }

  .logo {
    margin-right: 3rem;
  }

  header .logos img {
    height: 4rem;
    width: 4rem;
  }

  header {
    padding-bottom: 1rem;
  }

  .logo {
    font-size: 1.6rem;
  }

  .lang-btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
}

header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: -9.96em;
}

header .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logos {
  display: flex;
  align-items: center;
}

.logos img {
  height: 59px;
  margin-right: 1px;
}

.logo {
  font-size: 1.4em;
  font-weight: bold;
  text-decoration: none;
  font-family: "Kalam", cursive;
  margin-left: -5rem;
  color: #e67e22;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 12px;
  position: relative;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-family: "Segoe UI", sans-serif;
}

.nav-links a:hover {
  color: #e67e22;
}

.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #d35400;
  cursor: pointer;
}

/* Safari track button */
.btn-container {
  position: relative;
  display: inline-block;
  z-index: 2;
  perspective: 1000px;
}

.btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to bottom, #e67e22, #d35400);
  color: #fff;
  padding: 10px 20px 10px 25px;
  border-radius: 17px;
  font-size: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  border: none;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover {
  transform: translateZ(20px) translateY(-5px);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:hover i {
  transform: translateX(5px);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.sticky-btn:hover {
  transform: translateY(-5px);
}

.sticky-btn.whatsapp {
  background-color: var(--primary-color);
}

.sticky-btn.phone {
  background-color: var(--primary-color);
}

section {
  padding: 5rem 5%;
  background-color: var(--section-bg);
}

.section-title {
  text-align: center;
  margin-top: 6.99rem;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--header-color);
  margin: 1rem auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.client-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-icon {
  font-size: 3rem;
  color: var(--header-color);
  margin-bottom: 1rem;
}

.client-content {
  padding: 2rem;
}

.client-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.promise-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.promise-item:hover {
  transform: translateY(-10px);
}

.promise-icon {
  font-size: 2.5rem;
  color: var(--header-color);
  margin-bottom: 1rem;
}

.destinations {
  background-color: white;
}

.destination-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background-color: #eee;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.tab-btn.active {
  background-color: var(--header-color);
  color: white;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.destination-image {
  height: 250px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-info {
  padding: 1.5rem;
  background-color: white;
}

.destination-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.destination-info p {
  margin-bottom: 1rem;
  color: #666;
}

.destination-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--header-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fleet-image {
  overflow: hidden;
}

.fleet-info {
  padding: 1.5rem;
}

.fleet-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Destination Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
  padding: 2rem;
}

.modal-content {
  background-color: white;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 10px;
  overflow: hidden;
  animation: fadeInDown 0.5s;
}

.modal-header {
  padding: 1.5rem;
  background-color: var(--header-color);
  color: white;
  position: relative;
}

.modal-header h2 {
  color: white;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 2rem;
}

.destination-slider {
  position: relative;
  margin-bottom: 2rem;
}

.destination-slides {
  display: flex;
  overflow: hidden;
}

.destination-slide {
  min-width: 100%;
  transition: transform 0.5s;
}

.destination-slide img,
.destination-slide video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.slider-arrow {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.slider-arrow:hover {
  background-color: var(--header-color);
}

.destination-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-highlights ul {
  list-style: none;
  margin-top: 1rem;
}

.destination-highlights ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.destination-highlights ul li:before {
  content: "✓";
  color: var(--header-color);
  position: absolute;
  left: 0;
}

.destination-activities {
  margin-top: 2rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.activity-item {
  background-color: var(--section-bg);
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s;
}

.activity-item:hover {
  transform: translateY(-5px);
}

.activity-icon {
  font-size: 1.5rem;
  color: var(--header-color);
  margin-bottom: 0.5rem;
}

.modal-footer {
  padding: 1.5rem;
  text-align: center;
  background-color: #f5f5f5;
}

/* Destination Tabs */
.destination-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 10px 20px;
  background: #ecf0f1;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #e67e22;
  color: white;
}

/* Destination Grid */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.destination-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.destination-card:hover .image-overlay {
  opacity: 1;
}

.view-details {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.destination-info {
  padding: 20px;
}

.destination-info h3 {
  margin-top: 0;
  color: #2c3e50;
}

.destination-info p {
  color: #7f8c8d;
  margin-bottom: 15px;
}

.destination-badge {
  display: inline-block;
  background: #e67e22;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.quick-view-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background: #e67e22;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background: white;
  margin: 50px auto;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
}

.modal-header {
  padding: 20px;
  background: #2c3e50;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-header h2 {
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 10px;
}

.modal-body {
  padding: 20px;
}

/* Slider Styles */
.destination-slider {
  position: relative;
  margin-bottom: 30px;
}

.destination-slides {
  display: flex;
  overflow: hidden;
}

.destination-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

.destination-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.slider-arrow {
  background: #e67e22;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  border: none;
  cursor: pointer;
  padding: 0;
}

.slider-dot.active {
  background: #e67e22;
}

/* Info Grid */
.destination-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 998px) {
  .nav-links {
    position: fixed;
    top: 9rem;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--light-text);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: var(--transition);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
  }

  header .logos img {
    height: 5rem;
    width: 5rem;
  }

  header {
    padding-bottom: 1rem;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .mobile-menu {
    display: block;
  }

  .content-block {
    flex-direction: column;
  }

  .content-block.reverse {
    flex-direction: column;
  }

  .content-visual {
    width: 100%;
    height: 250px;
  }

  .section {
    padding: 3rem 5%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 10px 0;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logos {
    flex-direction: column;
    align-items: flex-start;
  }

  .logos img {
    margin-right: 0;
    margin-bottom: 5px;
    height: 30px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }
}

.destination-description h3 {
  color: #2c3e50;
  margin-top: 0;
}

.destination-highlights h3 {
  color: #2c3e50;
  margin-top: 0;
}

.destination-highlights ul {
  padding-left: 20px;
}

.destination-highlights li {
  margin-bottom: 10px;
}

/* Activities Grid */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.activity-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.activity-icon {
  font-size: 1.5rem;
  background: #e67e22;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-text h4 {
  margin: 0 0 5px 0;
  color: #2c3e50;
}

.activity-text p {
  margin: 0;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Best Time to Visit */
.best-time-visit {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.best-time-visit h4 {
  margin-top: 0;
  color: #2c3e50;
}

.best-time-visit ul {
  padding-left: 20px;
}

.best-time-visit li {
  margin-bottom: 10px;
}

/* Getting There */
.getting-there {
  margin: 30px 0;
}

.transport-option {
  margin-bottom: 20px;
}

.transport-option h5 {
  margin: 0 0 10px 0;
  color: #2c3e50;
}

/* Conservation */
.conservation {
  background: #f0f7f4;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.conservation h4 {
  margin-top: 0;
  color: #2c3e50;
}

.conservation ul {
  padding-left: 20px;
}

/* Why Us */
.why-us {
  margin: 30px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.usp-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.usp-icon {
  font-size: 1.2rem;
  background: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Packing List */
.packing-list {
  margin: 30px 0;
}

.packing-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding-left: 20px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 40px 0;
}

.cta-section p {
  font-style: italic;
  margin-bottom: 20px;
  color: #7f8c8d;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  margin: 30px 0;
}

.testimonial-slide {
  display: none;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-slide blockquote {
  font-style: italic;
  margin: 0 0 15px 0;
  color: #7f8c8d;
}

.testimonial-author {
  font-weight: bold;
}

.testimonial-author span {
  display: block;
  font-weight: normal;
  font-size: 0.9rem;
  color: #7f8c8d;
}

/* Stats */
.destination-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.stat-item {
  text-align: center;
  padding: 10px;
  background: #f0f7f4;
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  color: #e67e22;
}

.stat-label {
  font-size: 0.8rem;
  color: #7f8c8d;
}

/* Modal CTA */
.modal-cta {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .logo {
    margin-left: 0.4rem;
  }
}

footer {
  background: linear-gradient(135deg, #1a2a3a 0%, #3a4a5a 100%);
  color: white;
  padding: 50px 0 20px;
  margin-top: 50px;
  padding-left: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #d2691e;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--savanna-gold);
}

.footer-column p,
.footer-column a {
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #d2691e;
}

.social-icons2 {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icons2 a:hover {
  background: #3a4a5a;
  transform: translateY(-3px);
}

.fleet-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 200px;
  /* Fixed height for consistency */
}

.fleet-image svg {
  width: 90px;
  height: 80px;
}

.translate-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 42, 58, 0.95);
  border: 2px solid #d2691e;
  border-radius: 30px;
  padding: 12px 25px;
  color: white;
  display: flex;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease-out;
  max-width: 90%;
  backdrop-filter: blur(5px);
}

.translate-notification i {
  margin-right: 12px;
  font-size: 20px;
  color: #d2691e;
}

.translate-notification .text {
  font-family: "Museo Sans", sans-serif;
  font-size: 15px;
  margin-right: 15px;
}

.translate-notification .translate-btn {
  background: #d2691e;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Museo Sans", sans-serif;
}

.translate-notification .translate-btn:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.translate-notification .close-btn {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
  margin-left: 15px;
  transition: color 0.3s;
}

.translate-notification .close-btn:hover {
  color: white;
}

/* Animation */
@keyframes slideUp {
  from {
    bottom: -50px;
    opacity: 0;
  }

  to {
    bottom: 20px;
    opacity: 1;
  }
}

/* Google Translate Widget Styling */
.goog-te-combo {
  padding: 10px 15px;
  border-radius: 30px;
  border: 1px solid #d2691e;
  background-color: rgba(26, 42, 58, 0.95);
  color: white;
  cursor: pointer;
  font-size: 15px;
  font-family: "Museo Sans", sans-serif;
  outline: none;
  width: 100%;
  max-width: 220px;
  margin: 15px 0;
}

.goog-te-combo option {
  background: #1a2a3a;
  color: white;
}

/* Hide Google branding */
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

/* Widget container */
.translate-widget-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 42, 58, 0.95);
  border-radius: 15px;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: none;
  width: 90%;
  max-width: 300px;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease-out;
  text-align: center;
}

.translate-widget-container.active {
  display: block;
}

.translate-widget-container h3 {
  color: #d2691e;
  margin-bottom: 15px;
  font-family: "Museo Sans", sans-serif;
  font-size: 18px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
