/* Unimed Overseas — Premium Professional Light Theme (Stitch inspired) */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --primary: #0a5c70;
  --primary-hover: #074757;
  --primary-light: rgba(10, 92, 112, 0.08);
  --secondary: #0d9488;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --cta-gold: #d97706;
  --cta-gold-hover: #b45309;
  --cta-emerald: #059669;
  --cta-emerald-hover: #047857;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 3px rgba(10, 92, 112, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(10, 92, 112, 0.08), 0 8px 10px -6px rgba(10, 92, 112, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(10, 92, 112, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  
  --header-h: 76px;
  --font-family: "Plus Jakarta Sans", "DM Sans", system-ui, -apple-system, sans-serif;
  color-scheme: light only;
}

/* Premium Global Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 10px;
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

/* Base interactive elements lock on modal open */
body.modal-locked {
  overflow: hidden;
  pointer-events: none;
}

body.modal-locked .welcome-overlay,
body.modal-locked .site-header {
  pointer-events: auto;
}

body.has-welcome-pending .site-main,
body.has-welcome-pending .site-main-home,
body.has-welcome-pending .site-footer,
body.has-welcome-pending .floating-whatsapp {
  pointer-events: none;
  user-select: none;
  filter: blur(4px);
  transition: filter 0.3s ease;
}

a.text-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

a.text-link:hover {
  color: var(--cta-gold);
}

/* Glassmorphism Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 210; /* Placed above the welcome modal overlay (z-index: 200) to ensure navigation is always accessible */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}

.site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

/* Active Nav Link Highlighting */
.site-nav a.active {
  color: var(--cta-gold) !important;
  border-bottom: 2px solid var(--cta-gold);
  padding-bottom: calc(0.5rem - 2px);
}

.site-nav a:hover,
.nav-dropdown-trigger:hover {
  color: var(--cta-gold);
}

.nav-dropdown {
  position: relative;
}

/* Chevron Arrow Smooth Rotate */
.chevron {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown.open .chevron {
  transform: rotate(180deg);
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 280px;
  max-height: 75vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.50rem;
  padding: 0.65rem 1.25rem;
  color: var(--text);
  font-weight: 550;
  font-size: 0.95rem;
  border-radius: 6px;
  margin: 0 0.5rem;
}

.nav-dropdown-menu a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border: none;
  border-radius: 8px;
  padding: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

/* Hamburger to Close Icon Transformation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.25s, opacity 0.25s;
}

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 92, 112, 0.15);
}

.btn:active {
  transform: translateY(-0.5px) scale(0.98);
}

.btn-cta {
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.btn-gold {
  background: linear-gradient(135deg, var(--cta-gold) 0%, #e08c00 50%, var(--cta-gold-hover) 100%);
  background-size: 200% auto;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
  transition: background-position 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
}

.btn-emerald {
  background: linear-gradient(135deg, var(--cta-emerald) 0%, #05a875 50%, var(--cta-emerald-hover) 100%);
  background-size: 200% auto;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
  transition: background-position 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-emerald:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.4);
}

.btn-nav-cta {
  background: var(--primary);
  color: #ffffff !important;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  margin-top: 0.75rem;
}

/* Main Layout: Inner Content Box */
.site-main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  box-shadow: var(--shadow-md);
}

.content-panel h1 {
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.content-panel h2 {
  color: var(--primary);
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.content-panel h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 650;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-panel p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-panel ul, 
.content-panel ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-panel li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.content-panel hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.content-panel blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: var(--bg);
  border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
}

.content-panel blockquote p {
  margin: 0;
  color: var(--primary);
  font-weight: 500;
}

/* Grids and Flexbox Utilities */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ---------------------------------------------------- */
/* Homepage Specific Layout (site-main-home) */
/* ---------------------------------------------------- */
.site-main-home {
  width: 100%;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--primary);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, rgba(10, 92, 112, 0.04) 0%, rgba(248, 250, 252, 0) 100%);
  padding: 4.5rem 1.5rem 5rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--primary);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  color: var(--cta-gold);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  background: var(--surface);
  padding: 3.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

/* Destinations Section */
.destinations-grid-container {
  background: var(--bg);
}

.destination-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 92, 112, 0.2);
}

.dest-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--primary-light);
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .dest-img-wrap img {
  transform: scale(1.06);
}

.dest-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(10, 92, 112, 0.9);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dest-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.dest-flag {
  font-size: 1.35rem;
  line-height: 1;
}

.dest-title {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 750;
  margin: 0;
}

.dest-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex: 1;
}

.dest-details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.dest-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dest-price strong {
  display: block;
  font-size: 1.05rem;
  color: var(--cta-gold);
}

.btn-card-link {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.destination-card:hover .btn-card-link {
  background: var(--primary);
  color: #ffffff;
}

/* Features/Why Choose Us Section */
.why-choose-us-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.feature-icon-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-text h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* Bottom CTA Banner */
.cta-banner-section {
  background: var(--bg);
}

.cta-banner-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-banner-desc {
  font-size: 1.1rem;
  margin: 0 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Tables — clean, modern, and readable */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.content-panel table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.content-panel thead {
  background: var(--primary-light);
  border-bottom: 2px solid var(--border);
}

.content-panel th {
  padding: 1rem 1.25rem;
  text-align: left;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.content-panel td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.content-panel tr:last-child td {
  border-bottom: none;
}

.content-panel tbody tr:nth-child(even) {
  background: rgba(248, 250, 252, 0.5);
}

.content-panel tbody tr:hover td {
  background: var(--primary-light);
}

/* Footer Styling */
.site-footer {
  background: #083c4a;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  padding: 4rem 1.5rem 3rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0.75rem 0;
  font-size: 0.95rem;
}

.footer-inner strong {
  color: #ffffff;
  font-size: 1.15rem;
}

.footer-inner .btn-cta {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  margin-top: 2.5rem !important;
  font-size: 0.85rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copy a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  color: var(--cta-gold);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cta-emerald);
  color: #ffffff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--cta-emerald-hover);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.5);
}

/* Welcome overlay - Frosted glass dialog */
.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000; /* Placed above sticky header (z-index: 210) to avoid z-layer clipping and overlapping */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.welcome-overlay[hidden] {
  display: none !important;
}

.welcome-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 60, 74, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.35s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.welcome-card {
  position: relative;
  z-index: 1;
  width: min(580px, 100%);
  max-height: min(90vh, 760px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.25rem 2.25rem 2rem;
  animation: modalShow 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalShow {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.welcome-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.welcome-close:hover {
  color: var(--primary);
  background: var(--primary-light);
  border-color: var(--primary);
}

#welcome-dialog-title {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 2rem 0.5rem 0;
  line-height: 1.3;
}

.welcome-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.enquiry-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  background: transparent;
}

.enquiry-form legend {
  display: block;
  width: 100%;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0 0.5rem 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.field {
  display: block;
  margin-bottom: 1rem;
}

.field > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.field input,
.field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #ffffff;
  transition: all 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 92, 112, 0.15);
}

.phone-row {
  display: flex;
  gap: 0.5rem;
}

.country-code-select {
  flex: 0 0 145px;
  min-width: 125px;
}

.phone-row input {
  flex: 1;
  min-width: 0;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.55rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  background: #ffffff;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.checkbox-label:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Modern Checkbox Focus State */
.checkbox-label:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.checkbox-label input {
  margin: 0;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* ---------------------------------------------------- */
/* Responsive styles for Tablet and Mobile devices */
/* ---------------------------------------------------- */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-image-wrap {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-badge, 
  .hero-ctas {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .why-choose-us-section .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 1.25rem 1.5rem 2rem;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
    
    /* Secure mobile viewport scroll capacity */
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .site-nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.5rem 0;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    max-height: none;
    display: none;
    padding: 0.5rem 0 0 1rem;
    background: var(--bg);
    margin-top: 0.25rem;
  }

  .nav-dropdown-menu a {
    margin: 0;
    padding: 0.5rem 1rem;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  /* Dynamic sidebar highlight adjustment on mobile */
  .site-nav a.active {
    border-bottom: none;
    border-left: 3px solid var(--cta-gold);
    padding-left: 0.75rem;
  }

  .content-panel {
    padding: 2.25rem 2rem;
  }
}

@media (max-width: 600px) {
  .section-container {
    padding: 3.5rem 1.25rem;
  }

  .hero-section {
    padding: 3rem 1.25rem 4rem;
  }

  .content-panel {
    padding: 1.75rem 1.25rem;
  }

  .cta-banner-card {
    padding: 3rem 1.5rem;
  }

  .welcome-card {
    padding: 1.75rem 1.25rem;
  }
  
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  /* Compact 2x2 stats display on mobile */
  .stats-inner .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .country-code-select {
    flex: 0 0 115px;
    font-size: 0.85rem;
  }

  .btn {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .hero-ctas {
    flex-direction: column;
  }
}
