/* ============================================================
   Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Color palette */
  --color-primary:   #5C4A1E;        /* deep brown */
  --color-secondary: #8B6914;        /* warm gold */
  --color-accent:    #3A6B35;        /* safari green */
  --color-light:     #F5F0E8;        /* cream / off-white */
  --color-dark:      #1A1A1A;        /* near-black text */
  --color-overlay:   rgba(0, 0, 0, 0.45);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  /* Spacing */
  --section-padding: 80px 20px;
  --container-max:   1200px;

  /* Transitions */
  --transition-base: 0.3s ease;
}

/* ============================================================
   CSS Reset / Base Styles
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   Overflow guard — prevent horizontal scroll at any width
   ============================================================ */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ============================================================
   Utility
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background-color: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

/* ============================================================
   Navigation Bar
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.5s ease, box-shadow 0.5s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background-color: var(--color-primary);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.nav-links a.active {
  color: var(--color-secondary);
}

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ============================================================
   Mobile Navigation (≤ 768 px)
   ============================================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    padding: 0.5rem 0 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}

/* ============================================================
   Hero Section — Ishara-style slideshow with zoom-out + flip text
   ============================================================ */
#home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

/* Slideshow layers */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s ease;
  will-change: transform, opacity;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1); /* zoom-out Ken Burns */
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

/* Bottom-left content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3.5rem 4rem;
  max-width: 700px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-btn {
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero-btn:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: none;
}

/* Bottom-right: flipping text */
.hero-flip-wrap {
  position: absolute;
  bottom: 4rem;
  right: 3.5rem;
  z-index: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.hero-flip-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-flip-track {
  position: relative;
  height: 1.6em;
  overflow: hidden;
  min-width: 220px;
}

.hero-flip-word {
  position: absolute;
  right: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.hero-flip-word.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-flip-word.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, width 0.3s ease;
}

.hero-dot.active {
  background-color: #fff;
  width: 44px;
}

/* Mobile */
@media (max-width: 768px) {
  #home {
    background-attachment: scroll;
  }

  .hero-content {
    padding: 0 1.5rem 5rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-flip-wrap {
    right: 1.5rem;
    bottom: 5rem;
  }

  .hero-flip-track {
    min-width: 160px;
  }

  .hero-flip-word {
    font-size: 0.9rem;
  }
}

/* ============================================================
   Section Base
   ============================================================ */
.section {
  padding: var(--section-padding);
}

/* ============================================================
   About Section
   ============================================================ */
#about {
  background-color: var(--color-light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--color-dark);
  line-height: 1.75;
}

.about-text .btn {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    flex: none;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .about-text .section-title {
    text-align: center;
  }
}

/* ============================================================
   Mission & Vision Section
   ============================================================ */
#mission {
  background-color: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.mission-card {
  background-color: var(--color-light);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 4px solid var(--color-secondary);
}

.mission-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.mission-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.mission-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-dark);
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Services Section — Core Atelier-inspired list layout
   ============================================================ */
#services {
  background-color: #fff;
}

.services-header {
  margin-bottom: 1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 2rem;
  align-items: start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(92, 74, 30, 0.15);
  cursor: default;
  transition: background-color 0.3s ease;
}

.service-item:first-child {
  border-top: 1px solid rgba(92, 74, 30, 0.15);
}

.service-item:hover {
  background-color: var(--color-light);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  border-radius: 4px;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  padding-top: 0.3rem;
  opacity: 0.7;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-body-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1.3;
}

.service-icon-inline {
  font-size: 1.25rem;
  color: var(--color-secondary);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item:hover .service-icon-inline {
  opacity: 1;
  transform: translateX(4px);
}

.service-desc {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #666;
  max-width: 680px;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 40px 1fr;
    gap: 0 1rem;
    padding: 1.75rem 0;
  }

  .service-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
  }

  .service-number {
    font-size: 0.8rem;
  }
}

/* ============================================================
   Destinations Section
   ============================================================ */
#destinations {
  background-color: #fff;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.destination-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.destination-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.destination-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .destination-img-wrap img {
  transform: scale(1.05);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-overlay-name {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}

.destination-overlay-cta {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--color-secondary);
  padding: 0.3rem 0.9rem;
  border-radius: 3px;
}

.destination-body {
  padding: 1.25rem 1.5rem;
  background-color: #fff;
}

.destination-country {
  display: inline-block;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.destination-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-dark);
}

.destinations-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--color-secondary);
  font-style: italic;
}

@media (max-width: 768px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Why Choose Us Section
   ============================================================ */
#why-us {
  background-color: var(--color-primary);
  color: #fff;
}

#why-us .section-title {
  color: #fff;
}

#why-us .section-subtitle {
  color: var(--color-secondary);
}

.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.why-us-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}

.why-us-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.why-us-icon-circle i {
  font-size: 1.75rem;
  color: #fff;
}

.why-us-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .why-us-grid {
    gap: 2rem;
  }

  .why-us-item {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    gap: 1.5rem;
  }

  .why-us-item {
    max-width: 120px;
  }
}

/* ============================================================
   Values Section
   ============================================================ */
#values {
  background-color: var(--color-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-dark);
}

/* ============================================================
   Contact Section
   ============================================================ */
#contact {
  background-color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.contact-details h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-item span {
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
}

.required {
  color: #c0392b;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  background-color: #fafafa;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(58, 107, 53, 0.15);
}

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #c0392b;
}

.error {
  font-size: 0.82rem;
  color: #c0392b;
  min-height: 1rem;
}

.form-banner {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-banner:not(:empty) {
  display: block;
}

.banner-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.banner-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--color-primary);
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.social-icons a:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================
   480 px breakpoint — small phones
   ============================================================ */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-image {
    max-width: 180px;
  }

  .mission-card {
    padding: 1.75rem 1.25rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .contact-layout {
    gap: 1.5rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #333;
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== Booking CTA Bar ===== */
.booking-cta-section {
  background: var(--color-primary);
  padding: 60px 20px;
  text-align: center;
}
.booking-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 2rem;
}
.booking-cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp-cta {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-whatsapp-cta:hover {
  background: #1ebe5d;
}
.btn-email-cta {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-email-cta:hover {
  background: rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
  .booking-cta-buttons { flex-direction: column; align-items: center; }
}

/* ===== Social Media Placeholder Grid ===== */
.social-section {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}
.social-section .section-title {
  color: #fff;
}
.social-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.social-placeholder-box {
  aspect-ratio: 1;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.social-placeholder-box i {
  font-size: 1.75rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}
.social-placeholder-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139,105,20,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.social-placeholder-box:hover::after { opacity: 1; }
.social-placeholder-box:hover i { color: rgba(255,255,255,0.8); }
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.social-links a:hover { background: var(--color-secondary); }
@media (max-width: 768px) {
  .social-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Services Section Redesign ===== */
.services-new {
  background: #1a3a6b;
}
.services-new .section-title {
  color: #fff;
}
.services-new .section-subtitle {
  color: rgba(255,255,255,0.75);
}
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card-new {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, border 0.3s;
  border: 2px solid transparent;
}
.service-card-new:hover {
  background: #f0f4ff;
  border-color: #8B6914;
}
.service-card-icon {
  margin-bottom: 1rem;
}
.service-card-icon i {
  font-size: 2.25rem;
  color: #8B6914;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.service-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 1.25rem;
}
.btn-service-cta {
  background: var(--color-secondary);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}
.btn-service-cta:hover {
  background: var(--color-accent);
}
@media (max-width: 768px) {
  .services-card-grid { grid-template-columns: 1fr; }
}

/* ===== Destination Modal ===== */
.dest-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-modal[hidden] { display: none; }
.dest-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.dest-modal-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 760px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}
.dest-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dest-modal-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  display: block;
}
.dest-modal-content-col {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}
.dest-modal-country-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  width: fit-content;
}
.dest-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin: 0;
}
.dest-modal-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.dest-modal-highlights {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-dark);
  line-height: 1.8;
}
.dest-modal-meta {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
}
.dest-modal-meta strong {
  color: var(--color-primary);
}
.dest-modal-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.75rem;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
}
.dest-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
}
.dest-modal-close:hover { background: rgba(0,0,0,0.75); }
@media (max-width: 768px) {
  .dest-modal-inner { grid-template-columns: 1fr; }
  .dest-modal-img-col img { border-radius: 12px 12px 0 0; max-height: 220px; }
  .dest-modal-card { width: 95%; max-height: 95vh; }
}

/* ===== Blog Section (Insider Knowledge) ===== */
.blog-section {
  background: #faf8f3; /* light cream */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-tag {
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-excerpt {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.blog-read-more:hover {
  color: var(--color-accent);
}

/* Mobile: single-column layout */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SociableKit Instagram Feed Wrapper ===== */
.instagram-feed-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.instagram-feed-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 600px;
}

/* Adjust iframe height on mobile */
@media (max-width: 768px) {
  .instagram-feed-wrapper iframe {
    min-height: 800px;
  }
}

/* ===== Instagram Feed Enhancements ===== */
.instagram-post {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10;
}

.instagram-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}

.instagram-post:hover::before {
  background: rgba(0,0,0,0.2);
}

.instagram-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #1a1a1a;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}
