@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
  font-family: 'Saldina';
  src: url('https://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD7Q3Q70xT8YL3NXpUbqgKbdb.woff2') format('woff2');
  font-style: italic;
  font-weight: normal;
}

/* Global font family removed - see body selector below */

/* --- CSS VARIABLES & TOKENS --- */
:root {
  /* Brand Palette */
  --primary-yellow: #FFB215;
  --primary-red: #F01D21;
  --primary-blue: #2C529B;
  --bg-color: #FFFFFF;
  --bg-light: #F9FAFB;
  --text-main: #1A1A1A;
  --text-muted: #555555;
  --text-light: #888888;
  --border-color: #EAEAEA;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing Scale (8pt System) */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* UI Accents */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- REUSABLE UTILITIES --- */
.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.section {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.section-dark {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(240, 29, 33, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #d11216;
  box-shadow: 0 6px 20px rgba(240, 29, 33, 0.35);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(44, 82, 155, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background-color: #1f3d75;
  box-shadow: 0 6px 20px rgba(44, 82, 155, 0.35);
}

.btn-outline {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background-color: transparent;
}

.btn-outline:hover {
  border-color: var(--text-main);
  background-color: var(--text-main);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--text-main);
  transform: translateY(-2px);
}

.btn-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-text::after {
  content: '→';
  transition: var(--transition-smooth);
}

.btn-text:hover {
  color: var(--primary-red);
}

.btn-text:hover::after {
  transform: translateX(5px);
}

/* --- STICKY GLOBAL HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #005DAA;
  padding: 10px 32px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  display: flex;
  align-items: left;
  justify-content: flex-start;
  flex-shrink: 0;
}

.header-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-link {
  color: #FFFFFF;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.header-nav-link:hover,
.header-nav-link:focus-visible {
  color: #FFD700;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

.follow-us-label {
  display: none;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.header-social-link svg {
  width: 100px;
  height: 22px;
  fill: #FFFFFF;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.header-social-link:hover svg,
.header-social-link:focus-visible svg {
  fill: #FFD700;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
  }

  .header-nav {
    display: none;
  }

  .header-socials {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
  }
}

/* Page Specific Header Fix (if hero is white or simple banner) */
body.subpage .header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

body.subpage .nav-link {
  color: var(--text-main);
}

body.subpage .logo-text {
  color: var(--primary-blue);
}

body.subpage .social-icon-btn {
  background-color: var(--bg-light);
}

body.subpage .social-icon-btn svg,
body.subpage .search-trigger svg,
body.subpage .mobile-menu-toggle svg {
  fill: var(--text-main);
}

body.subpage .nav-link:hover {
  color: var(--primary-blue);
}

body.subpage .nav-link.active {
  color: var(--primary-blue);
}

/* --- MOBILE DRAWER --- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  padding: 8px;
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
  fill: var(--text-main);
}

.mobile-nav-links {
  list-style: none;
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  padding-bottom: var(--space-2xs);
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.mobile-nav-footer {
  display: none;
}

.mobile-socials {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
  margin-bottom: var(--space-sm);
}

.mobile-socials .social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f0f0f0;
  transition: background-color 0.2s;
}

.mobile-socials .social-icon-btn:hover {
  background-color: #e0e0e0;
}

.mobile-socials .social-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: #222;
}

.mobile-nav-info {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* --- MOCK SEARCH OVERLAY MODAL --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
}

.search-overlay-close svg {
  width: 32px;
  height: 32px;
  fill: var(--text-main);
  transition: var(--transition-smooth);
}

.search-overlay-close:hover svg {
  fill: var(--primary-red);
  transform: rotate(90deg);
}

.search-container {
  width: 100%;
  max-width: 600px;
  padding: 0 var(--space-lg);
  text-align: center;
}

.search-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.search-form {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  border-bottom: 2px solid var(--text-main);
  padding: var(--space-sm) 0;
  font-size: 1.5rem;
  font-family: var(--font-body);
}

.search-submit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.search-submit-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--text-main);
}

/* --- HERO SECTION --- */
.hero-home-split {
  padding-top: calc(var(--header-height) + 80px + var(--space-xl));
  padding-bottom: var(--space-3xl);
  background: linear-gradient(135deg, #F5F7FA 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-home-split::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 82, 155, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-home-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-lg);
  flex-direction: column;
  align-items: center;
}

.hero-home-text {
  max-width: 580px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  color: var(--text-main);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
}

/* Map Widget Styling */
.map-widget-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: visible;
  transition: var(--transition-smooth);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 80%;
  margin: 0px;
  top:20px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  max-width: none;
  border-radius: var(--radius-md);
  overflow: visible;
  margin: 0 auto;
  display: block;
  padding: 0;
}

.map-img {
  width: 100%;
  min-height: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Map Hotspot Pins */
.map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-red);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(240, 29, 33, 0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-pin-pulse {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-red);
  border-radius: 50%;
  opacity: 0;
  animation: pinPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes pinPulse {
  0% {
    transform: scale(0.4);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.map-pin:hover .map-pin-dot {
  transform: scale(1.4);
  background-color: var(--primary-yellow);
  box-shadow: 0 0 12px rgba(255, 178, 21, 0.8);
}

/* Region-specific pin color categories */
.map-pin.pin-central .map-pin-dot {
  background-color: var(--primary-blue);
  box-shadow: 0 0 10px rgba(44, 82, 155, 0.5);
}

.map-pin.pin-central .map-pin-pulse {
  border-color: var(--primary-blue);
}

.map-pin.pin-east .map-pin-dot {
  background-color: var(--primary-yellow);
  box-shadow: 0 0 10px rgba(255, 178, 21, 0.5);
}

.map-pin.pin-east .map-pin-pulse {
  border-color: var(--primary-yellow);
}

/* Hover Tooltips */
.map-pin-tooltip {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--text-main);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 15;
}

.map-pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--text-main) transparent transparent transparent;
}

.map-pin:hover .map-pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Scale-Up Popup Card */
.map-popup-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 92%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.map-popup-card.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.map-popup-header {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.map-popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-popup-close-btn {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  z-index: 2;
  cursor: pointer;
}

.map-popup-close-btn:hover {
  background-color: var(--primary-red);
  transform: scale(1.1);
}

.map-popup-body {
  padding: var(--space-lg);
  text-align: left;
}

.map-popup-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2xs);
}

.map-popup-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--space-xs);
}

.map-popup-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.map-popup-highlights-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: var(--space-2xs);
  letter-spacing: 0.05em;
}

.map-popup-highlights {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  background-color: var(--bg-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-yellow);
  margin-bottom: var(--space-lg);
}

.map-popup-cta {
  width: 100%;
  display: none;
}

/* Subpage Hero Banners */
.subpage-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}

.subpage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.subpage-hero-inner {
  position: relative;
  z-index: 2;
}

.subpage-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.subpage-breadcrumbs {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-yellow);
}

.subpage-breadcrumbs a:hover {
  text-decoration: underline;
}

/* --- FEATURED CATEGORIES SECTION (GRID) --- */
.categories-grid {
  margin-top: var(--space-md);
}

.category-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-content {
  position: relative;
  z-index: 3;
  padding: var(--space-lg);
  width: 100%;
}

.category-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-yellow);
  margin-bottom: var(--space-2xs);
  display: inline-block;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2xs);
  transition: var(--transition-smooth);
}

.category-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Hover Zoom Actions */
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(44, 82, 155, 0.2);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card:hover .category-desc {
  height: 48px;
  opacity: 1;
  margin-top: 4px;
}

.category-card:hover .category-title {
  color: var(--primary-yellow);
}


/* --- ABOUT PREVIEW / SPLIT SECTION --- */
.split-layout {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.split-left,
.split-right {
  flex: 1;
}

.split-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-bullets {
  list-style: none;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.about-bullet-icon {
  background-color: rgba(255, 178, 21, 0.15);
  color: #c98500;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.about-bullet-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.about-bullet-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: var(--space-md) 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--space-xl);
  text-align: center;
  box-sizing: border-box;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-yellow);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-xs);
  border: 2px solid var(--primary-blue);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Slider Controls */
.slider-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.slider-control-btn:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.slider-control-btn:hover svg {
  fill: var(--white);
}

.slider-control-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--text-main);
  transition: var(--transition-smooth);
}

.slider-control-prev {
  left: 0;
}

.slider-control-next {
  right: 0;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--primary-blue);
  transform: scale(1.25);
}


/* --- ABOUT PAGE SPECIFICS --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: var(--space-2xl) auto 0;
  padding-left: var(--space-xl);
  border-left: 2px solid var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 7px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-yellow);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(255, 178, 21, 0.3);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: var(--space-2xs);
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.values-box {
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border-left: 4px solid var(--primary-blue);
}

.team-card {
  text-align: center;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 3px solid rgba(255, 178, 21, 0.2);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.team-role {
  font-size: 0.85rem;
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(44, 82, 155, 0.15);
}

/* Categories widget */
.sidebar-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.sidebar-cat-item a {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 4px 0;
  color: var(--text-muted);
}

.sidebar-cat-item a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}


/* Category Filter Tabs (Grid page top) */
.category-filters {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}


.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.map-mock {
  width: 100%;
  height: 100%;
  background-color: #E5E9F0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-pin {
  color: var(--primary-red);
  animation: bounce 2s infinite;
}

.map-pin svg {
  width: 40px;
  height: 40px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* --- GLOBAL FOOTER --- */
.footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
  border-top: 4px solid var(--primary-yellow);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-link a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-link a:hover {
  color: var(--primary-yellow);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-socials .social-icon-btn {
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-socials .social-icon-btn svg {
  fill: var(--white);
}

/* --- FEEDBACK TOASTS --- */
.toast-container {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.toast {
  background-color: var(--text-main);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transform: translateY(100px);
  opacity: 0;
  animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border-left: 4px solid var(--primary-yellow);
}

.toast.toast-success {
  border-left-color: #10B981;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Desktop & Large Screen adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .split-layout {
    gap: var(--space-lg);
  }

  .newsletter-card {
    padding: var(--space-xl);
  }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .hero-home-split {
    padding-top: calc(var(--header-height) + var(--space-lg));
    padding-bottom: var(--space-2xl);
    min-height: auto;
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-home-text {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .process-step::after {
    display: none;
  }

  .split-layout {
    flex-direction: column;
  }

  .split-image {
    height: 350px;
  }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .newsletter-text {
    max-width: 100%;
  }

  .featured-tour-card {
    flex-direction: column;
  }

  .featured-tour-img {
    height: 300px;
  }

  .contact-layout {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .blog-layout {
    flex-direction: column;
  }

  .blog-sidebar {
    order: 2;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header.scrolled {
    height: 64px;
  }

  .nav-links,
  .social-links-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-home-text .hero-title {
    font-size: 2.2rem;
  }

  .map-widget-container {
    padding: var(--space-xs);
  }

  .map-popup-card {
    width: 88%;
    max-width: 300px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .map-popup-header {
    height: 110px;
  }

  .map-popup-body {
    padding: var(--space-sm);
  }

  .map-popup-title {
    font-size: 1.3rem;
  }

  .map-popup-desc {
    font-size: 0.85rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .testimonials-track {
    padding: 0;
  }

  .testimonial-slide {
    padding: 0 var(--space-sm);
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* --- VISIT MALAYSIA: ABOUT SUBPAGE --- */
.malaysia-about-body {
  background-color: #FFFFFF;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #555555;
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

/* Saldina Heading Font */
/* About Page Heading Font */
.malaysia-about-body h1,
.malaysia-about-body h2,
.malaysia-about-body h3,
.malaysia-about-body .saldina-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  color: #1A1A1A;
}

/* Base structural layout */
.malaysia-about-canvas {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #FFFFFF;
  /* mock canvas shadow */
  position: relative;
}

.malaysia-about-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Clean label style */
.malaysia-about-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #B5121B;
  display: inline-block;
  margin-bottom: 12px;
}

.malaysia-about-label.gold-label {
  color: #FFD700;;
}

/* Section Dividers */
.malaysia-about-divider {
  width: 50px;
  height: 2px;
  background-color: #D4AF37;
  margin: 16px 0 24px 0;
}

.malaysia-about-divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* Content Image Styling */
.malaysia-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.malaysia-content-img:hover {
  transform: scale(1.02);
}

/* General Layouts */
.malaysia-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.malaysia-col-55 {
  width: 55%;
}

.malaysia-col-45 {
  width: 45%;
}

/* SECTION 1: HEADER */
.malaysia-header {
  height: 80px;
  background: #FFFFFF;
  border-bottom: 1px solid #EAEAEA;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.malaysia-header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.malaysia-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.malaysia-logo .red-text {
  color: #B5121B;
}

.malaysia-logo .gold-text {
  color: #D4AF37;
}

.malaysia-header-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.malaysia-social-icon {
  width: 20px;
  height: 20px;
  fill: #333333;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.malaysia-social-icon:hover {
  fill: #B5121B;
  transform: scale(1.15);
}

/* SECTION 2: TITLE */
.malaysia-sec-title-wrap {
  padding: 60px 0;
  margin-top: 30px;   /* move down */
  margin-left: 20px;  /* move right */
}

.malaysia-sec-title-wrap .malaysia-about-label {
  font-size: 12px;
}

.malaysia-sec-title-wrap h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #1A1A1A;
  margin-top: 5px;
  margin-bottom: 15px;
}

.malaysia-sec-title-wrap .title-underline {
  width: 60px;
  height: 3px;
  background-color: #D4AF37;
}

/* SECTION 3: HERO */
.malaysia-hero {
  width: 100%;
  height: 580px;
  position: relative;
  overflow: hidden;
}

.malaysia-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.malaysia-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* SECTION 4: GEOGRAPHY */
.malaysia-geography {
  padding: 80px 0;
  background: #FFFFFF;
}

.malaysia-geography-content {
  max-width: 1140px;
  margin: 0 auto;
}

/* SECTION 5: AREA AND CLIMATE */
.malaysia-climate {
  padding: 80px 0;
  background-color: #FAF6F0;
}

.malaysia-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.malaysia-stat-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.malaysia-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.malaysia-stat-icon {
  font-size: 24px;
}

.malaysia-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
}

.malaysia-stat-lbl {
  font-size: 13px;
  color: #888888;
}

/* SECTION 6: RELIGION */
.malaysia-religion {
  padding: 80px 0;
  background: #FFFFFF;
}

.malaysia-religion-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.malaysia-religion-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
}

.malaysia-religion-card {
  background: #FFFFFF;
  border: 1px solid #D4AF37;
  border-radius: 10px;
  padding: 24px 32px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.malaysia-religion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}
#rel-islam {
  padding: 40px 48px;
  min-width: 175px;
}

#rel-islam .malaysia-religion-symbol {
  font-size: 24px;
}

#rel-islam .malaysia-religion-name {
  font-size: 18px;
  font-weight: 700;
}


.malaysia-religion-symbol {
  font-size: 32px;
  color: #D4AF37;
}

.malaysia-religion-name {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
}

/* SECTION 7: LANGUAGE */
.malaysia-language {
  padding: 80px 0;
  background-color: #FAF6F0;
}

/* SECTION 8: PEOPLE AND CULTURE */
.malaysia-culture {
  padding: 100px 0;
  background-color: #6B0F1A;
  color: #E0E0E0;
}

.malaysia-culture h2 {
  color: #FFFFFF !important;
}

.malaysia-culture-cols {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.malaysia-culture-col {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
}

/* SECTION 9: WHY MALAYSIA */
.malaysia-why {
  padding: 80px 0;
  background: #FFFFFF;
}

.malaysia-why-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.malaysia-quote {
  font-family: 'Saldina', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  color: #B5121B;
  line-height: 1.4;
  margin-bottom: 40px;
  position: relative;
}

/* SECTION 10: HISTORY & ECONOMY */
.malaysia-history-economy {
  padding: 80px 0;
  background-color: #FAF6F0;
}

.malaysia-hist-econ-row {
  display: flex;
  position: relative;
  gap: 60px;
}

.malaysia-hist-column,
.malaysia-econ-column {
  flex: 1;
}

.malaysia-hist-econ-divider {
  width: 1px;
  background-color: #D4AF37;
  align-self: stretch;
}

.malaysia-econ-badges {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.malaysia-econ-badge {
  background: #FFFFFF;
  border: 1px solid #B5121B;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  color: #555555;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.malaysia-econ-badge:hover {
  transform: translateY(-2px);
  background-color: rgba(181, 18, 27, 0.03);
}

/* SECTION 11: FOOTER */
.malaysia-footer {
  background-color: #ffffff;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}

.malaysia-footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.malaysia-footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.malaysia-footer-logo .white-text {
  color: #2C529B;;
}

.malaysia-footer-logo .gold-text {
  color: #D4AF37;
}

.malaysia-footer-follow {
  color: #2C529B;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.malaysia-footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}

.malaysia-footer-social-icon {
  width: 18px;
  height: 18px;
  fill: #2C529B;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.malaysia-footer-social-icon:hover {
  fill: #D4AF37;
  transform: scale(1.15);
}

.malaysia-footer-copyright {
  color: #2C529B;
  font-size: 12px;
}

/* Responsive adjustment for mockups */
@media (max-width: 1140px) {
  .malaysia-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .malaysia-col-55,
  .malaysia-col-45 {
    width: 100%;
  }

  .malaysia-stats-row {
    flex-direction: column;
  }

  .malaysia-culture-cols {
    flex-direction: column;
  }

  .malaysia-hist-econ-row {
    flex-direction: column;
    gap: 40px;
  }

  .malaysia-hist-econ-divider {
    height: 1px;
    width: 100%;
  }
}

/* --- VISIT MALAYSIA: LANDING PAGE SEARCH BAR & ARTICLES --- */
.landing-search-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0 var(--space-lg);
}

.landing-search-bar {
  width: 100%;
  max-width: 860px;
  background: #FFFFFF;
  border-radius: 50px;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 24px;
  height: 60px;
  display: flex;
  align-items: center;
}

.landing-search-input {
  flex: 1;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 15px;
  color: #555555;
}

.landing-search-divider {
  width: 1px;
  background-color: #E0E0E0;
  height: 30px;
  margin: 0 16px;
}

.landing-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 160px;
}

.landing-select {
  width: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
  color: #1A1A1A;
}

.landing-select-chevron {
  position: absolute;
  right: 8px;
  pointer-events: none;
  font-size: 10px;
  color: #888888;
}

.landing-search-btn {
  background-color: #B5121B !important;
  color: #FFFFFF !important;
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  border: none !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.landing-search-btn:hover {
  background-color: #8B0000 !important;
}

/* Articles Grid Section */
.landing-articles-section {
  padding: 0 var(--space-lg) var(--space-3xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}

.landing-articles-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.landing-article-card {
  flex: 1;
  min-width: 0;
}

@media (max-width: 1200px) {
  .landing-articles-grid {
    flex-wrap: wrap;
  }
  
  .landing-article-card {
    flex: 0 1 calc(50% - 14px);
  }
}

@media (max-width: 768px) {
  .landing-articles-grid {
    flex-direction: column;
  }
  
  .landing-article-card {
    flex: 0 1 100%;
  }
}

.landing-article-card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  flex: 1;
}

.landing-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.18);
}

.landing-card-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.landing-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.landing-card-tag {
  background-color: #FFF0F0 !important;
  color: #B5121B !important;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 10px;
  display: inline-block;
  align-self: flex-start;
  font-weight: bold;
}

.landing-card-state {
  color: #888888;
  font-size: 12px;
  margin-bottom: 8px;
}

.landing-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #1A1A1A;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.landing-card-more {
  font-size: 13px;
  color: #B5121B;
  font-weight: 600;
  margin-top: auto;
  display: inline-block;
}

.landing-article-card:hover .landing-card-more {
  text-decoration: underline !important;
}

.landing-no-results {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
  color: #888888;
}

/* Responsive Grid styling */
@media (max-width: 1024px) {
  .landing-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-no-results {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .landing-articles-grid {
    grid-template-columns: 1fr;
  }

  .landing-no-results {
    grid-column: span 1;
  }

  .landing-search-bar {
    flex-direction: column;
    height: auto;
    border-radius: 20px;
    padding: 20px;
    gap: 12px;
  }

  .landing-search-divider {
    display: none;
  }

  .landing-select-wrapper {
    width: 100%;
  }

  .landing-search-input {
    width: 100%;
  }

  .landing-search-btn {
    width: 100%;
    border-radius: 10px !important;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Footer layout updates */
.landing-footer {
  background-color: #ffffff;;
  height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.landing-footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.landing-footer-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.landing-footer-follow {
  color: #666666;
  font-size: 13px;
}

.landing-footer-social-icon {
  width: 18px;
  height: 18px;
  fill: #666666;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.landing-footer-social-icon:hover {
  fill: #B5121B;
  transform: scale(1.15);
}

.landing-footer-copyright {
  font-size: 12px;
  color: #666666;
}
/* Logo bar - fixed top left outside header */
.logo-bar {
  position: relative;
  top: var(--header-height);
  left: 0;
  width: 100%;
  z-index: 1001;
  padding: 0 32px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  background-color: transparent;
}

.logo-bar img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  pointer-events: auto;
}


.map-heading {
  text-align: center;
  color: #FFB215;
  font-family: 'Playfair Display', serif;  
  font-style: italic;
  font-size: 3rem;
  font-weight: 700;
  width: 100%;
  margin-bottom: 0px;
  margin-top: -30px;
}
@media (max-width: 768px) {
  .map-heading {
    font-size: 2rem;  /* decrease font size */
    margin-top: 0px;   /* adjust position */
    margin-bottom: -70px
  }
}
.logo-tagline {
  display: block;
  text-align: center;
  color: #2C529B;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .logo-bar {
    top: 80px;
    left: 12px;
    padding: 4px 8px;
  }
  .logo-bar nav {
    display: none;
  }

  .logo-bar img {
    height: 48px;
  }

  .logo-tagline {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }
  
}
@media (max-width: 768px) {
  .hero-home-inner {
    padding: 0;
  }

  .map-widget-container {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 768px) {
  .map-img {
    width: 100%;
    min-height: unset;
    object-fit: contain;
  }

  .map-wrapper {
    min-height: unset;
    overflow: visible;
  }
}
