/* ---------- main-mobile.css (Enhanced UI for screens <= 767px) ---------- */
@media screen and (max-width: 767px) {

:root {
  --gold: #e09706;
  --bg-a: #fdf6ec;
  --bg-b: #f2e7d5;
  --dark: #1d1f2f;
}

/* Reset & Base */
* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(135deg, var(--bg-a), var(--bg-b));
  color: #333;
  font-size: 15px;
}
img, picture, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */


/* HEADER WRAPPER */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #ffffff, var(--gold));
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 0 0 15px 15px;
}

/* LOGO */
header img {
  height: 64px;
  object-fit: contain;
}

/* ICONS ROW */
.header-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 4px;
}

/* PURE ICON STYLE — NO BACKGROUND */
.header-buttons a {
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* TAP INTERACTION */
.header-buttons a:active {
  transform: scale(1.15);
  opacity: 0.85;
}

/* BRAND COLORS */
.header-buttons a.whatsapp-btn i { color: #25D366; }
.header-buttons a.insta-btn i { 
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-buttons a.call-btn i { color: #007bff; }

}

/* Hero Section */
.hero {
  padding: 30px 20px;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  position: relative;
  transition: background-image 1s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  margin-top: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 70%, transparent 100%);
  z-index: 1;
  transition: background 0.5s ease;
  border-radius: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  color: #d0e8f2;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* .hero-btn {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 10px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(224, 150, 6, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
}

.hero-btn:hover {
  background: #cc8505;
  box-shadow: 0 8px 18px rgba(204, 133, 5, 0.8);
  transform: translateY(-3px);
}

.hero-btn:active {
  background: #a46b03;
  box-shadow: 0 4px 10px rgba(164, 107, 3, 0.8);
  transform: translateY(1px);
}
.ak-brand {
  font-family: 'Pacifico', cursive;
  font-weight: normal;  /* Pacifico is a script font, keep weight normal */
  /* color: var(--gold);   /* optional, to keep brand color consistent */
  /* font-size: 1.2em;     /* slightly bigger than surrounding text */
/* }  */



/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

.hero-btn {
  padding: 14px 38px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: white;
  background: linear-gradient(135deg, #1a73e8, #00bfa6);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 191, 166, 0.4);
  transition: all 0.35s ease;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 130%;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(0, 191, 166, 0.55);
}

.hero-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.4);
}



/* Fade in up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
nav {
  display: flex;
  flex-wrap: wrap;  /* allow nav items to wrap on smaller screens */
  justify-content: center;
  padding: 10px 12px;
  gap: 10px;        /* space between buttons */
  overflow-x: visible; /* no horizontal scroll */
  background: linear-gradient(270deg, #ffe5ec, #ffd6a5, #caffbf, #9bf6ff, #a0c4ff, #bdb2ff);
  background-size: 800% 800%;
  animation: gradientShift 15s ease infinite;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  backdrop-filter: saturate(180%) blur(10px);
  scrollbar-width: none;
  user-select: none;
  max-width: 100vw;
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin-top: 20px; /* space above nav */
}

}

  nav::-webkit-scrollbar {
    display: none;
  }
nav a {
  flex: 0 0 auto;        /* no grow/shrink */
  display: inline-block;
  white-space: nowrap;   /* KEEP text in single line */
  overflow: hidden;      /* hide overflow */
  text-overflow: ellipsis; /* add "..." for clipped text */
  min-width: 100px;
  max-width: 160px;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease;
}



  nav a:hover,
  nav a:focus {
    background: rgba(255 255 255 / 0.7);
    color: var(--gold);
    box-shadow: 0 0 12px var(--gold);
    outline: none;
  }

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



  .services, .destinations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    align-items: start;
    text-align: center; /* center text */
  }
  #services h2 {
  text-align: center;
}

  #destinations {
    text-align: center;
  }


/* Services & Cards */
/* Card Styles */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 20px; /* Slightly more padding for breathing room */
  gap: 14px; /* Slightly bigger gap */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Softer but deeper shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  will-change: transform, box-shadow; /* smoother animation */
}

.card:hover {
  transform: translateY(-8px) scale(1.02); /* subtle scale + lift */
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); /* deeper shadow on hover */
}

.card:active {
  transform: scale(0.98);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
a {
  text-decoration: none;
}

.card-link,
.services a {
  text-decoration: none;
  color: inherit;
}


.card img {
  width: 100%;
  border-radius: 14px; /* rounder corners */
  object-fit: cover;
  transition: transform 0.4s ease;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.05); /* subtle inner glow */
}

.card:hover img {
  transform: scale(1.06);
  box-shadow: inset 0 0 25px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 34px; /* slightly bigger */
  color: var(--gold);
  transition: color 0.3s ease, transform 0.3s ease;
}

.card:hover .card-icon {
  color: #c67f04;
  transform: rotate(5deg); /* subtle tilt on hover */
}

/* Link wrapper for card */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  outline-offset: 4px; /* better focus outline */
}

.card-link:hover .card,
.card-link:focus .card {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-link:active .card {
  transform: scale(0.98);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}


/* Mobile-first adjustments */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0 16px 40px;
}

.travel-card {
  width: 100%;
  max-width: 320px; /* prevents over-stretching */
  height: 260px; /* shorter for mobile */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform .3s;
}

.travel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-card:hover {
  transform: translateY(-4px);
}

.card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
}

/* stars & price */
.stars {
  color: #f1c40f;
  margin-bottom: 4px;
  font-size: 14px;
}

.price {
  font-weight: bold;
  color: #2ecc71;
  font-size: 0.95rem;
}

/* Popup */
.popup {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  display: none; justify-content: center; align-items: center;
  z-index: 999;
}

.popup-inner {
  display: flex; flex-direction: row;
  width: 90%; max-width: 900px;
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: zoomIn .3s ease;
  position: relative;
}

@keyframes zoomIn { 
  from { transform: scale(.95); opacity: 0; } 
  to { transform: scale(1); opacity: 1; } 
}

/* Image side */
.popup-left {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* shows full image */
  background: #ffffff; /* avoids white bars */
}

.popup-left::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient( rgba(45, 44, 44, 0.2), rgba(14, 14, 14, 0.4));
}
.popup-left:hover img {
  transform: scale(1.05);
}

/* Text side */
.popup-right {
  width: 50%;
  padding: 30px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popup-right h2 { font-size: 1.8rem; color: #34495e; margin-bottom: 10px; }
.popup-right p { font-size: 1rem; color: #555; margin-bottom: 10px; }

.tags span {
  display: inline-block;
  margin: 4px 6px 10px 0;
  padding: 6px 12px;
  background: #ecf0f1;
  border-radius: 20px;
  font-size: .9rem;
}

.popup-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.popup-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
}
.choose-btn { background: #3498db; color: #fff; }
.next-btn { background: #e67e22; color: #fff; }
.more-btn { background: #2980b9; color: #fff; }

/* Close button */
.close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.8rem;
  background: #fff; color: #333;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  text-align: center; line-height: 36px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
}
.close-btn:hover { background: #f44336; color: #fff; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .popup-inner { flex-direction: column; max-height: 90vh; }
  .popup-left, .popup-right { width: 100%; }
  .popup-left { height: 220px; }
  .popup-right { padding: 20px; }
}


/* Tablet/Desktop styles */
@media (min-width: 768px) {
  .card-container {
    padding: 0 40px 60px;
  }

  .travel-card {
    width: 260px;
    height: 330px;
  }

  .popup-inner {
    flex-direction: row;
    max-width: 900px;
  }

  .popup-left, .popup-right {
    width: 50%;
  }

  .popup-left img {
    height: 100%;
  }

  .popup-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }
}



/* 
/* Travel Cards: Horizontal Scroll */
/* .card-container {
  display: flex;
  gap: 14px;
  padding: 10px 12px 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.travel-card {
  flex: 0 0 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform .2s;
}
.travel-card:active {
  transform: scale(0.97);
}
.travel-card img {
  height: 140px;
  width: 100%;
  object-fit: cover;
}
.card-info {
  padding: 10px;
} */ */

/* Map & About stacked */







@media (max-width: 480px) {
.map-about-container {
  padding: 14px 10px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers horizontally */
  max-width: 100%;
  margin: 10px auto; /* centers the whole container */
}


  .map-card, 
  .about-card {
    width: 90%;       /* smaller width so it looks centered */
    max-width: 400px; /* optional max width */
    margin: 0 auto;   /* center horizontally */
  }

  .map-card iframe {
    height: 220px;
    width: 100%; /* keep iframe full width of card */
  }
}
  .about-card {
    width: 90%;       /* smaller width so it looks centered */
    max-width: 400px; /* optional max width */
    margin: 0 auto;   /* center horizontally */
  }

  .map-card iframe {
    height: 220px;
    width: 100%; /* keep iframe full width of card */
  }
.map-card {
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 4px solid #ddd; /* thick, light border */
  overflow: hidden; /* round the iframe corners too */
  max-width: 420px;
}

.map-card iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 10px;
}


/* Contact & Why Choose stacked */
/* Container */
.contact-why-container {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  /* background: #f7f7f7; simple clean background */
}

/* Card Style (Glass Effect) */
.contact-section,
.why-choose {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-top: 2px;
}

.contact-section:hover,
.why-choose:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 152, 0, 0.2);
}

/* Headings */
.contact-section h2,
.why-choose h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 10px;
}

/* Contact Info */
.contact-card-single p {
  font-size: 1rem;
  margin: 12px 0;
}

.contact-card-single a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
}

.contact-card-single a:hover {
  text-decoration: underline;
}

.contact-card-single i {
  color: #ff9800;
  margin-right: 8px;
  font-size: 1.2rem;
}

/* Why Choose List */
.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose li {
  font-size: 1rem;
  margin: 10px 0;
  color: #333;
}

.why-choose li::before {
  content: "";
  color: #ff9800;
  font-weight: bold;
  margin-right: 6px;
}

/* Mobile */
@media (max-width: 480px) {
  .contact-section h2, .why-choose h2 {
    font-size: 1.4rem;
  }
  .contact-card-single p,
  .why-choose li {
    font-size: 0.95rem;
  }
}



/* Attestation Card */
.attestation-card {
  max-width: 94%;
  margin: 20px auto;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,245,210,0.55);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.about-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: auto;
  text-align: center;
  transition: all 0.3s ease-in-out;
  margin-top: 25px;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 152, 0, 0.2);
}

.about-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 15px;
  margin-top: 15PX;
}

.about-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .about-card h2 {
    font-size: 1.4rem;
  }
  .about-card p {
    font-size: 0.95rem;
  }
}

/* Footer */
.site-footer {
  width: 100%;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  text-align: center;
  background: linear-gradient(to right, var(--gold), #eeece9);
  border-top: 2px solid #d4a006;
  color: #333;
  letter-spacing: 0.5px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}
body {
  margin: 0;
  padding: 0;
}

/* Smooth transition for cards and buttons
.card, .travel-card, .hero-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* 
/* Elevate card on tap */
/* .card:active, .travel-card:active, .hero-btn:active {
  transform: scale(0.97);
  box-shadow: 0 8px 24px rgba(224, 150, 6, 0.4);
}
/* 
/* Add subtle shadow on hover (for desktop if viewed) */
/* .card:hover, .travel-card:hover, .hero-btn:hover {
  box-shadow: 0 6px 18px rgba(224, 150, 6, 0.35);
  transform: translateY(-3px);
}

/* Hero button: smooth color fade on active */
/* .hero-btn:active {
  background: #bf7504;
}  */
