/* Med Red Sea - Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&display=swap');

:root {
  --primary: #FF8C42;
  --primary-dark: #F77F00;
  --secondary: #2EC4B6;
  --secondary-light: #0EA5E9;
  --accent: #FFD166;
  --coral: #FF6B6B;
  --teal: #2EC4B6;
  --navy: #1a3a5c;
  --logo-red: #E63946;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #fff;
  --bg-light: #FFF8F0;
  --bg-happy: linear-gradient(180deg, #FFFDF7 0%, #FFF0E6 100%);
  --bg-dark: #1a2a3a;
  --border: #e8e8e8;
  --shadow: 0 4px 15px rgba(255,140,66,0.12);
  --shadow-lg: 0 8px 30px rgba(46,196,182,0.18);
  --radius: 12px;
  --transition: 0.3s ease;
  --header-top-height: 72px;
  --nav-height: 52px;
  --header-height: calc(var(--header-top-height) + var(--nav-height));
  --font: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --happy-gradient: linear-gradient(90deg, #FFD166 0%, #FF8C42 35%, #2EC4B6 70%, #0EA5E9 100%);
  --btn-gradient: linear-gradient(135deg, #FF8C42, #FF6B6B);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: var(--bg-happy);
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Banner - joyful colors */
.top-banner {
  background: var(--happy-gradient);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  letter-spacing: 0.3px;
}
.top-banner a { color: #fff; text-decoration: none; }
.top-banner a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(46,196,182,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-top-height);
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  text-decoration: none;
  gap: 2px;
}
.logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: 'Arial Black', 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 3px;
  line-height: 1;
}
.logo-wordmark--footer { font-size: 1.2rem; margin-bottom: 12px; }
.logo-med {
  color: var(--navy);
  text-shadow: 1px 1px 0 rgba(26,58,92,0.15);
}
.logo-red {
  color: var(--logo-red);
  text-shadow: 1px 1px 0 rgba(230,57,70,0.2);
}
.logo-sea {
  color: var(--teal);
  text-shadow: 1px 1px 0 rgba(46,196,182,0.2);
}
.logo-waves {
  width: 140px;
  height: 8px;
  margin-top: 2px;
}
.logo-img { height: 52px; width: auto; max-width: 200px; object-fit: contain; }
.footer-logo {
  height: 60px;
  width: auto;
  max-width: 220px;
  margin-bottom: 15px;
  object-fit: contain;
}
.footer-brand .footer-contact {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.footer-brand .footer-contact a { color: #ccc; }
.footer-brand .footer-contact a:hover { color: var(--teal); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #E8F8F5, #FFF8E7);
  border: 2px solid var(--secondary);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--transition);
}
.lang-btn:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}
.lang-globe { font-size: 1.1rem; }
.lang-chevron { font-size: 0.7rem; opacity: 0.7; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 2000;
  overflow: hidden;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.lang-menu li:hover {
  background: linear-gradient(90deg, #FFF0E6, #E8F8F5);
  color: var(--secondary);
}
.gt-hidden {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(37,211,102,0.35);
}
.whatsapp-btn:hover { background: linear-gradient(135deg, #1da851, #0d7a6e); color: #fff; transform: translateY(-1px); }

/* Navigation Bar */
.nav-bar {
  background: linear-gradient(180deg, #fff 0%, #F0FAF9 100%);
  border-top: 1px solid rgba(46,196,182,0.2);
  border-bottom: 3px solid transparent;
  border-image: var(--happy-gradient) 1;
}
.nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  min-height: var(--nav-height);
}
.nav-pills::-webkit-scrollbar { display: none; }
.nav-pills li { flex-shrink: 0; }
.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 25px;
  transition: all var(--transition);
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.nav-link:hover {
  background: linear-gradient(135deg, rgba(255,209,102,0.35), rgba(255,140,66,0.25));
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.nav-link.active {
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,140,66,0.4);
}
.nav-link.nav-medical {
  color: #1565C0;
  border: 2px solid transparent;
}
.nav-link.nav-medical:hover {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  color: #0D47A1;
}
.nav-link.nav-medical.active {
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  color: #fff;
  box-shadow: 0 4px 14px rgba(21,101,192,0.4);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 580px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,0.55), rgba(255,140,66,0.35), rgba(46,196,182,0.4));
  z-index: 1;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}
.hero-slide .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  animation: fadeUp 0.8s ease;
}
.hero-slide .hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-slide .hero-buttons { animation: fadeUp 0.8s ease 0.4s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-nav {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 10;
  pointer-events: none;
}
.hero-arrow {
  pointer-events: all;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  line-height: 1;
}
.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active, .hero-dot:hover {
  background: #fff;
  transform: scale(1.2);
}

/* Legacy hero fallback */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26,82,118,0.85), rgba(196,30,58,0.75)),
    url('../img/placeholder.svg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.hero-content { width: 100%; padding: 60px 20px; }
.hero h1 { font-size: 2.8rem; margin-bottom: 15px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255,140,66,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F77F00, #E63946);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--primary-dark); }
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  box-shadow: 0 4px 15px rgba(46,196,182,0.35);
}
.btn-secondary:hover { background: linear-gradient(135deg, #25B5A8, #0284C7); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 15px 40px; font-size: 1.1rem; }

/* Sections */
.section { padding: 60px 0; }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 2rem;
  background: var(--happy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.section-alt { background: rgba(255,248,240,0.7); }
.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--accent);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--secondary);
}
.section-title p { color: var(--text-light); max-width: 700px; margin: 0 auto; }

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.5rem; margin-bottom: 15px; }
.feature-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }

/* Tour Cards */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tour-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tour-card-img {
  height: 200px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tour-card-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--btn-gradient);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}
.tour-card-body { padding: 20px; }
.tour-card-body h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 10px; line-height: 1.4; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 15px; font-size: 0.85rem; color: var(--text-light); }
.tour-meta span { display: flex; align-items: center; gap: 4px; }

/* Category Page */
.page-header {
  background: var(--happy-gradient);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.page-header h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-header p { font-size: 1.1rem; opacity: 0.9; max-width: 800px; margin: 0 auto; }

.category-intro { padding: 40px 0; }
.category-intro p { margin-bottom: 15px; color: var(--text-light); line-height: 1.8; }

/* Tours Table */
.tours-table-wrapper { overflow-x: auto; margin: 30px 0; }
.tours-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.tours-table th {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.tours-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.tours-table tr:hover { background: var(--bg-light); }
.tours-table .price { color: var(--primary); font-weight: 700; }

/* Subcategories */
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}
.subcategory-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  border-left: 4px solid var(--secondary);
}
.subcategory-card:hover { transform: translateX(5px); box-shadow: var(--shadow-lg); border-left-color: var(--primary); }
.subcategory-card h3 { color: var(--navy); font-size: 1rem; }

/* Tour Detail Page */
.tour-hero {
  background: var(--bg-light);
  padding: 30px 0;
}
.tour-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.tour-gallery { position: relative; }
.tour-main-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}
.tour-main-image img { width: 100%; height: 100%; object-fit: cover; }
.tour-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
}
.tour-thumbnails img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.tour-thumbnails img.active, .tour-thumbnails img:hover { border-color: var(--primary); }

.tour-info h1 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 15px; line-height: 1.3; }
.tour-price-tag {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
}
.tour-price-tag span { font-size: 0.9rem; color: var(--text-light); font-weight: 400; }
.tour-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 25px; }

.tour-details-table {
  width: 100%;
  margin-bottom: 20px;
}
.tour-details-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.tour-details-table td:first-child { font-weight: 600; color: var(--secondary); width: 40%; }

/* Tour Content Sections */
.tour-section { padding: 40px 0; border-bottom: 1px solid var(--border); }
.tour-section h2 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.tour-section h3 { font-size: 1.2rem; color: var(--secondary); margin: 20px 0 10px; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.highlight-group {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius);
}
.highlight-group h3 { margin-top: 0; }
.highlight-group ul { padding-left: 0; }
.highlight-group li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.highlight-group li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.inclusions-list li, .exclusions-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}
.inclusions-list li::before { content: "✓"; position: absolute; left: 0; color: green; font-weight: bold; }
.exclusions-list li::before { content: "✗"; position: absolute; left: 0; color: var(--primary); font-weight: bold; }

/* Itinerary */
.itinerary-day {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 15px;
  overflow: hidden;
}
.itinerary-header {
  background: var(--secondary);
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.itinerary-header h3 { margin: 0; font-size: 1.1rem; }
.itinerary-body { padding: 20px; display: none; }
.itinerary-day.open .itinerary-body { display: block; }
.itinerary-meta { display: flex; gap: 20px; margin-top: 10px; font-size: 0.9rem; color: var(--text-light); }

/* Price Tables */
.price-tiers { margin-top: 20px; }
.price-tier {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}
.price-tier-header {
  background: var(--secondary);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-tier-header h3 { margin: 0; font-size: 1.1rem; }
.tier-badge {
  background: var(--accent);
  color: #333;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.price-period { padding: 15px 20px; border-bottom: 1px solid var(--border); }
.price-period h4 { color: var(--secondary); margin-bottom: 10px; font-size: 1rem; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.price-item {
  background: var(--bg-light);
  padding: 10px 15px;
  border-radius: var(--radius);
  text-align: center;
}
.price-item .label { font-size: 0.85rem; color: var(--text-light); }
.price-item .amount { font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.tier-hotels { padding: 10px 20px; font-size: 0.9rem; color: var(--text-light); font-style: italic; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-stars { color: var(--accent); font-size: 1.2rem; margin-bottom: 10px; }
.review-card blockquote { font-style: italic; color: var(--text-light); margin-bottom: 15px; line-height: 1.7; }
.review-author { font-weight: 600; color: var(--secondary); }
.review-meta { font-size: 0.85rem; color: var(--text-light); margin-top: 5px; }

/* FAQ */
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer { padding: 0 20px 15px; color: var(--text-light); display: none; }
.faq-item.open .faq-answer { display: block; }

/* Inquiry Form */
.inquiry-section {
  background: var(--happy-gradient);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.inquiry-form {
  max-width: 600px;
  margin: 30px auto 0;
  display: grid;
  gap: 15px;
}
.inquiry-form input, .inquiry-form textarea, .inquiry-form select {
  padding: 12px 15px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
}
.inquiry-form textarea { min-height: 120px; resize: vertical; }

/* Book With Confidence */
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

/* Articles */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.article-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-card-body { padding: 20px; }
.article-card h3 { color: var(--secondary); margin-bottom: 8px; font-size: 1.1rem; }
.article-date { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; }

/* Static Page */
.static-content { padding: 40px 0; }
.static-content h2 { color: var(--secondary); margin: 25px 0 15px; }
.static-content p { margin-bottom: 15px; color: var(--text-light); line-height: 1.8; }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #ccc;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #ccc; font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-about { margin-bottom: 20px; line-height: 1.7; font-size: 0.9rem; }
.footer-tagline { color: var(--accent); font-weight: 600; font-size: 1.1rem; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* Google Translate - hidden, custom switcher used */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* Medical Care Theme - Blue & White */
.theme-medical .top-banner {
  background: linear-gradient(90deg, #1565C0, #42A5F5, #90CAF9);
}
.theme-medical .nav-bar {
  background: linear-gradient(180deg, #fff 0%, #E3F2FD 100%);
  border-image: linear-gradient(90deg, #1565C0, #42A5F5) 1;
}
.theme-medical .page-header,
.theme-medical .page-shell .page-header {
  background: linear-gradient(135deg, #1565C0, #42A5F5) !important;
}
.theme-medical .inquiry-section {
  background: linear-gradient(135deg, #1565C0, #64B5F6) !important;
}
.theme-medical .btn-primary {
  background: linear-gradient(135deg, #1565C0, #42A5F5);
  box-shadow: 0 4px 15px rgba(21,101,192,0.35);
}
.theme-medical .btn-primary:hover {
  background: linear-gradient(135deg, #0D47A1, #1976D2);
}
.theme-medical .section-title h2 {
  background: linear-gradient(90deg, #1565C0, #42A5F5);
  -webkit-background-clip: text;
  background-clip: text;
}
.theme-medical .tour-card-price,
.theme-medical .price-item .amount {
  color: #1565C0;
}
.theme-medical .tours-table th {
  background: linear-gradient(135deg, #1565C0, #42A5F5);
}
.theme-medical .site-footer {
  background: linear-gradient(180deg, #0D47A1, #1565C0);
}
.theme-medical .feature-card { border-top-color: #42A5F5; }
.theme-medical .subcategory-card { border-left-color: #42A5F5; }

.nav-toggle {
  display: none;
  background: linear-gradient(135deg, #FFF0E6, #E8F8F5);
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
  padding: 6px 10px;
}

/* Video embed */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--secondary); }

/* Related Tours */
.related-tours { padding: 40px 0; background: var(--bg-light); }

/* Sidebar sticky inquiry */
.tour-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.inquiry-box {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.inquiry-box h3 { color: var(--secondary); margin-bottom: 15px; }

/* Responsive */
@media (max-width: 992px) {
  .tour-hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .hero-slider, .hero-slides { min-height: 450px; height: 450px; }
  .hero-slide .hero-content h1 { font-size: 1.6rem; }
  .hero-slide .hero-content p { font-size: 1rem; }
  .hero-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .logo-wordmark { font-size: 1.1rem; letter-spacing: 2px; }
  .logo-waves { width: 110px; }
  .nav-toggle { display: block; }
  .nav-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    border-image: none;
    border-bottom: none;
  }
  .nav-bar.open {
    max-height: 70vh;
    overflow-y: auto;
    border-bottom: 2px solid var(--secondary);
  }
  .nav-pills {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }
  .nav-link {
    text-align: center;
    padding: 12px 16px;
    border-radius: var(--radius);
  }
  .header-actions .whatsapp-btn span { display: none; }
  .lang-btn { padding: 8px 10px; }
  .lang-current { display: none; }
  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 40px 0; }
  .section-title h2 { font-size: 1.6rem; }
  .tour-info h1 { font-size: 1.4rem; }
  .tour-main-image { height: 250px; }
  .page-header h1 { font-size: 1.6rem; }
  .tours-table th, .tours-table td { padding: 10px 8px; font-size: 0.85rem; }
  .header-actions .whatsapp-btn span { display: none; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .tours-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 10px 20px; font-size: 0.85rem; }
}
