/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
a { text-decoration: none; color: inherit; }
.wrap { max-width: 1200px; margin: auto; }

/* Legacy header (Round Tours overview — not main site .header) */
header:not(.header) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #004d40;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header:not(.header) .logo { font-weight: bold; font-size: 1.2rem; }
header:not(.header) nav {
  display: flex;
  gap: 20px;
}
header:not(.header) nav a {
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}
header:not(.header) nav a:hover,
header:not(.header) nav a.active { background: rgba(255,255,255,0.2); }
header:not(.header) .menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #e0f2f1;
  padding: 30px 20px;
}
.hero-card {
  flex: 1 1 400px;
  padding: 20px;
}
.hero-card h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero-card p { margin-bottom: 15px; }
.hero-image {
  flex: 1 1 400px;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

/* Sections */
.section {
  padding: 50px 20px;
  text-align: center;
}
.section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #004d40;
}

/* Cards */
.card, .contact-card {
  background: #fff;
  padding: 20px;
  margin: 15px auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 800px;
  text-align: left;
}
.card h3 { margin-bottom: 10px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: bold;
}
.btn-primary {
  background: #00796b;
  color: #fff;
}
.btn-primary:hover {
  background: #004d40;
  color: #fff;
}

/* Footer (stylez overview pages e.g. Round Tours — not main .footer) */
footer:not(.footer) {
  text-align: center;
  padding: 0;
  background: #004d40;
  color: #fff;
  margin-top: 40px;
}
footer:not(.footer) .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
}
.footer-dev-credit {
  margin: 0;
  font-size: 0.85rem;
}
.footer-dev-credit a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}
.footer-dev-credit a:hover { color: #fff; }
.footer-dev-credit .fa-code { color: #7dd3fc; }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Responsive — legacy header + hero */
@media (max-width: 768px) {
  header:not(.header) nav {
    display: none;
    flex-direction: column;
    background: #004d40;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px 0;
  }
  header:not(.header) nav.open { display: flex; }
  header:not(.header) nav a { padding: 10px; }
  header:not(.header) .menu-toggle { display: block; }
  .hero { flex-direction: column; }
  .hero-card, .hero-image { flex: 1 1 100%; }
}
/* WhatsApp Chat Widget */
.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Floating button */
.chat-button {
  background: #25D366;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chat-button:hover {
  transform: scale(1.1);
}

/* Chat Box */
.chat-box {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease forwards;
}

/* Chat Header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a1a2f;
  color: #FFD700;
  padding: 10px 15px;
}

.chat-header img.chat-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chat-header h4 {
  font-size: 15px;
  margin: 0;
}

.chat-header p {
  font-size: 11px;
  color: #ddd;
  margin: 0;
}

.chat-header .close-chat {
  margin-left: auto;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

/* Chat Body */
.chat-body {
  padding: 15px;
  text-align: center;
  background: #f9f9f9;
}

.chat-body p {
  color: #333;
  margin-bottom: 15px;
}

.chat-start-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s;
}

.chat-start-btn:hover {
  background: #1ebe5d;
}

/* Animation */
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .chat-box {
    width: 260px;
  }
}

/* ── Cultural tours theme (warm heritage — different from round-tours teal) ── */
body.theme-cultural .section h2 {
  color: #5c3d2e;
}
body.theme-cultural .hero {
  background: #faf3e8;
}
body.theme-cultural .cultural-hero-band .btn-primary,
body.theme-cultural .cultural-page .btn-primary {
  background: #b45309;
}
body.theme-cultural .cultural-hero-band .btn-primary:hover,
body.theme-cultural .cultural-page .btn-primary:hover {
  background: #92400e;
  color: #fff;
}
body.theme-cultural .cultural-hero-band .btn-secondary,
body.theme-cultural .cultural-page .btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  margin-left: 8px;
  margin-top: 8px;
  border-radius: 6px;
  font-weight: bold;
  background: #fff;
  color: #5c3d2e;
  border: 2px solid #5c3d2e;
}
body.theme-cultural .cultural-hero-band .btn-secondary:hover,
body.theme-cultural .cultural-page .btn-secondary:hover {
  background: #5c3d2e;
  color: #fff;
}
body.theme-cultural .section-lead {
  max-width: 640px;
  margin: -10px auto 24px;
  color: #666;
  font-size: 1rem;
}
body.theme-cultural .itinerary-day h3 {
  color: #5c3d2e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
body.theme-cultural .itinerary-day h3 i {
  margin-right: 8px;
  color: #b45309;
}
body.theme-cultural .itinerary-day ul {
  margin-left: 1.25rem;
  color: #444;
}
body.theme-cultural .heritage-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
body.theme-cultural .heritage-list li {
  margin-bottom: 0.6rem;
  color: #444;
}
body.theme-cultural .heritage-list i {
  color: #b45309;
  width: 22px;
  margin-right: 8px;
}
body.theme-cultural .heritage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
body.theme-cultural .heritage-tile {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
body.theme-cultural .heritage-tile img {
  width: 100%;
  height: clamp(140px, 22vw, 200px);
  object-fit: cover;
  object-position: center;
  display: block;
  background: #e8d5c4;
}
body.theme-cultural .heritage-tile h3 {
  padding: 12px 14px 4px;
  font-size: 1.05rem;
  color: #5c3d2e;
}
body.theme-cultural .heritage-tile p {
  padding: 0 14px 14px;
  font-size: 0.9rem;
  color: #666;
}
body.theme-cultural .package-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
body.theme-cultural .package-link-card {
  display: block;
  background: #fff;
  border: 2px solid #e8d5c4;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
body.theme-cultural .package-link-card strong {
  display: block;
  font-size: 1.2rem;
  color: #5c3d2e;
  margin-bottom: 6px;
}
body.theme-cultural .package-link-card span {
  font-size: 0.88rem;
  color: #666;
}
body.theme-cultural .package-link-card:hover {
  border-color: #b45309;
  transform: translateY(-4px);
}
body.theme-cultural .package-link-card--featured {
  border-color: #b45309;
  background: #fffbf5;
}
@media (max-width: 640px) {
  body.theme-cultural .package-links {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  body.theme-cultural .cultural-page .btn-secondary {
    margin-left: 0;
    display: inline-block;
  }
}

/* Quote + SEO blocks on stylez overview pages */
body.theme-cultural .seo-content.section {
  background: #f5f0eb;
  text-align: left;
  padding: 0;
}
body.theme-cultural .seo-content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
body.theme-cultural .seo-content-inner h2 {
  font-size: 1.5rem;
  color: #5c3d2e;
  margin: 2rem 0 1rem;
  text-align: left;
}
body.theme-cultural .seo-content-inner h2:first-child { margin-top: 0; }
body.theme-cultural .seo-content-inner h3 {
  font-size: 1.15rem;
  color: #6b4423;
  margin: 1.25rem 0 0.5rem;
  text-align: left;
}
body.theme-cultural .seo-content-inner p,
body.theme-cultural .seo-content-inner li {
  color: #555;
  line-height: 1.75;
  text-align: left;
}
body.theme-cultural .seo-faq {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8d5c4;
}
body.theme-cultural .seo-faq-item {
  background: #fff;
  border: 1px solid #e8d5c4;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 0 14px;
  text-align: left;
}
body.theme-cultural .seo-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.theme-cultural .quote-section {
  background: #fff;
  text-align: center;
  padding: 50px 20px;
}
body.theme-cultural .quote-section .container {
  max-width: 640px;
  margin: 0 auto;
}
body.theme-cultural .quote-section .section-title {
  font-size: 1.75rem;
  color: #5c3d2e;
  margin-bottom: 0.5rem;
}
body.theme-cultural .quote-section .section-sub {
  color: #666;
  margin-bottom: 1.5rem;
}
body.theme-cultural .quote-form label {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #333;
}
body.theme-cultural .quote-form input,
body.theme-cultural .quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font: inherit;
}
body.theme-cultural .quote-form .grid {
  display: grid;
  gap: 0;
}
body.theme-cultural .alert-success {
  background: #ecfdf5;
  color: #065f46;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
body.theme-cultural .alert-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: left;
}
body.theme-cultural .form-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
}

/* ── Cultural tours: layout fixes (override style.css .hero) + responsive ── */
body.theme-cultural {
  overflow-x: clip;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body.theme-cultural .container.cultural-page {
  width: min(1100px, 92%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

body.theme-cultural .cultural-hero-band {
  width: 100%;
  background: #faf3e8;
  padding: 0;
  margin: 0;
}

body.theme-cultural .cultural-hero-band .container {
  width: min(1100px, 92%);
  margin-left: auto;
  margin-right: auto;
}

/* Inner hero: original text + image size; background stays full-width on .cultural-hero-band */
body.theme-cultural .cultural-hero-band .hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  background: transparent;
  padding: 30px 20px;
}

body.theme-cultural .cultural-hero-band .hero-card {
  flex: 1 1 400px;
  min-width: 0;
  max-width: 100%;
  padding: 20px;
  text-align: left;
}

body.theme-cultural .cultural-hero-band .hero-card h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

body.theme-cultural .cultural-hero-band .hero-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

body.theme-cultural .cultural-hero-band .hero-image {
  flex: 1 1 400px;
  min-width: 0;
  width: auto;
  min-height: 250px;
  border-radius: 10px;
}

body.theme-cultural .cultural-hero-band .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

body.theme-cultural .cultural-hero-band .hero-actions .btn {
  margin-top: 0;
  text-align: center;
}

body.theme-cultural .cultural-page #itinerary {
  scroll-margin-top: 96px;
}

body.theme-cultural .cultural-page .section {
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  text-align: center;
}

body.theme-cultural .cultural-page .section + .section {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

body.theme-cultural .cultural-page #itinerary .itinerary-day:last-child {
  margin-bottom: 0;
}

body.theme-cultural .cultural-page .section h2 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  padding: 0 0.25rem;
}

body.theme-cultural .cultural-page .card {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1rem, 3vw, 1.35rem);
}

body.theme-cultural .cultural-page .card h3 {
  color: #5c3d2e;
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
}

body.theme-cultural .cultural-page .card h3:first-child {
  margin-top: 0;
}

body.theme-cultural .cultural-page .card ul {
  color: #444;
  margin-left: 1.25rem;
}

body.theme-cultural .cultural-page .itinerary-day h3 {
  font-size: clamp(1rem, 3.2vw, 1.1rem);
  line-height: 1.35;
  text-align: left;
}

body.theme-cultural .cultural-page .itinerary-day ul {
  padding-right: 0.5rem;
}

body.theme-cultural .cultural-page .heritage-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(0.85rem, 2.5vw, 1.25rem);
  padding: 0;
}

body.theme-cultural .cultural-page .package-links {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  max-width: 900px;
}

body.theme-cultural .cultural-page .cultural-cta-wrap {
  margin-top: 1.5rem;
  padding: 0 0.25rem;
}

body.theme-cultural .cultural-page .cultural-cta-wrap .btn {
  display: inline-block;
  max-width: 100%;
}

body.theme-cultural .seo-content.section {
  width: 100%;
  max-width: none;
}

body.theme-cultural .seo-content-inner {
  width: min(820px, 100%);
  padding-left: clamp(1rem, 4vw, 1.5rem);
  padding-right: clamp(1rem, 4vw, 1.5rem);
}

body.theme-cultural .seo-faq-item summary {
  gap: 0.75rem;
  font-size: clamp(0.9rem, 2.8vw, 1rem);
}

body.theme-cultural .seo-faq-q {
  text-align: left;
  line-height: 1.4;
}

@media (max-width: 768px) {
  body.theme-cultural .cultural-hero-band .hero {
    flex-direction: column;
    padding: 30px 16px;
  }

  body.theme-cultural .cultural-hero-band .hero-card,
  body.theme-cultural .cultural-hero-band .hero-image {
    flex: 1 1 100%;
    width: 100%;
  }

  body.theme-cultural .cultural-hero-band .hero-card {
    padding: 20px 0;
  }
}

@media (max-width: 599px) {
  body.theme-cultural .cultural-hero-band .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.theme-cultural .cultural-hero-band .hero-actions .btn,
  body.theme-cultural .cultural-page .cultural-cta-wrap .btn {
    width: 100%;
    box-sizing: border-box;
  }

  body.theme-cultural .cultural-page .btn-secondary {
    margin-left: 0;
  }

  body.theme-cultural .cultural-page .package-links {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  body.theme-cultural .cultural-page .heritage-grid {
    grid-template-columns: 1fr;
  }

  body.theme-cultural .cultural-page .section {
    text-align: left;
  }

  body.theme-cultural .cultural-page .section h2 {
    text-align: center;
  }

  body.theme-cultural .cultural-page .section-lead {
    text-align: center;
  }
}

@media (max-width: 380px) {
  body.theme-cultural .container.cultural-page {
    width: min(1100px, 94%);
  }
}

/* Prevent style.css home-hero rules from clipping cultural layout */
body.theme-cultural .cultural-hero-band .hero img,
body.theme-cultural .cultural-hero-band .hero video {
  position: static;
  width: auto;
  height: auto;
  filter: none;
}

