/* ============================================
   NGENDA Travelling & Tours — Static Site CSS
   ============================================ */
/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #ff8d1b;
  --primary-dark: #e07a10;
  --secondary: #3b2414;
  --secondary-dark: #2a160c;
  --cream: #ecd095;
  --beige: #fbf5e9;
  --muted: #d9c9a8;
  --muted-fg: #7a6a50;
  --border: #d4c4a0;
  --text: #2a1a0c;
  --text-light: rgba(251,245,233,0.7);
  --radius: 0.75rem;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(rgba(59,36,20,0.85), rgba(42,22,12,0.95)),
    url("../images/backgroung1.jpg");  
  background-size: cover;
    background-position: center;
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
/* === TYPOGRAPHY === */
.section-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.15;
}
.text-shadow-hero { text-shadow: 0 2px 20px var(--secondary) }
/* === LAYOUT === */
.section-padding { padding: 5rem 1.5rem; }
.max-w-7xl { max-width: 80rem; margin: 0 auto; }
.max-w-6xl { max-width: 72rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
/* === GLASS CONTAINER === */
.glass-container {
  background: var(--muted);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,196,160,0.5);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}
/* === BUTTONS === */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--beige);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 2px;
  transition: all 0.5s ease;
}
.cta-button:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 30px -4px rgba(255,141,27,0.4);
  transform: translateY(-2px);
}
.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid rgba(251,245,233,0.4);
  color: var(--beige);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 2px;
  transition: all 0.5s ease;
}
.cta-button-outline:hover {
  background: var(--beige);
  color: var(--secondary);
}
/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}
.site-header.scrolled {
  background: linear-gradient(rgba(59,36,20,0.85), rgba(42,22,12,0.95)),
    url("../images/backgroung1.jpg");
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}
.site-header.hidden { transform: translateY(-100%); }
.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}
/* Logo container */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

/* Logo image */
.logo-img {
  width: 53px;   /* Adjust size if needed */
  height: auto;
  object-fit: contain;
}

/* Text wrapper */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Main name */
.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

/* Sub text */
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-top: 2px;
}
/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 2rem; }
.desktop-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
/* Hamburger */
.hamburger { display: block; padding: 0.5rem; color: var(--cream); }
.hamburger svg { width: 24px; height: 24px; }
/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(59,36,20,0.6);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 80%; max-width: 24rem;
  z-index: 50;
  background: var(--secondary);
  box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; padding: 6rem 2.5rem 2rem; gap: 1.5rem; }
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(251,245,233,0.8);
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }
/* === INTRO LOADER === */
.intro-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background:  linear-gradient(rgba(59,36,20,0.85), rgba(42,22,12,0.95)),
    url("../images/backgroung1.jpg");
  transition: opacity 0.8s ease;
}
.intro-loader.fade-out { opacity: 0; pointer-events: none; }
.intro-loader.done { display: none; }
.intro-content {
  text-align: center;
  animation: loaderFadeIn 1s ease-out forwards;
  position: relative;
}

.intro-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.intro-content h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 0.75rem;
}

.intro-content p {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(251,245,233,0.7);
  font-weight: 300;
}
.intro-sweep {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.intro-sweep::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(to right, transparent, rgba(255,141,27,0.2), transparent);
  left: -100%;
  animation: loaderSweep 1.5s ease-in-out 0.8s forwards;
}
@keyframes loaderFadeIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes loaderSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}
/* === HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(59,36,20,0.7), rgba(59,36,20,0.4), rgba(59,36,20,0.8));
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 1.5rem;
  max-width: 56rem; margin: 0 auto;
}
.hero-content .section-heading { color: var(--primary); margin-bottom: 1.5rem; }
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--beige);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}


.hero-content p {
  font-size: 1rem;
  color: rgba(251,245,233,0.8);
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
.hero-indicators {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 0.75rem;
}
.hero-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 9999px;
  background: rgba(251,245,233,0.4);
  transition: all 0.5s;
}
.hero-dot.active { width: 2rem; background: var(--primary); }
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
/* === PAGE HERO (sub pages) === */
.page-hero {
  position: relative;
  height: 60vh; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.page-hero .safari-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(59,36,20,0.8), rgba(59,36,20,0.5), rgba(59,36,20,0.9));
}
.page-hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 0 1.5rem;
}
.page-hero-content .section-heading { color: rgba(255,141,27,0.9); margin-bottom: 1rem; }
.page-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--beige);
}
/* === SAFARI CARD === */
.safari-card {
  background: var(--muted);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s ease;
}
.safari-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.safari-card .card-image {
  position: relative; height: 20rem; overflow: hidden;
}
.safari-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.safari-card:hover .card-image img { transform: scale(1.1); }
.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--primary); color: var(--beige);
  padding: 0.25rem 0.75rem; border-radius: 2px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
}
.card-body { padding: 1.5rem; }
.card-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.card-stars .star { color: var(--primary); font-size: 0.85rem; }
.card-stars .star.empty { color: rgba(0,0,0,0.15); }
.card-body h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--secondary-dark); }
.card-body .desc { font-size: 0.85rem; color: var(--secondary-dark); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.card-per { font-size: 0.7rem; color: var(--secondary-dark); font-weight: 300; }
/* === WHY CHOOSE ICONS === */
.feature-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: rgba(255,141,27,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--primary); stroke: var(--primary); fill: none; stroke-width: 2; }
/* === GRID === */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-split { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
/* === TESTIMONIAL === */
.testimonial-section { background: var(--secondary); }
.testimonial-section .section-heading { color: rgba(255,141,27,0.8); }
.testimonial-section .section-title { color: var(--cream); }
.testimonial-card {
  background: rgba(251,245,233,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,196,160,0.15);
 
  padding: 2rem;
  text-align: center;
}
.testimonial-text {
  font-size: 1.1rem; font-style: italic; font-weight: 300;
  color: rgba(251,245,233,0.9);
  line-height: 1.7; margin: 1.5rem auto 2rem;
  max-width: 40rem;
}
.testimonial-name { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--beige); }
.testimonial-location { font-size: 0.7rem; color: rgba(251,245,233,0.6); font-weight: 300; letter-spacing: 0.1em; margin-top: 0.25rem; }
.testimonial-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-nav button {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(251,245,233,0.2);
  color: rgba(251,245,233,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.testimonial-nav button:hover { color: var(--primary); border-color: var(--primary); }
/* === CTA SECTION === */
.cta-section {
  position: relative; padding: 6rem 1.5rem; overflow: hidden;
}
.cta-section img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-section .cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(59,36,20,0.9), rgba(59,36,20,0.7));
}
.cta-section .cta-inner {
  position: relative; z-index: 10;
  text-align: center; max-width: 48rem; margin: 0 auto;
}
.cta-section h2 { color: var(--beige); margin-bottom: 1.5rem; }
.cta-section p { color: rgba(251,245,233,0.7); font-weight: 300; max-width: 32rem; margin: 0 auto 2.5rem; }
/* === FOOTER === */
.footer-logo-box{
  display:flex;
  align-items:center;
  gap: 0.6rem;
  margin-bottom:15px;
}

.footer-logo-box img{
  width:60px;
}

.footer-logo-link{
  display:inline-block;
  text-decoration:none;
}

.footer-logo{
 width: 53px;   
  height: auto;
  object-fit: contain;
}

.footer-social{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.footer-social a{
  color:var(--cream);
  opacity:0.8;
  transition:0.3s;
}

.footer-social a:hover{
  opacity:1;
  transform:translateY(-2px);
}

.site-footer { background: var(--secondary); color: var(--primary); }
.footer-inner {
  max-width: 80rem; margin: 0 auto;
  padding: 4rem 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.footer-brand .logo-name { font-size: 1.15rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(251,245,233,0.7); font-weight: 300; line-height: 1.7; margin-top: 1.5rem; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.85rem; color: rgba(251,245,233,0.7); font-weight: 300;
  margin-bottom: 0.75rem; transition: color 0.3s;
}
.footer-col a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; stroke: var(--primary); fill: none; stroke-width: 2; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(251,245,233,0.7); font-weight: 300; }
.footer-bottom {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(251,245,233,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.footer-bottom p, .footer-bottom span {
  font-size: 0.7rem; color: rgba(251,245,233,0.5); font-weight: 300; letter-spacing: 0.1em;
}
.footer-legal { display: flex; gap: 1.5rem; }
/* === FORM FIELDS === */
.input-field {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(251,245,233,0.8);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.3s;
}
.input-field::placeholder { color: rgba(122,106,80,0.6); }
.input-field:focus {
  outline: none;
  border-color: rgba(255,141,27,0.6);
  box-shadow: 0 0 0 3px rgba(255,141,27,0.15);
}
textarea.input-field { resize: none; }
select.input-field { cursor: pointer; }
.form-label {
  display: block; font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-success {
  text-align: center; padding: 3rem 0;
}
.form-success .check-icon {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: rgba(255,141,27,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.5rem;
}
/* === ACCORDION (FAQ) === */
.accordion-item { margin-bottom: 1rem; }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; text-align: left;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--text);
}
.accordion-trigger svg {
  width: 20px; height: 20px; color: var(--primary); flex-shrink: 0;
  transition: transform 0.3s;
  stroke: var(--primary); fill: none; stroke-width: 2;
}
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion-content-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(212,196,160,0.5);
}
.accordion-content-inner p {
  font-size: 0.85rem; color: var(--muted-fg);
  font-weight: 300; line-height: 1.7; padding-top: 1rem;
}
/* === CONTACT INFO === */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,141,27,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--primary); stroke: var(--primary); fill: none; stroke-width: 2; }
.contact-info-item h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-info-item p { font-size: 0.85rem; color: var(--muted-fg); font-weight: 300; }
.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,141,27,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: all 0.3s;
}
.social-link:hover { background: var(--primary); color: #fff; }
.social-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.map-placeholder {
  height: 14rem; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.map-placeholder svg { width: 32px; height: 32px; color: var(--primary); stroke: var(--primary); fill: none; stroke-width: 2; margin: 0 auto 0.75rem; }
/* === DESTINATION SLIDER === */
.dest-slider { position: relative; }
.dest-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2rem; height: 2rem; border-radius: 50%;
  background: rgba(59,36,20,0.6); color: rgba(251,245,233,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; z-index: 5;
}
.dest-slider-btn:hover { background: rgba(59,36,20,0.8); }
.dest-slider-btn.prev { left: 0.75rem; }
.dest-slider-btn.next { right: 0.75rem; }
.dest-dots { position: absolute; bottom: 0.75rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.375rem; }
.dest-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(251,245,233,0.4); transition: all 0.4s; }
.dest-dot.active { width: 1rem; background: var(--primary); }
/* === SCROLL REVEAL === */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}
/* === RESPONSIVE === */
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .section-padding { padding: 7rem 3rem; }
  .section-title { font-size: 2.8rem; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-split { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .hero-content h1 { font-size: 3.5rem; }
  .page-hero-content h1 { font-size: 3rem; }
  .intro-content h1 { font-size: 3.5rem; }
  .header-inner { padding: 1.25rem 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .section-padding { padding: 8rem 5rem; }
  .section-title { font-size: 3rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .desktop-nav { display: flex; }
  .hamburger { display: none; }
  .hero-content h1 { font-size: 4.5rem; }
  .page-hero-content h1 { font-size: 3.5rem; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.safari-full {
  grid-column: 1 / -1;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 200px;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.map-link:hover .map-overlay {
    transform: translateY(-3px);
}

.booking-success{
    display:none;

    background:#FFF4E5;

    color:#FF8D1B;

    border:1px solid #FF8D1B;

    padding:20px;

    border-radius:12px;

    margin-bottom:25px;

    font-weight:600;

    box-shadow:
    0 4px 15px rgba(255,141,27,.15);
}

.contact-success{

    display:none;

    background:#FFF4E5;

    color:#FF8D1B;

    border:1px solid #FF8D1B;

    padding:15px;

    border-radius:12px;

    margin-bottom:20px;

    font-weight:600;
}