/* 
   WORLD TOURISM LIMITED - LIGHT & COMPACT COOL DESIGN SYSTEM
   Theme: Fresh Light Ice Blue (#F0F7FF), Sky Azure (#0284C7), Mint Cyan (#0EA5E9), Dark Slate Text (#0F172A)
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --primary-slate: #0F172A;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --bg-light: #F4F8FC;
  --bg-card: #FFFFFF;
  --bg-subtle: #E6F0FA;

  --accent-blue: #0284C7;
  --accent-cyan: #0EA5E9;
  --accent-teal: #0D9488;

  --gradient-btn: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  --border-color: #E2E8F0;
  --border-active: #93C5FD;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 16px -4px rgba(2, 132, 199, 0.08);
  --shadow-lg: 0 16px 30px -8px rgba(15, 23, 42, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-slate);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* IMAGE UTILITY CLASSES */
.img-thumb-container {
  height: 150px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  position: relative;
}

.img-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.img-thumb-container:hover img {
  transform: scale(1.08);
}

/* COMPACT FULL-BLEED DESTINATION CARDS */
.img-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.gallery-card {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px -6px rgba(15, 23, 42, 0.12);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: #0284C7;
  box-shadow: 0 16px 32px -8px rgba(2, 132, 199, 0.3);
}

.gallery-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #0F172A;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.1);
}

/* GRADIENT OVERLAY ON PHOTO */
.gallery-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.gallery-card:hover::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.7) 45%, rgba(15, 23, 42, 0.98) 100%);
}

.gallery-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(2, 132, 199, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.gallery-card-body {
  position: relative;
  z-index: 3;
  padding: 14px 12px;
}

.gallery-card-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.gallery-card-body p {
  font-size: 0.78rem;
  color: #E2E8F0;
  line-height: 1.35;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.gallery-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 5px 10px;
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: #FFFFFF;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 3px 8px rgba(2, 132, 199, 0.4);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.25s ease;
}

.gallery-card:hover .gallery-card-btn {
  transform: translateY(0);
  opacity: 1;
}

/* COMPACT TOP BAR */
.top-bar {
  background: #E2E8F0;
  color: var(--primary-slate);
  font-size: 0.8rem;
  padding: 6px 20px;
  border-bottom: 1px solid #CBD5E1;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.b2b-badge {
  background: var(--accent-blue);
  color: #FFF;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-contact {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
}

.top-bar-contact a:hover {
  color: var(--accent-blue);
}

/* COMPACT HEADER & NAVBAR */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-slate);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient-btn);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.05rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  letter-spacing: -0.3px;
  line-height: 1.1;
  font-size: 1.1rem;
}

.logo-text span:last-child {
  font-size: 0.62rem;
  color: var(--accent-blue);
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-blue);
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-cyan {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: #FFF;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  letter-spacing: 0.3px;
  font-weight: 800;
}

.btn-cyan:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.48);
}

.btn-slate {
  background: var(--primary-slate);
  color: #FFF;
}

.btn-slate:hover {
  background: #1E293B;
  color: #7DD3FC;
}

 .btn-outline-cool {
  background: transparent;
  border: 1.5px solid var(--accent-blue);
  color: var(--accent-blue);
}                                        

 .btn-outline-cool:hover {
  background: var(--accent-blue);
  color: #FFF;
}  

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-slate);
  cursor: pointer;
}


.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
  color: var(--primary-slate);
  border-bottom: 1px solid var(--border-color);
  min-height: 440px;
  display: flex;
  align-items: center;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 2;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  color: #FFF;
}

.hero-content .section-subtitle {
  color: #38BDF8;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
  color: #FFFFFF;
  font-size: 2.7rem;
  margin-bottom: 14px;
  letter-spacing: -0.8px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.hero-content h1 span {
  color: #38BDF8;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #FFFFFF !important;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.65;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.hero-content .btn-outline-cool {
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid #38BDF8;
  color: #FFFFFF !important;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-content .btn-outline-cool:hover {
  background: #0284C7;
  border-color: #0284C7;
  color: #FFF !important;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.stat-item h3 {
  color: #38BDF8 !important;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.stat-item p {
  color: #FFFFFF !important;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

.page-banner {
  position: relative;
  padding: 54px 20px;
  color: #FFFFFF !important;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: #FFFFFF !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}

.page-banner .section-subtitle {
  color: #38BDF8 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

.page-banner p {
  color: #FFFFFF !important;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
}

.hero-content h1 span {
  color: #38BDF8;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #CBD5E1;
}

.stat-item h3 {
  color: var(--accent-blue);
  font-size: 1.6rem;
  line-height: 1;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.quick-inquiry-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.quick-inquiry-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--primary-slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-inquiry-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}


.tab-buttons {
  display: flex;
  gap: 4px;
  background: #E2E8F0;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow-x: auto;
  border: 1px solid #CBD5E1;
}

.tab-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}


.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease-in-out;
  background: #F8FAFC;
  color: #0F172A;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) inset;
}

.form-control::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.form-control:hover {
  border-color: #94A3B8;
  background: #FFFFFF;
}

.form-control:focus {
  background: #FFFFFF;
  border-color: #0284C7;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16), 0 2px 8px rgba(2, 132, 199, 0.08);
  transform: translateY(-1px);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%20284C7'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  appearance: none;
}


.b2b-form-section {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px -6px rgba(15, 23, 42, 0.08);
  border: 1.5px solid #E2E8F0;
}


.section {
  padding: 36px 20px;
}

.section-dark {
  background: #EBF3FA;
  color: var(--primary-slate);
}

.section-dark h2,
.section-dark h3 {
  color: var(--primary-slate);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.section-subtitle {
  color: var(--accent-blue);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  display: block;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
}


.b2b-notice-card {
  background: #FFFFFF;
  border: 1px solid var(--border-active);
  border-left: 5px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--primary-slate);
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.b2b-notice-content h3 {
  color: var(--accent-blue);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.b2b-notice-content p {
  color: var(--text-main);
  font-size: 0.88rem;
}

.marquee-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 2px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
}

.marquee-track-left {
  animation: scrollLeft 32s linear infinite;
}

.marquee-track-right {
  animation: scrollRight 32s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.marquee-content .region-card {
  width: 330px;
  flex-shrink: 0;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}


.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.region-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 8px 10px;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-card:hover {
  transform: translateY(-2px);
  border-color: #0284C7;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.16);
}

.region-img-thumb {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.region-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.region-card:hover .region-img-thumb img {
  transform: scale(1.08);
}

.region-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.region-info h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.region-info p {
  color: #64748B;
  font-size: 0.78rem;
  line-height: 1.3;
}


.api-supplier-item {
  background: #FFF;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
}

.api-supplier-img {
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 36px;
}


.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 12px 36px -10px rgba(15, 23, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: #0284C7;
  box-shadow: 0 22px 50px -10px rgba(2, 132, 199, 0.25);
}

/* BENTO HERO CARD (LARGE) */
.bento-hero-acc {
  grid-row: span 2;
  min-height: 520px;
  justify-content: flex-end;
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .bento-hero-acc {
    grid-row: auto;
    min-height: 420px;
  }
}

.bento-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;
}

.bento-hero-acc:hover .bento-bg {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.96) 100%);
  z-index: 2;
}

.bento-content {
  position: relative;
  z-index: 3;
  padding: 36px;
}

.bento-content h2 {
  font-size: 2rem;
  color: #FFFFFF;
  margin: 12px 0 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.bento-content p {
  font-size: 0.95rem;
  color: #F1F5F9;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.bento-tags span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* BENTO CARD RIGHT ITEMS */
.bento-card-dark {
  background: #0F172A;
  color: #FFFFFF;
}

.bento-card-light {
  background: #FFFFFF;
  color: #0F172A;
}

.bento-img-top {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.bento-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-img-top img {
  transform: scale(1.08);
}

.bento-content-sm {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bento-content-sm h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 6px 0 8px;
}

.bento-card-dark h3 {
  color: #FFFFFF;
}

.bento-card-light h3 {
  color: #0F172A;
}

.bento-content-sm p {
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bento-card-dark p {
  color: #94A3B8;
}

.bento-card-light p {
  color: #64748B;
}

.bento-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-check-list li {
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-card-dark .bento-check-list li {
  color: #E2E8F0;
}

.bento-card-light .bento-check-list li {
  color: #334155;
}

.bento-check-list li i {
  color: #38BDF8;
}

/* ULTRA-LUXURIOUS B2B SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 10px 30px -8px rgba(15, 23, 42, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #0284C7;
  box-shadow: 0 20px 45px -10px rgba(2, 132, 199, 0.22);
}

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0F172A;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.6) 100%);
  pointer-events: none;
}

.service-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(2, 132, 199, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.service-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.service-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.service-list {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-list li {
  font-size: 0.82rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li i {
  color: var(--accent-blue);
}

.service-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

/* COMPACT TOUR CATEGORIES */
.tour-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.tour-cat-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
}

.tour-cat-card.highlighted {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
  background: #F0F7FF;
}

.tour-cat-card h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.tour-badge {
  display: inline-block;
  background: #E0F2FE;
  color: var(--accent-blue);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.tour-feature-list {
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
}

.tour-feature-list i {
  color: var(--accent-blue);
}

/* COMPACT API BANNER */
.api-banner {
  background: #FFFFFF;
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.api-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: center;
}

.api-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 16px;
}

.api-chip {
  background: #E0F2FE;
  border: 1px solid #93C5FD;
  color: var(--accent-blue);
  padding: 4px 10px;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* COMPACT FORMS */
.b2b-form-section {
  background: #FFF;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-header-bar {
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.form-header-bar h2 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.form-header-bar p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

/* LIGHT COMPACT FOOTER */
.footer {
  background: #E2E8F0;
  color: var(--primary-slate);
  padding: 32px 20px 16px;
  border-top: 1px solid #CBD5E1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-col h4 {
  color: var(--primary-slate);
  font-size: 0.95rem;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 4px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent-blue);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--text-main);
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #CBD5E1;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

/* COMPACT MODALS */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #FFF;
  border-radius: var(--radius-md);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--accent-blue);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #F1F5F9;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SUCCESS TOAST */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-slate);
  color: #FFF;
  border-left: 4px solid var(--accent-blue);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   APP-LIKE LUXURY MOBILE & RESPONSIVE SUITE
   ========================================================================== */

/* HIDE TOP ANNOUNCEMENT BAR ON MOBILE */
@media (max-width: 1024px) {
  .top-bar {
    display: none !important;
  }
}

/* DESKTOP / LAPTOP FINE TUNING (<= 1280px) */
@media (max-width: 1280px) {
  .nav-links {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .logo-text span:first-child {
    font-size: 0.92rem;
  }
}

/* TABLET & MOBILE HEADER (<= 1024px) */
@media (max-width: 1024px) {
  .header {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1.5px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  }

  /* LOGO ON LEFT, HAMBURGER MENU ON RIGHT, NO REGISTER AGENCY BUTTON */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 12px 16px;
    position: relative;
    max-width: 100%;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.15rem;
    flex-shrink: 0;
  }

  .logo-text span:first-child {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
  }

  .logo-text span:last-child {
    font-size: 0.62rem;
    color: #0284C7;
    letter-spacing: 0.5px;
  }

  /* HIDE REGISTER AGENCY BUTTON ON MOBILE HEADER BUT KEEP NAV-ACTIONS FOR TOGGLE */
  .nav-actions {
    display: flex !important;
    align-items: center;
  }

  .nav-actions .btn {
    display: none !important;
  }

  /* CLEAN & SIMPLE MENU TOGGLE BUTTON (RIGHT SIDE) */
  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
  }

  .mobile-toggle:hover,
  .mobile-toggle:active {
    background: #0284C7;
    color: #FFFFFF;
    border-color: #0284C7;
  }

  /* SIMPLE & ELEGANT SLIDE-DOWN MENU DRAWER */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: #FFFFFF;
    flex-direction: column;
    padding: 8px 12px 14px;
    gap: 4px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
    border-bottom: 3px solid #0284C7;
    border-top: 1px solid #E2E8F0;
    z-index: 99999 !important;
  }

  .nav-links.active {
    display: flex !important;
    animation: slideDownNav 0.25s ease forwards;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1E293B;
    background: transparent;
    border: none;
    border-bottom: 1px solid #F1F5F9;
    transition: all 0.2s ease;
    width: 100%;
  }

  .nav-link:hover,
  .nav-link.active {
    background: #F0F9FF;
    color: #0284C7;
    font-weight: 700;
    /* border-left: 3px solid #0284C7; */
    padding-left: 16px;
    border-radius: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .b2b-notice-card {
    grid-template-columns: 1fr;
  }

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

  .tour-categories {
    grid-template-columns: 1fr;
  }

  .api-grid {
    grid-template-columns: 1fr;
  }
}

/* SMARTPHONES & SMALL SCREENS (<= 768px) */
@media (max-width: 768px) {

  *,
  *::before,
  *::after {
    box-sizing: border-box !important;
  }

  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
  }

  .container,
  .hero-container {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .nav-container {
    width: 100% !important;
    max-width: 100vw !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    position: relative !important;
  }

  /* TOP ANNOUNCEMENT BAR */
  .top-bar-container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .top-bar-contact {
    justify-content: center;
    gap: 10px;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  /* HERO BANNER & CONTENT (PERFECT FIT - ZERO OVERFLOW) */
  .hero {
    padding: 16px 0 24px;
    min-height: auto;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .hero-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    gap: 16px;
    grid-template-columns: 1fr;
    margin: 0 auto !important;
  }

  .hero-content {
    text-align: left;
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .hero-content .section-subtitle {
    justify-content: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
  }

  .hero-content h1 {
    font-size: 1.3rem !important;
    line-height: 1.25 !important;
    margin-bottom: 8px;
    text-align: left;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  }

  .hero-content h1 span {
    display: inline !important;
    color: #38BDF8 !important;
    white-space: normal !important;
  }

  .hero-subtitle {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px;
    text-align: left;
    color: #FFFFFF !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95);
    box-sizing: border-box !important;
  }

  /* BUTTON ROW */
  .hero-btn-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-btn-row .btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 8px 2px !important;
    font-size: 0.7rem !important;
    justify-content: center !important;
    border-radius: 8px !important;
    text-align: center !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .hero-stats {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .stat-item {
    flex: 1 !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  .stat-item h3 {
    font-size: 1.05rem !important;
    margin-bottom: 1px;
  }

  .stat-item p {
    font-size: 0.6rem !important;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ULTRA-COMPACT B2B QUOTE CARD ON MOBILE ONLY */
  .quick-inquiry-card {
    padding: 10px 10px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .quick-inquiry-card h3 {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
    justify-content: flex-start !important;
    color: #0F172A !important;
  }

  .quick-inquiry-card p {
    text-align: left !important;
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
  }

  .tab-buttons {
    display: flex !important;
    gap: 3px !important;
    padding: 2px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    flex: 1 0 auto !important;
    padding: 4px 6px !important;
    font-size: 0.65rem !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .form-grid,
  .form-row-2,
  .form-row-3,
  .form-row-4 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-group,
  .form-group.full-width {
    grid-column: span 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 3px !important;
  }

  .form-group label {
    font-size: 0.62rem !important;
    margin-bottom: 2px !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    line-height: 1.2 !important;
  }

  /* Compact Input, Select & Date Controls on Mobile */
  .form-control,
  input,
  select,
  textarea {
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    padding: 5px 8px !important;
    height: 34px !important;
    border-radius: 6px !important;
    color: #334155 !important;
  }

  select.form-control {
    font-size: 0.75rem !important;
    padding-right: 22px !important;
    background-position: right 6px center !important;
    background-size: 10px !important;
    color: #475569 !important;
  }

  input[type="date"].form-control {
    font-size: 0.75rem !important;
    color: #475569 !important;
  }

  .form-control::placeholder {
    font-size: 0.72rem !important;
    font-weight: 400 !important;
    color: #94A3B8 !important;
  }

  .quick-inquiry-card .btn-cyan {
    padding: 8px 10px !important;
    font-size: 0.8rem !important;
    height: 36px !important;
    width: 100% !important;
  }

  /* SUBPAGE RFP FORM CARDS & BUTTONS ON MOBILE */
  .b2b-form-card,
  .rfp-card,
  .booking-form-card,
  .form-container,
  .quote-form-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .b2b-form-card .btn,
  .rfp-card .btn,
  .booking-form-card .btn,
  form .btn,
  form .btn-cyan,
  form .btn-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  /* SECTIONS & HEADERS */
  .section {
    padding: 32px 0;
  }

  .section-header {
    margin-bottom: 20px;
    padding: 0 10px;
  }

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

  .section-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  /* B2B NOTICE CARD MOBILE OVERHAUL */
  .b2b-notice-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 16px 14px !important;
    gap: 14px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .b2b-notice-card>div:first-child {
    width: 100% !important;
    height: 140px !important;
    border-radius: 12px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .b2b-notice-card>div:nth-child(2) {
    width: 100% !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .b2b-notice-card h3 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
    text-align: center !important;
    color: #0F172A !important;
  }

  .b2b-notice-card p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: #475569 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
  }

  .b2b-notice-card>div:last-child {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .b2b-notice-card .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  /* MARQUEE CARDS */
  .marquee-content .region-card {
    width: 250px;
    padding: 8px;
    gap: 10px;
  }

  .region-img-thumb {
    width: 68px;
    height: 68px;
    border-radius: 8px;
  }

  .region-info h3 {
    font-size: 0.84rem;
  }

  .region-info p {
    font-size: 0.72rem;
  }

  /* SERVICES GRID */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    border-radius: 14px;
  }

  .service-img-wrapper {
    height: 175px;
  }

  .service-content {
    padding: 16px 14px;
  }

  .service-content h3 {
    font-size: 1.1rem;
  }

  /* DESTINATION GALLERY CARDS (2 COLUMNS ON MOBILE) */
  .img-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-card {
    height: 180px;
    border-radius: 12px;
  }

  .gallery-card-body {
    padding: 10px 8px;
  }

  .gallery-card-body h4 {
    font-size: 0.86rem;
    margin-bottom: 2px;
  }

  .gallery-card-body p {
    font-size: 0.7rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gallery-card-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    top: 6px;
    right: 6px;
    border-radius: 10px;
  }

  .gallery-card-btn {
    display: none;
  }

  /* TOUR CATEGORY CARD MOBILE OVERHAUL */
  .tour-categories {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .tour-cat-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 16px 14px !important;
    gap: 14px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 14px !important;
  }

  .tour-cat-card>div:first-child {
    width: 100% !important;
    height: 150px !important;
    border-radius: 10px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  .tour-cat-card>div:last-child {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .tour-cat-card .badge-pill {
    display: inline-block !important;
    margin-bottom: 8px !important;
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }

  .tour-cat-card h3 {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    color: #0F172A !important;
  }

  .tour-cat-card p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: #475569 !important;
    text-align: center !important;
    margin-bottom: 12px !important;
  }

  .tour-cat-card .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  /* API SOLUTIONS HUB MOBILE OVERHAUL (ULTRA-COMPACT & LEFT-ALIGNED) */
  .api-banner {
    padding: 14px 12px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .api-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .api-content {
    text-align: left !important;
    width: 100% !important;
  }

  .api-content .badge-pill {
    display: inline-block !important;
    margin-bottom: 6px !important;
    font-size: 0.68rem !important;
    padding: 3px 8px !important;
  }

  .api-content h2 {
    font-size: 1.25rem !important;
    line-height: 1.22 !important;
    margin-bottom: 6px !important;
    text-align: left !important;
    color: #0F172A !important;
  }

  .api-content p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    color: #475569 !important;
    text-align: left !important;
    margin-bottom: 10px !important;
  }

  .api-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    justify-content: flex-start !important;
    margin-bottom: 12px !important;
  }

  .api-chip {
    font-size: 0.66rem !important;
    padding: 3px 8px !important;
    border-radius: 16px !important;
  }

  .api-content .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  /* RIGHT COLUMN RECOMMENDED SUPPLIERS CARD ON MOBILE */
  .api-card {
    width: 100% !important;
    text-align: left !important;
    padding: 12px 10px !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  .api-card img,
  .api-card>div:first-child {
    width: 100% !important;
    height: 110px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    margin-bottom: 8px !important;
  }

  .api-card h3 {
    font-size: 1.05rem !important;
    justify-content: flex-start !important;
    margin-bottom: 4px !important;
    text-align: left !important;
  }

  .api-card p {
    font-size: 0.76rem !important;
    line-height: 1.4 !important;
    text-align: left !important;
  }

  /* ROADMAP GRID MOBILE OVERHAUL (1-COLUMN STACK) */
  .roadmap-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .roadmap-card {
    padding: 16px 14px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .roadmap-card h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

  .roadmap-card p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }

  /* SUPPLIER CARDS MOBILE OVERHAUL (1-COLUMN STACK) */
  .supplier-grid,
  .suppliers-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .supplier-card,
  .api-supplier-item {
    display: flex !important;
    flex-direction: column !important;
    padding: 16px 14px !important;
    gap: 12px !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .supplier-card>div:first-child,
  .supplier-img-wrapper,
  .supplier-card img,
  .api-supplier-img {
    width: 100% !important;
    height: 140px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
  }

  .supplier-card-body,
  .supplier-content {
    width: 100% !important;
  }

  .supplier-card .badge-pill,
  .supplier-badge {
    display: inline-block !important;
    margin-bottom: 6px !important;
    font-size: 0.68rem !important;
    padding: 3px 8px !important;
  }

  .supplier-card h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
    color: #0F172A !important;
  }

  .supplier-card p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    color: #475569 !important;
  }

  /* PAGE BANNER & SUBPAGE HERO MOBILE OVERHAUL */
  .page-banner,
  .subpage-hero {
    padding: 32px 12px 24px !important;
    text-align: center !important;
    min-height: auto !important;
  }

  .page-banner h1,
  .subpage-hero h1,
  .page-title {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
    text-align: center !important;
  }

  .page-banner p,
  .subpage-hero p {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  /* CONTACT GRID MOBILE OVERHAUL (1-COLUMN STACK) */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  /* FOOTER MOBILE OVERHAUL (100% LEFT-ALIGNED) */
  .footer {
    padding: 30px 0 20px !important;
    text-align: left !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: left !important;
  }

  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .footer-col .logo {
    justify-content: flex-start !important;
    margin-bottom: 10px !important;
  }

  .footer-col p {
    text-align: left !important;
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .footer-col .b2b-badge,
  .footer-col .badge-pill,
  .footer-col .btn {
    align-self: flex-start !important;
    text-align: left !important;
  }

  .footer-col h4 {
    text-align: left !important;
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    width: 100% !important;
  }

  .footer-links li {
    text-align: left !important;
    width: 100% !important;
  }

  .footer-links a {
    text-align: left !important;
    font-size: 0.8rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 8px !important;
    padding-top: 16px !important;
    margin-top: 24px !important;
  }
}

/* ULTRA-COMPACT PHONES (<= 420px) */
@media (max-width: 420px) {
  .logo-text span:first-child {
    font-size: 0.8rem;
  }

  .logo-text span:last-child {
    display: none;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.84rem;
  }

  .img-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .gallery-card {
    height: 165px;
  }

  .gallery-card-body h4 {
    font-size: 0.8rem;
  }

  .gallery-card-body p {
    font-size: 0.66rem;
  }
}