* {
  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: 14px;
}

/* 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 10px;
  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;
}
}



/* =========================
   banner section
   ========================= */

  .holidays-section {
  width: 100%;
  height: 95vh;
  position: relative;
    display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
}


/* WRAPPER */
.combo {
  position: relative;
  display: flex;
  width: 100%;
  height: 95vh;
   background-size: cover;
  background-position: center;
}

.picture{
  position: relative;
  width: 300%;
}
.picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
/* ==== Text Content ==== */
.banner-content {
  position: absolute;
  top: 20%;
  text-align: center;
  color: white;
}

.banner-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 3);
  color: #f7921f;
}

.banner-content p {
  font-size: 1.3rem;
  font-weight: 00;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 2);
  color: #fff;
}

/* Form */
.form-container {
  /* background-color: #fff; */
  background-color: rgba(10, 30, 40, 0.95);
  /* background-color:#0A1E28; */
  width: 900px;
  padding: 30px;
  border-radius: 8px;
  position: absolute;
  color: white;
 align-items: center;
 bottom: 30px;

}

/* --- 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: 37px;
  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-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  color: #000;
  
}

/* Make 2 boxes per row */
.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;

}

.form-grid > div {
  flex: 1;
  min-width: 30%;
}

.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;
  min-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/684/684809.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 */
}


.travellers-wrapper {
  position: relative;
  width: 100%;
}

#travellers-input {
  width: 100%;
  padding: 8px 8px 8px 40px; /* 40px left for icon */
  font-size: 14px;
  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: 85%;
  left: 0;
  width: 100%;
  background: #fff;
  padding:  8px 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;
}
/* =========================
   responsive
   ========================= */
/* ============================= */
/* 📱 Tablet (max-width: 786px) */
/* ============================= */
@media (max-width: 786px)
{
 .banner-content h1 {
      font-size: 3.5rem;
  }
   .banner-content p {
      font-size: 1.1rem;
  }
  .form-container
  {
    width: 680px;
  }
  .counter button {
  width: 25px;
  height: 25px;
}
.counter span {
  margin: 0px -2px;
}

}
@media (max-width: 600px)
{
  .form-container
  {
   padding: 15px;
   bottom: 10px;
  }
  .traveller-box {
  width: 70%;
}
.form-grid {
  gap: 8px;
}

.form-grid > div {
  flex: 1;
  min-width: 38%;
}
  .counter button {
  width: 29px;
  height: 29px;
}
.counter span {
  margin: 0px 10px;
}
  .holidays-section {
  height: 105vh;    /* horizontal center */
}
/* WRAPPER */
.combo {
  height: 105vh;
}
.banner-content {
  top: 10%;
}
.banner-content h1 {
  font-size: 3rem;
}
.banner-content p {
  font-size: 1.2rem;
}
}
@media (max-width: 320px)
{
   .form-container
  {
  bottom: 20px;
  }
   .banner-content h1 {
      font-size: 2rem;
  }
    .banner-content p {
      font-size: 0.9rem;
  }
   .traveller-box {
  width: 80%;
}
  .holidays-section {
  height: 100vh;    /* horizontal center */
}
/* WRAPPER */
.combo {
  height: 100vh;
}
}




/* =========================
   Why choose us
   ========================= */



.why-hub {
  padding: 80px 10%;
  padding-bottom: 150px;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 135vh;
  height: 80vh;
}

.sub-heading {
  color: #f7921f;
  font-size: 22px;
  font-weight: 500;
  font-family:cursive;
}

.why-text h2 {
  font-family: Abril Fatface, serif;
  color: #223740;
  font-size: 35px;
  font-weight: 600;
  margin: 5px 0 15px;
}

.desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

.opportunity {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 24px;
  font-family: Abril Fatface, serif;
  color: #223740;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
 
}

.benefit-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  display: block;
  font-size: 18px;
}

.benefit-list li::before {
  content: "✔";
  color: #009688;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.btn-info {
  display: inline-block;
  padding: 12px 28px;
  background: #ffb100;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
  font-size: 18px;
}

.btn-info:hover {
  background: #223740;
}

/* Images Section */
.why-images {
  position: relative;
  width:720px;

}

.img-main,
.img-back {
  width: 100%;
  height: 400px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.8);
  transition: transform 0.4s ease;
  object-fit: cover;
}

.img-main {
  position: relative;
  z-index: 2;
}

.img-back {
  position: absolute;
  top: 140px;
  left: 230px;
  opacity: 0.9;
}

/* Hover Animation */
.why-images:hover .img-main {
  transform: translateY(-10px);
}

.why-images:hover .img-back {
  transform: translateY(10px);
}

/* Responsive Design */

/* 🟡 Laptop Screens (max-width: 1200px) */
@media (max-width: 1024px) {
  .why-container {
    gap: 40px;
    width:120vh;
  }
 .why-hub {
  padding: 80px 7%;
}
  .why-images {
    width: 600px;
  }
.img-main,
.img-back {
  width: 100%;
  height: 350px;
}
  .img-back {
    top: 100px;
    left: 180px;
  }
  .sub-heading {
  font-size: 20px;
}
.why-text h2 {
  font-size: 30px;
}
.desc {
  font-size: 14px;
}
.opportunity {
  font-size: 22px;
}
}

/* 🟠 Tablets (max-width: 992px) */
@media (max-width: 768px) {
   .why-hub {
  padding-bottom: 140px;
}
  .why-container {
    flex-direction: column;
   width: 550px;
   height: auto;
  }
    .sub-heading {
  font-size: 16px;
}

  .why-images {
    margin-top: 40px;
    width: 400px;
  }
.img-main
{
  left: auto;
  right: 50px;
}
  .img-main,
.img-back {
  height: 400px;
}
}

/* 🔵 Mobile (max-width: 600px) */
@media (max-width: 480px) {
  .why-hub {
    padding: 60px 5%;
    padding-bottom: 150px;
  }
    .why-container {
   width: 350px;
  }

  .why-text h2 {
    font-size: 25px;
  }
  .desc
  {
    font-size: 14px;
  }
  .opportunity {
    font-size: 20px;
  }

  .benefit-list li {
    font-size: 15px;
  }

  .btn-info {
    padding: 10px 20px;
    font-size: 16px;
  }

  .why-images {
    width: 100%;
  }
  .why-images {
    width: 230px;
  }
  .img-main,
.img-back {
  height: 330px;
}
  .img-back {
    top: 100px;
    left: 100px;
  }
}

/* ⚫ Small Mobile (max-width: 400px) */
@media (max-width: 425px) {
  .img-back {
    top: 80px;
    left: 50px;
  }

  .why-text h2 {
    font-size: 24px;
  }

  .sub-heading {
    font-size: 18px;
  }
}
/* ⚫ Small Mobile (max-width: 400px) */
@media (max-width: 320px) {
.why-images {
    width: 200px;
  }
}

/* =========================
   holidays package section
   ========================= */

/* ====== Scroll Animation ====== */

/* When card is in view */
.holiday-card.in-view {
  opacity: 1;
  transform: translateY(50);
}

/* 1st Row: from left */
.holiday-card:nth-child(1).in-view, 
.holiday-card:nth-child(2).in-view,
.holiday-card:nth-child(3).in-view {
  animation: slideInLeft 1.5s forwards;
}

/* 2nd Row: from right */
.holiday-card:nth-child(4).in-view, 
.holiday-card:nth-child(5).in-view,
.holiday-card:nth-child(6).in-view {
  animation: slideInRight 1.5s forwards;
}

/* 3rd Row: from left */
.holiday-card:nth-child(n+7).in-view {
  animation: slideInLeft 1.5s forwards;
}

/* Keyframe definitions */
@keyframes slideInLeft {
  from { transform: translateX(-80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(80px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}



.holiday-section {
  width: 85%;
  margin: auto;
  text-align: center;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 55px;
  color: #223740;
  font-family: serif;
}

/* ====== FIXED GRID LAYOUT (NO AUTO-FIT) ====== */
.holiday-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  justify-content: center;
}

/* ====== CARD SIZES ROW BY ROW ====== */

/* 1st Row */
.holiday-card:nth-child(1) { grid-column: span 2; height: 350px; }
.holiday-card:nth-child(2) { grid-column: span 1; height: 350px; }
.holiday-card:nth-child(3) { grid-column: span 1; height: 350px; }

/* 2nd Row */
.holiday-card:nth-child(4) { grid-column: span 1; height: 350px; }
.holiday-card:nth-child(5) { grid-column: span 2; height: 350px; }
.holiday-card:nth-child(6) { grid-column: span 1; height: 350px; }

/* 3rd Row (4 equal cards) */
.holiday-card:nth-child(7),
.holiday-card:nth-child(8),
.holiday-card:nth-child(9),
.holiday-card:nth-child(10) {
  grid-column: span 1;
  height: 350px;
}

/* ====== CARD DESIGN ====== */
.holiday-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.holiday-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.holiday-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
  transition: 0.4s;
}

.holiday-card .info {
  position: absolute;
  bottom: 18px;
  left: 22px;
  color: #fff;
  text-align: left;
}

.holiday-card .info h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: Abril Fatface, serif;
}

.holiday-card .info p {
  font-size: 18px;
  color: #f7921f;
  font-family: Rubik, serif;
}

/* Hover Effect */
.holiday-card:hover img {
  transform: scale(1.1);
}

.holiday-card:hover .overlay {
  background: rgba(0,0,0,0.4);
}

/* Tablet View (2 columns) */
@media (max-width: 1199px) {
  .holiday-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .holiday-card:nth-child(1),
  .holiday-card:nth-child(4), 
  .holiday-card:nth-child(10),
 .holiday-card:nth-child(7){
    grid-column: span 2;
  }

  .holiday-card:nth-child(5) {
    grid-column: span 1;
  }
}

/* Mobile View (1 column) */
@media (max-width: 767px) {
  .holiday-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .holiday-card {
    grid-column: span 1 !important;
    min-height: 450px;
  }
  .section-title {
    font-size: 40px;
  }
  .holiday-card .info h3 {
    font-size: 28px;
  }
}

/* =========================
   feauture box section
   ========================= */
.feature-section
{
   height: auto;
}
.feature-section h2
{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
   padding: 60px;
   font-family: Abril Fatface, serif;
   font-size: 30px;
   color: #223740;

}
.feature-section h2::before,
.feature-section h2::after {
  content: "";
  flex: 0.3;
  height: 2px;       /* line thickness */
  margin-top: 1px;
  background-color: #223740; /* line color */
}
.feature {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 10%;
  flex-wrap: wrap;
}

.feature-box {
  flex: 1;
  background-color: #223740;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-box i {
  width: 60px;
  margin-bottom: 15px;
  font-size: 50px;
  color: #FFF3E0;
}

.feature-box h3 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: Rubik, serif;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}
.feature-box:nth-child(1) h3,
.feature-box:nth-child(3) h3
{
  color: #000;
}
.feature-box:nth-child(1),
.feature-box:nth-child(3)
{
  background-color: #FFF3E0;
}
.feature-box:nth-child(1) i,
.feature-box:nth-child(3) i {
  color: #223740; /* Black text for 1st and 3rd card paragraphs */
}
.feature-box:nth-child(1) p,
.feature-box:nth-child(3) p {
  color: #000; /* Black text for 1st and 3rd card paragraphs */
}

/* Responsive Media Queries */
/* Tablet View */
@media (max-width: 1024px) {
  .feature {
    gap: 15px;
    padding: 0 2%;
  }


  .feature-section h2 {
    font-size: 26px;
    padding: 30px;
  }
}
/* Tablet View */
@media (max-width: 768px) {
  .feature {
    gap: 15px;
    padding: 0 5%;
  }

  .feature-box {
    flex: 0 0 48%;
  }

  .feature-section h2 {
    font-size: 26px;
    padding: 30px;
  }
}

/* Mobile View */
@media (max-width: 576px) {
  .feature {
    flex-direction: column;
    padding: 0 10%;
  }

  .feature-box {
    flex: 1 0 100%;
  }

  .feature-section h2 {
    font-size: 30px;
    padding: 25px 45px;
  }

  .feature-section h2::before,
  .feature-section h2::after {
    display: none;
  }
}


/* 
////////////////
Family Package
//////////////// */

/* Section Base */
.tour-section {
  width: 100%;
  padding: 100px 0;
  font-family: serif;
}

.tour-container {
  width: 85%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* Headings */
.tour-top-heading {
  color: #f7921f;
  letter-spacing: 3px;
  font-size: 15px;
  margin-bottom: 5px;
  font-family: Rubik,serif;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);

}

.tour-main-heading {
  font-size: 48px;
  font-weight: 550;
  margin-bottom: 70px;
  color: #223740;
  font-family: Abril Fatface, serif;
}

/* Wrapper */
.tour-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Images */
.tour-images {
  position: relative;
  width: 50%;
}
/* First shadow layer */
.tour-images::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  width: 54%;
  height: 455px;
  background: #dfdbdb;
  z-index: 1;
}

/* Second shadow layer */
.tour-images::after {
  content: "";
  position: absolute;
  top: 103px;
  left: 325px;
  width: 48%;
  height: 90%;
  background:#dfdbdb;
  z-index: 1;
}
.tour-images img {
  object-fit: cover;
  
}

.tour-img-back {
  width: 330px;
  height: 460px;
  position: relative;
  right: 100px;
  z-index: 1;
}

.tour-img-front {
  width: 300px;
  height: 420px;
  position: absolute;
  left: 310px;
  top: 120px;
  z-index: 2;
 
}

/* Content */
.tour-content {
  width: 50%;
  text-align: left;
}

.tour-sub-title {
  color: #f7921f;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 600;
  font-family: Rubik,serif;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.tour-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Abril Fatface, serif;
  color: #223740;
}

.tour-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Checklist */
.tour-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-points li {
  font-size: 15px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  color: #222;
}

.tour-check {
  color: #f7921f;
  font-weight: bold;
  font-size: 18px;
  margin-right: 12px;
}

/* Responsive */

@media (max-width: 1024px) {
  .tour-img-back {
  width: 300px;
  height: 430px;
  right: 100px;
}

.tour-img-front {
  width: 270px;
  height: 400px;
  left: 200px;
  top: 100px;
}
/* Content */
.tour-content {
  width: 40%;
}
.tour-title {
  font-size: 35px;
}
/* First shadow layer */
.tour-images::before {
  left: 5px;
  width: 65%;
  height: 430px;
}

/* Second shadow layer */
.tour-images::after {
  top: 85px;
  left: 285px;
}

}

@media (max-width: 768px) {
  .tour-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .tour-images, .tour-content {
    width: 100%;
  }
    .tour-img-back {
  width: 300px;
  height: 430px;
  right: 100px;
   background: rgba(0,0,0,0.55);
}

.tour-img-front {
  width: 280px;
  height: 380px;
  left: 350px;
  top: 90px;
   background: rgba(0,0,0,0.55);
}
/* First shadow layer */
.tour-images::before {
  left: 100px;
  width: 45%;
  height: 430px;
}

/* Second shadow layer */
.tour-images::after {
  top: 75px;
  left: 375px;
  height:88%;
  width: 42%;
}
}
@media (max-width: 480px) {

    .tour-img-back {
  width: 220px;
  height: 330px;
  right: 80px;
}

.tour-img-front {
  width: 190px;
  height: 300px;
  left: 180px;
  top: 60px;
}

.tour-main-heading {
  font-size: 45px;
}
/* First shadow layer */
.tour-images::before {
  left: 18px;
  width: 59%;
  height: 330px;
}

/* Second shadow layer */
.tour-images::after {
  top: 45px;
  left: 230px;
  height:88%;
  width: 42%;
}
}


 @media (max-width: 425px) {

    .tour-img-back {
  right: 50px;
}

.tour-img-front {
  left: 150px;
}

.tour-main-heading {
  font-size: 40px;
}
.tour-title {
  font-size: 30px;
}
/* First shadow layer */
.tour-images::before {
  left: 22px;
  top: 20px;
  width: 67%;
  height: 330px;
}

/* Second shadow layer */
.tour-images::after {
  top: 45px;
  left: 180px;
  height:88%;
  width: 52%;
}

}
 @media (max-width: 320px) {

    .tour-img-back {
  right: 30px;
}
.tour-img-front {
  left: 100px;
}
.tour-images::before {
  left: 23px;
  top: 20px;
  width: 78%;
  height: 330px;
}

/* Second shadow layer */
.tour-images::after {
  top: 45px;
  left: 155px;
  height:88%;
  width: 52%;
}
}
/* =========================
   family pacakge section 2
   ========================= */

.family-package {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0;
}
.package-content
{
  width: 50%;
  padding: 50px;
  padding-left: 100px;
  padding-top: 150px;
}
.sub-title {
  letter-spacing: 3px;
  color: #f7921f;
  font-size: 16px;
  font-weight: 600;
  font-family: Rubik,serif;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.main-title {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Abril Fatface, serif;
  color: #223740;

}
.intro-text {
  line-height: 1.6;
  font-size: 15px;
  color: #555;
}

.main {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 25px 0;

}
.icon-circle {
  width: 80px;
  height: 55px;
  background-color: #223740;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.icon-circle i {
  color: #fff;
  font-size: 24px;
}

.main h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: Abril Fatface , serif;
  color: #223740;
}

.main p {
  font-size: 14px;
  color: #555;
  font-family: Rubik, serif;
}


/* First shadow layer */
.package-images::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 60px;
  width: 50%;
  height: 80%;
  background: #dfdbdb;
  z-index: 1;
}

/* Second shadow layer */
.package-images::after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 335px;
  width: 43%;
  height: 80%;
  background:#dfdbdb;
  z-index: 0;
}

.package-images {
  position: relative;
  width: 50%;
  padding: 50px;
  margin-bottom: 100px;
 
}

.package-images .img {
  object-fit: cover;
 
} 

.package-images .img-1 {
   width: 330px;
  height: 460px;
  position: relative;
  z-index: 2;
}

.package-images .img-2 {
  position: absolute;
  bottom: -40px;
  right: 35px;
  z-index: 1;
  width: 300px;
  height: 420px;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* For tablets (up to 1024px) */
@media (max-width: 1024px) {
  .family-package {
    padding: 60px 0;
  }

  .package-content {
    width: 80%;
    padding: 20px 0px;
    padding-top: 80px;
  }

  .main-title {
    font-size: 45px;
  }
  .icon-circle {
  width: 80px;
  height: 50px;
}
 .icon-circle i {
  font-size: 20px;
 }

  .package-images {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
  }
.package-images .img-1 {
  right: 50px;
     width: 300px;
  height: 430px;
  
}

.package-images .img-2 {
  bottom: -80px;
  right: -20px;
    width: 280px;
  height: 410px;
}
  
 /* First shadow layer */
.package-images::before {
  top: 70px;
  left: 70px;
  width: 60%;
  height: 82%;
}

/* Second shadow layer */
.package-images::after {
  bottom: -95px;
  left: 235px;
  width: 55%;
  height: 87%;
}
 .main {
    justify-content: center;
    text-align: left;
  }


}

/* For mobile (up to 768px) */
@media (max-width: 768px) {
  .family-package {
    flex-direction: column;
    padding: 40px 0;
  }

  .package-content {
    width: 90%;
    padding: 20px;
    padding-left: 0px;
  
  }

  .sub-title {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .main-title {
    font-size: 48px;
  }

  .intro-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .main {
    gap: 25px;
  }

  .icon-circle {
    width: 55px;
    height: 45px;
  }

  .package-images {
    width: 100%;
    padding: 20px 0;  
  }
.package-images .img-1 {
  right: 100px;
}
.package-images .img-2 {
  bottom: -80px;
  right: 45px;
} 
 /* First shadow layer */
.package-images::before {
  top: 50px;
  left: 115px;
  width: 44%;
  height: 89%;
}

/* Second shadow layer */
.package-images::after {
  bottom: -95px;
  left: 345px;
  width: 41%;
  height: 94%;
}
 
}

/* For very small devices (up to 480px) */
@media (max-width: 480px) {
  .main-title {
    font-size: 37px;
  }

  .intro-text {
    font-size: 13px;
  }
  .icon-circle {
    width: 105px;
    height: 50px;
  }
  .icon-circle i 
  {
    font-size: 20px;
  }
  .package-images .img-1
  {
     width: 220px;
  height: 330px;
right: 80px;
  }
  .package-images .img-2 {
  width: 200px;
  height: 300px;
  right: 5px;
  }

   /* First shadow layer */
.package-images::before {
  top: 50px;
  left: 25px;
  width: 57%;
  height: 87%;
}

/* Second shadow layer */
.package-images::after {
  bottom: -95px;
  left: 162px;
  width: 50%;
  height: 90%;
}
}

/* For very small devices (up to 480px) */
@media (max-width: 420px) {
  .main-title {
    font-size: 30px;
  }


  .icon-circle {
    width: 105px;
    height: 50px;
  }
 
  .package-images .img-1
  {
right: 50px;
  }
  .package-images .img-2 {
  right: -10px;
  }

   /* First shadow layer */
.package-images::before {
  top: 45px;
  left: 25px;
  width: 65%;
  height: 87%;
}

/* Second shadow layer */
.package-images::after {
  bottom: -95px;
  left: 132px;
  width: 59%;
  height: 90%;
}
}
/* For very small devices (up to 480px) */
@media (max-width: 320px) {
  .icon-circle {
    width: 145px;
    height: 50px;
  }
 
  .package-images .img-1
  {
right: 35px;
  }
  .package-images .img-2 {
  right: -10px;
  }

   /* First shadow layer */
.package-images::before {
  top: 45px;
  left: 18px;
  width: 75%;
  height: 87%;
}

/* Second shadow layer */
.package-images::after {
  bottom: -95px;
  left: 132px;
  width: 59%;
  height: 90%;
}
}

/* =========================
   Book Banner section
   ========================= */


   .book-banner {
  position: relative;
  background: url('https://images.pexels.com/photos/6346796/pexels-photo-6346796.jpeg') center center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding-left: 10%;
}
.book-banner::after
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* darkness overlay */
  pointer-events: none; /* so hover still works */
  z-index: 0;
}

.book-content {
  max-width: 600px;
  z-index: 1;
}

.book-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 2;
  color: #f7921f;
  font-family: Rubik,serif;
}

.book-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin: 10px 0 30px;
  color: #fff;
  font-family: Abril Fatface ,serif;
}

.book-btn {
  display: inline-block;
  background-color: #f7921f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.book-btn:hover {
  background-color: #223740;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .book-title {
    font-size: 32px;
  }

  .book-banner {
    padding-left: 5%;
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .book-title {
    font-size: 28px;
  }

  .book-banner {
    height: 40vh;
  }
}


/* =========================
   Offer and joined  section
   ========================= */


.offers-section {
  width: 90%;
  max-width: 1300px;
  margin: 60px auto;
  margin-top: 120px;
  background: #f4f7f9;
  border-radius: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.offers-menu {
  display: flex;
  justify-content: center;
  background: #223740;
  border-bottom: 1px solid #ddd;
}

.offers-menu button {
  flex: 1;
  padding: 18px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  font-family: Abril Fatface , serif;
  border: none;
  cursor: pointer;
  background: none;
  transition: all 0.3s ease;
}
.offers-menu button.active {
  background: #f7921f;
  color: white;
  border-bottom: 4px solid #f7921f;
}

.offers-display {
  padding: 55px 50px 60px;
  text-align: center;
}

.offers-display h2 {
  color: #223740;
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: 700;
}

.offers-display p {
  color: #555;
  width: 90%;
  margin-left: 60px;
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* Offers Cards Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.offer-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.18);
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-details {
  padding: 18px;
  text-align: left;
}

.offer-details h4 {
  font-size: 20px;
  color: #223740;
  margin: 0 0 8px;
  font-weight: 700;
}

.offer-details h3 {
display: inline;
  font-size: 22px;
  color: #555;
  margin: 14px;
  margin-left:10px;
  margin-bottom: 10px;
}
.offer-subtitle {
  font-size: 17px;
  color: #f7921f;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.offer-subtitle i {
  font-size: 16px;
  background: rgba(247, 146, 31, 0.2);
  padding: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7921f;
}

.deal-button {
  display: block;
  width: 100%;
  background: #f7921f;
  color: white;
  text-align: center;
  font-family: Rubik , serif;
  padding: 12px;
  border-radius: 0 0 18px 18px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.deal-button:hover {
  background: #223740;
}
/* -----------------------------------
      📱 RESPONSIVE DESIGN START
----------------------------------- */


/* Mobile Portrait */
@media (max-width: 576px) {

.offers-display h2 {
  font-size: 25px;
}
.offers-display p {

  margin-left: 0px;
  font-size: 14px;
}
.offers-display {
  padding: 55px 35px 60px;
}
.offers-menu button {
  padding: 12px;
  font-size: 18px;
}
}

@media (max-width: 320px) {

.offers-display {
  padding: 55px 20px 60px;
}
.offers-menu button {
  font-size: 16px;
}
}

/* =========================
  FAQ's section
   ========================= */

.faq-section {
  padding: 110px 20px;
  background: #fff;
}

.faq-container {
  max-width: 1300px;
  margin: 0 auto;
}

.faq-heading {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #223740;
  font-family: Abril Fatface, serif;
}

.faq-item {
  
  border-radius: 25px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  height: auto;
  padding: 18px 20px;
 background: #FFF3E0;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #223740;
  font-family: Abril Fatface, serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover
{
  color: #fff;
  background-color: #223740;
}

.faq-icon {
  font-size: 25px;
  font-weight: 700;
  transition: 0.3s;
  background-color: #f7921f;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.faq-answer {
  display: none;
  padding: 15px 20px 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  background: #FFF3E0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* -----------------------------------
      📱 RESPONSIVE DESIGN START
----------------------------------- */


/* Mobile Portrait */
@media (max-width: 576px) {
  .faq-section {
    padding: 60px 12px;
  }

  .faq-heading {
    font-size: 35px;
    line-height: 1.2;
  }

  .faq-question {
    font-size: 15px;
    padding: 14px 14px;
    flex-direction: row;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 18px;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 1.6;
  }
}


/* Very small devices */
@media (max-width: 420px) {
  .faq-question {
    font-size: 14px;
    padding: 12px 12px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}





/* =========================
   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%;
}
}


