* {
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
}

/* Dark blue Bar */
.top-bar {
  background-color: #223740; /* dark blue  */
  position: absolute;
  height: 50px; 
  width: 70%;
  left: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 40px;
  color: white;
  font-size: 16px;
 clip-path: polygon(0 0, 0 190%, 100% 10%);
}

/* Orange bar */
.bottom-bar {
  background-color: #f7921f; /* orange */
  height: 55px;
  display: flex;
  justify-content: center;   /* center contents horizontally */
  align-items: center;       /* center vertically */
  color: white;
  font-size: 18px;
}

/* Right side (follow + icons) */
.bottom-bar .right-info {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  margin-left: auto;
  margin-right: 50px;
  font-weight: bolder;
}

.bottom-bar .right-info a {
  text-decoration: none;
  color: white;
  background-color: #223740;
  padding: 5px 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid orange;

}
.bottom-bar .right-info a:hover
{
  background-color: #202020;
  border: 1px solid #223740;
  
}


/* Left Section */
.top-bar .left-info {
  display: flex;
  align-items: center;

}

.top-bar .left-info div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.top-bar .left-info div i {
  color: #f7921f; /* icon color */
  margin-right: 3px;
}

.top-bar .left-info div + div {
  border-left: 2px solid #888;  /* vertical line between items */
  padding-left: 15px;  
  
}

.top-bar .left-info div a {
  color: #fff;                /* link text default */
  text-decoration: none;
  
}

.top-bar .left-info div:hover a {
  color: #f7921f;              /* hover link color */
}

 

/* Navbar */
.navbar {
  height: 100px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
 
}
.logo {
  background-image: url("/images/logo.png");
  background-size: cover;
  height: 250px;
  width: 250px;
  margin-top: -70px;

}

 .border
 {
    border: 2px solid transparent;
 }
 .border:hover{
    border: 2px solid white;
 }
 .nav-logo
 {
    width: 30%;
 }
 .anchortags
 {
  margin-top: -65px;
 }
.anchortags ul {
  list-style: none;
}

li {
   position: relative;
  display: inline-block;
}

a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  padding-right: 33px;
  font-weight: bolder;
}

a:hover {
  color: #f7921f;
}

.desktop-btn
{
  margin-top: -75px;
}
button {
  background-color: #f7921f;
  color: white;
  border: none;
  height: 50px;
  width: 150px;
  font-size: 20px;
  border-radius: 5px;
  margin-right: 20px;
 
}

button:hover {
  background-color: #223740;
}
  .mobile-menu
{
  display: none;
}

/* --- DROPDOWN MENU --- */
.continent {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;          /* remove default browser margin */
  padding: 0;  
  background: #fff;
  border-radius: 5px;
  min-width: 190px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 99;
}

/* Dropdown links */
.continent li {
  display: block;
  background: #f7f9fb;
  border-bottom: 1px solid #e6e6e6;
}

.continent li a {
  color: #353740;
  display: block;
  padding: 10px 15px;
  font-weight: bold;
}

.continent li a:hover {
  background: #FFF3E0;
}

/* ✅ Show dropdown only when hovered */
.dropdown:hover .continent {
  display: block;
}
/* =========================
   RESPONSIVENESS
   ========================= */
@media (max-width: 1440px) {
.top-bar
{
  width: 85%;
}

  .mobile-menu
{
  display: none;
}
.nav-logo
{
  width: 25%;
}
}
/* laptop */
@media (max-width: 1024px) {

  .navbar{
  height: 80px;
}
.logo{
  width: 220px;
  height: 220px;
}
.desktop-btn {
    display: none;
  }
  
/* Navbar */
  .anchortags {
    display: none; /* hide desktop menu */
  }
 
/* Show hamburger + hide desktop links on mobile */
  /* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
  margin-bottom: 77px;
  margin-right: 20px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #223740;
  border-radius: 2px;
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-weight: bold;
}
.mobile-menu a:hover {

    color: #f7921f;
}
  .hamburger {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #223740;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    padding: 15px;
    gap: 12px;
    z-index: 999;
  }

  .mobile-menu a{
    color: #fff;
    font-size: 18px;
    text-align: left;
  }
}


/* Mobile */
@media (max-width: 768px) {

    
/* Dark blue Bar */
.top-bar {
 
  width: 75%;
}
/* Right side (follow + icons) */
.bottom-bar .right-info {
  margin-right: 20px;
}

.top-bar .left-info div a {
  margin-left: 0px;
}
.navbar
{
  height: 70px;
}
.logo
{
  min-width: 250px;
  margin-top: -80px;
}
.hamburger {
  margin-bottom: 57px;
}
}
/* Small Mobile */
@media (max-width: 480px) {
/* Hide top bar, bottom bar, h1, h4, txt */
  .top-bar,
  .bottom-bar {
    display: none !important;
  }
   .desktop-btn {
    display: none;
  }
  /* Navbar */
  .anchortags {
    display: none; /* hide desktop menu */
  }
.navbar
{
  height: 70px;
}
.logo
{
  margin-top: -80px;
  margin-left: -30px;
  width: 200px;
  height: 200px;
}
.hamburger {
  margin-bottom: 45px;
}
  .mobile-menu {
    top: auto;
}
}
@media (max-width: 425px) {

  .top-bar,
  .bottom-bar {
    display: none !important;
  }
.navbar
{
  height: 70px;
}
.logo
{
  margin-top: -80px;
  margin-left: -30px;
  width: 200px;
  height: 200px;
}

  .hamburger {
  margin-bottom: 45px;
}
}

@media (max-width: 320px) {
.navbar
{
  height: 70px;
}
.logo
{
  margin-top: -80px;
  margin-left: -30px;
  width: 150px;
  height: 150px;
}
    .hamburger {
  margin-bottom: 0px;
}
}



/* =========================
   Flight section
   ========================= */
/* ---- Section Layout ---- */
.flights-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 55px;
  background: #fff;
 
}

/* ---- Left Side (Content + Form) ---- */
.left-side {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 25px;
}
.content
 { 
  flex: 1 1 45%; 
} 
.content h2
 {
   color: #223740;
  font-size: 2.7rem;
   font-weight: 700;
   margin-bottom: 15px; 
   font-family: Abril Fatface , serif;
  }
 .content p
   {
    color: #000;
   line-height: 1.7;
    margin-bottom: 30px; 
    font-family: Rubik, serif;
  }
/* Form */
.form-container {
  background-color: rgba(10, 30, 40, 0.95);
  width: 600px;
  padding: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 8px;
  position: relative;
  color: white;
  right: 50px;
  margin-left: auto;
}

/* --- Date Inputs --- */
.date-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.date-wrapper input[type="date"] {
  width: 100%;
  padding-left: 40px;
}
.date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 10px;
  top: 34px;
  transform: translateY(-50%);
  cursor: pointer;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="tel"],
select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  color: #000;
}

/* Make 2 boxes per row */
.form-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;

}


.form-grid > div {
  flex: 1;
  min-width: 48%;
}

.form-grid.full-width > div:first-child {
  flex: 1 1 100%;
}

button[type="submit"] {
  background-color: #f7921f;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #223740;
}

#from {
  background: url('https://cdn-icons-png.flaticon.com/512/723/723955.png') no-repeat 10px center;
  background-size: 18px;
  padding-left: 40px;
  background-color: #fff;
}
#to {
  background: url('https://cdn-icons-png.flaticon.com/512/723/723955.png') no-repeat 10px center;
  background-size: 18px;
  padding-left: 40px;
  background-color: #fff;
}

#name {
  background: url('https://cdn-icons-png.flaticon.com/512/747/747376.png') no-repeat 10px center;
  background-size: 16px;
  padding-left: 35px;
 background-color: #fff;
}
#phone {
  background: url('https://cdn-icons-png.flaticon.com/128/126/126341.png') no-repeat 10px center;
  background-size: 18px;
  padding-left: 40px;
  background-color: #fff;
}
#email {
  background: url('https://cdn-icons-png.flaticon.com/128/542/542689.png') no-repeat 10px center;
  background-size: 18px;
  padding-left: 40px;
  background-color: #fff;
}

/* Default state (always orange) */
#searchBtn {

  background: #f7921f;
  color: #fff;
  cursor: pointer;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  transition: 0.3s;
}

/* Disabled state (still orange but faded) */
#searchBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Enabled + hover = bluish */
#searchBtn:not(:disabled):hover {
  background:#223740; /* bluish shade */
}


.radio-btn {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
input[type="radio"] {
  appearance: none;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
}
input[type="radio"]:checked {
  border-color: #fff;
}

input[type="radio"]:checked::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
}
.radio-btn span {
  color: #fff;
  font-size: 18px;
  font-family: sans-serif;
  
}

.travellers-wrapper {
  position: relative;
  width: 100%;
}

#travellers-input {
  width: 100%;
  padding: 8px 8px 8px 40px; /* 40px left for icon */
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  background-color: #fff; /* light gray like your other inputs */
  background-image: url('https://cdn-icons-png.flaticon.com/512/681/681494.png'); /* traveller icon */
  background-repeat: no-repeat;
  background-position: 10px center;
  background-size: 18px;
}


.traveller-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: none;
  z-index: 10;
}

.traveller-box.show {
  display: block;
}

.class-select {
  margin-bottom: 12px;
  
}

.class-label {
  display: block;
  font-weight: bold;
  margin-bottom: 3px;
  color: #333;
  font-size: 16px;
  
}

.class-select select {
  width: 80%;   /* 20% smaller */
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;

}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}

.label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.sub-label {
  font-size: 12px;
  color: #777;
}

.counter {
  display: flex;
  align-items: center;
}

.counter button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f7921f;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.counter button:hover {
  background: darkorange;
}

.counter span {
  margin: 0 12px;
  font-size: 18px;
  font-weight: bold;
  color: #222; /* number color darker */
  min-width: 20px;
  text-align: center;
}

.done-btn {
  margin-top: 12px;
  width: 90%; /* 10% smaller */
  padding: 6px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.done-btn:hover {
  background: #f7921f;
  color: #fff;
  border: none;
}

/* ---- Right Side Image ---- */
.image-box {
  flex: 1 1 50%;
  display: block;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}

.image-box img {
  height: 550px;
  width: 100%;
  max-width: 950px;
  border-radius: 20px;
  object-fit: cover;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* ---- For tablets and small laptops (max-width: 1024px) ---- */
@media (max-width: 1024px) {
  
  .flights-section {
    padding: 30px 35px;
    flex-direction: row;
    align-items: left;
  }

  .left-side {
    flex-direction: row;
    gap: 20px;
  }

  .content {
    flex: 1 1 100%;
    max-width: 500px;
  }

  .content h2 {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1rem;
  }

  .form-container {
    width: 90%;
    right: 0;
    margin: 0 auto;
  }

  .image-box {
    flex: 1 1 50%;
    margin-top: 30px;
  }

  .image-box img {
    height: 550px;
    max-width: 100%;
  } 
}

/* ---- For tablets and large phones (max-width: 768px) ---- */
@media (max-width: 768px) {
  

  .flights-section {
    padding: 30px 35px;
    flex-direction: column;
    align-items: center;
  }

  .left-side {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 20px;
  }

  .content {
    flex: 1 1 100%;
    max-width: 700px;
  }

  .content h2 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .form-container {
    width: 90%;
    padding: 20px;
  }
  .image-box {
    flex: 1 1 100%;
    margin-top: 30px;
     margin-left: 35px;
  }

  .image-box img {
    height: 450px;
    max-width: 90%;
  }

}

/* ---- For mobile phones (max-width: 480px) ---- */
@media (max-width: 480px) {
  .flights-section {
    padding: 20px 15px;
  }

  .left-side {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .content h2 {
    font-size: 2rem;
  }

  .content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
 
 .form-container {
    max-width: 100%;
    padding: 18px;
  }
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-grid > div {
  min-width: calc(50% - 5px);
}
input[type="text"],
input[type="number"],
input[type="date"],
input[type="tel"],
select {
  width: 100%;
  display: inline-block; /* let them sit side by side */
  box-sizing: border-box;
}

.traveller-box {
  top: 87%;
  width: 80%;
}
.image-box img {
    height: 330px;
   
  }
}

/* ---- For very small screens (max-width: 425px) ---- */
@media (max-width: 425px) {
.form-container
{
  width: 100%;
}
}

/* =========================
   card section
   ========================= */
.cards-section {
  max-width: 1300px;
  margin: 70px auto;
  padding: 0 20px;
  text-align: center;
  font-family: Abril Fatface, serif;
}

.cards-section h2 {
  font-size: 2.7rem;
  color: #223740;
  margin-bottom: 25px;
}

.cards-section p {
  color: #000;
  margin-bottom: 80px;
  font-size: 1rem;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 15px 20px;
  text-align: left;
}

.card-content h3 {
  color: #223740;
  margin: 10px 0;
  font-size: 1.5rem;
}

.card-content p {
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  margin-left: 140px;
  margin-top: -10px;
  font-family: Abril Fatface , serif;
}

.card-content a {
  color: #223740;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 900;
  transition: color 0.3s ease;
  font-family: Rubik , serif;
}

.card-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .flights-section h2 {
    font-size: 1.6rem;
  }
  /* .card img {
    height: 0px;
  } */
}

/* =========================
   content section
   ========================= */

/* Add to your main stylesheet */
#asia-destinations { 
  padding: 48px 20px;
  background: #ffffff;
  font-family: Abril Fatface , serif;
}

#asia-destinations .container {
  max-width: 1000px;
  margin: 0 auto;
}

.dest-top {
  text-align: left;
  margin-bottom: 28px;
}

/* small label with underline */
.dest-label {
  display: inline-block;
  font-weight: 700;
  color: #223740; /* accent color */
  letter-spacing: .6px;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 8px;
  font-size: 1.5rem;
}
.dest-label::after{
  content: "";
  display: block;
  width: 69px;
  height: 3px;
  background: #223740;
  border-radius: 2px;
  margin-top: 8px;
}

/* main title */
.dest-title {
  font-size: 34px;
  line-height: 1.22;
  margin: 12px 0 8px;
  color: #223740;
  font-weight: 700;
  margin-bottom: 26px;
}

/* intro paragraph */
.dest-intro {
  color: #222;
  margin-bottom: 26px;
  font-size: 17px;
  /* max-width: 920px; */
}
/* 
list of items — two columns on desktop, one on mobile */
.dest-list {
  display: grid;
  gap: 25px 48px;
}

/* each destination item */
.dest-item h3 {
  font-size: 25px;
  margin: 0 0 6px;
  color: #223740;
  font-weight: 700;
}

.dest-item p {
  margin: 0;
  color: #444;
  line-height: 1.45;
  font-size: 1rem;
}

/* smaller screens */
@media (max-width: 900px) {
  .dest-title { font-size: 28px; }
  .dest-list { grid-template-columns: 1fr; gap: 14px 0; }
  .dest-intro { font-size: 16px; }
}

/* optional small utility spacing if you need it in your layout */
.mt-40 { margin-top: 40px; }






/* =========================
   footer section
   ========================= */


   
/* Footer */
footer {
  background: #141414;
  padding-top: 120px;
  width: 100%;
  height: 130vh;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  background: #445c2f;
  padding: 20px 60px;
  flex-wrap: wrap;
  border-radius: 12px;
  max-width: 1350px;
  margin: 0 auto 40px auto;
}

.footer-top .info-box {
  display: flex;
  align-items: center;
  margin-right: 120px;
  gap: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-top .last h3
{
  font-family: Rubik , serif;
  font-size: 20px;
  margin-bottom: 13px;
}

.footer-top .last p{
  font-family: Abril Fatface , serif;
  font-size: 14px;
}
.footer-top .last p:hover{
  color: #f7921f;
}

.footer-top .icon-circle {
  background: #fff;
  color: #445c2f;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.footer-top .icon-circle i 
{
  font-size: 35px;
}

.footer-top .booking-btn {
  background: #f68b1e;
  color: #fff;
  margin-left: 190px;
  text-decoration: none;
  padding: 22px 35px;
  font-size: 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s;
}

.footer-top .booking-btn:hover {
  background: #e07810;
}

/* Footer Container */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 75px;
  margin-left: 97px;
 margin-right: 97px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-top: -90px;
  margin-bottom: -70px;
 

}
.footer-logo img
{
  width: 250px;
  height: 250px;
  object-fit: cover;
 
}


.company 
{
  color: #ddd;
  line-height: 1.5;
  font-size: 18px;
  font-family: Abril Fateface , serif;
  margin-bottom: 30px;
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0;
  margin-bottom: 35px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #445c2f;
  border-radius: 6px;
  color: #fff;
  transition: all 0.3s;
   text-decoration: none;
}

.social-icons a i{
  font-size: 25px;
  margin-left: 35px;
}
.social-icons a:hover {
  background: #f7921f;
  border-color: #f7921f;
}

/* Subscribe */
.subscribe-text {
  font-size: 17px;
  font-family: Abril Fatface , serif;
  margin-bottom: 30px;
  color: #ddd;
}

.subscribe-form input {
  
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-family: Rubik, serif;
  background-color: transparent;
  border: none;
  border: 1px solid #445c2f;
  color: #ddd;
 margin-bottom: 30px;
}

.subscribe-form button {
  background: none;
  color: #f7921f;
  width: 190px;
  font-size: 18px;
  padding: 6px 10px;
  font-family: Rubik, serif;
  margin-bottom: 90px;
  font-weight: 600px;
  border: none;
  cursor: pointer;
}

.subscribe-form button:hover{
  border: 1px solid #445c2f;
}

.footer-links 
{
  margin-left: 20px;
 
}

/* Links */
.footer-links h3 {
  margin-bottom: 50px;
  border-bottom: 2px solid #f7921f;
  display: inline-block;
  padding-bottom: 5px;
  color: #ddd;
  font-size: 22px;
  font-family: Rubik , serif;
  font-weight: 550px;
}

.footer-links ul {
  margin-left: -20px;
  list-style: none;
   display: grid;
   grid-template-columns: repeat(2, auto);
  gap: 22px;
}

.footer-links li a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  font-family: Rubik , serif;
  font-weight: 250px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #f7921f;
}

.footer-instagram 
{
 margin-left: 100px; 
}
/* Instagram */
.footer-instagram h3 {
  margin-bottom: 25px;
  border-bottom: 2px solid #f7921f;
  color: #fff;
  font-family: Rubik ,serif;
  font-size: 25px;
  display: inline-block;
  padding-bottom: 5px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insta-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #f7921f;
}
.insta-grid img:hover{
   border: 2px solid #445c2f;
}


.footer-strip {
  position: absolute;
  background-color: transparent; /* Dark teal like screenshot */
  margin-top: -250px;
  margin-left: 900px;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

.footer-payment-text p {
  font-size: 16px;
  font-family: Abril Fatface , serif;
  font-weight: lighter;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-payment-icons img {
  height: 32px;
  object-fit: cover;
  background: #fff;
  padding: 4px 6px;
  border-radius: 4px;
}

.footer-hold-text p {
  font-size: 16px;
  margin: 10px 0 25px;
}

.footer-cert-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
 
}

.footer-cert-icons img {
  height: 45px;
  opacity: 0.8;
  background-color: #fff;
  border: 5px solid #fff;
}



/* Bottom */
.footer-bottom {
  margin-top: 40px;
  height: 80px;
  padding: 15px 60px;
  background-color: #445c2f;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-family: Rubik, serif;
}

.footer-bottom .highlight {
  color: #f7921f;
}
.footer-bottom p{
  color: #ddd;
  margin-left: 50px;
  margin-top: 16px;
  
}

.bottom-links
{
  margin-left: 510px;
}
.bottom-links a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.bottom-links a:hover {
  color: #f7921f;
}

/* 🖥️ Large Laptop (max-width: 1440px) */
@media (max-width: 1440px) {
     
/* Footer */
footer {
  height: auto;
}
.bottom-links
{
  margin-left: 450px;
}
.footer-strip {
  margin-top: -270px;
  margin-left: 800px;

}
}
/* ============================= */
/* 💻 Laptop (max-width: 1024px) */
/* ============================= */
@media (max-width: 1024px) {
  footer {
    height: auto;
    padding-top: 80px;
  }
/* Footer Top Section */
  
  .footer-top {
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 950px;
  }

  .footer-top .info-box {
    margin-right: 60px;
  }

  .footer-top .booking-btn {
    margin-left: 0;
    padding: 18px 28px;
    font-size: 18px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 50px;
  }

  .footer-instagram {
    margin-left: 40px;
  }

  .footer-strip {
    margin-top: -320px;
  margin-left: 500px;
  }

  .footer-bottom {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
  }
 .footer-bottom p {
   margin-left: -60px;
  margin-top: 16px;
 }
  .bottom-links {
    margin: 20px 0 0 0;
  }
}

/* ============================= */
/* 📱 Tablet (max-width: 786px) */
/* ============================= */
@media (max-width: 786px) {
  footer {
    height: auto;
    padding-top: 70px;
  }
  .footer-top {
    max-width: 700px;
  }

.footer-top .info-box {
 margin: 10px 20px;
  gap: 10px;
}
.footer-top .last h3
{
  font-size: 18px;
}
.footer-top .last p{
  font-size: 10px;
}
.footer-top .icon-circle {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.footer-top .icon-circle i 
{
  font-size: 25px;
}
.footer-top .booking-btn {
  margin-left: 35px;
  padding: 16px 26px;
  font-size: 14px;
}
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 30px;
  }

  .footer-instagram {
    margin-left: 0;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-strip {
      margin-top: -470px;
  margin-left: 400px;
  }
  .footer-bottom {
    text-align: center;
    font-size: 12px;
  }
 .footer-bottom p {
   margin-left: 10px;
 }
.bottom-links
{
  margin-left: 50px;
}
.bottom-links a {
  margin-left: 5px;
  font-size: 12px;
   text-align: center;
}
}

/* ============================= */
/* 📲 Large Mobile (max-width: 480px) */
/* ============================= */
@media (max-width: 480px) {
  footer {
    height: auto;
    padding-top: 60px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    max-width: 370px;
  }

.footer-top .last p{
  font-size: 14px;
}

.footer-top .booking-btn {
  margin-left: 170px;
  padding: 10px 15px;
}


  .footer-container {
    grid-template-columns: 1fr;
    margin: 40px 20px;
  }

  .footer-logo img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
.subscribe-form button {
  margin-bottom: 20px;
  }
  .social-icons {
    justify-content: center;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 350px;
  }

  .footer-strip {
    margin: 30px auto 0;
    text-align: start;
  margin-top: -350px;
  margin-left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 20px 10px;
  }
.footer-bottom p {
  font-size: 12px;
}
  .bottom-links {
    margin: 10px 0 0 0;
   
  }

  .bottom-links a {
    display: inline-block;
    margin: 5px;
     font-size: 12px;
  }
}

/* ============================= */
/* 📱 Small Mobile (max-width: 320px) */
/* ============================= */
@media (max-width: 320px) {
.subscribe-form input {
  padding: 10px 20px;
}
.insta-grid img {
  width: 90%;
}
}


