/*
Theme Name: Orca Corporate & Luxury Travel
Theme URI: http://localhost/orca/
Author: Antigravity
Description: Ultra-premium corporate profile & luxury travel management theme for Orca Vacations and Travizia Tours & Travels Pvt. Ltd. Features executive UI, dual branding, IATA & RBI FFMC credentials, corporate MICE showcase, authentic client tour galleries, and interactive inquiry systems.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: orca-corporate
Tags: corporate, travel, luxury, mice, booking, responsive, bni, executive
*/

:root {
  /* Ultra-Luxury Executive Palette */
  --color-primary: #0a192f;
  --color-primary-light: #172a45;
  --color-primary-dark: #060d17;
  --color-accent: #e65100;
  --color-accent-hover: #c2410c;
  --color-gold: #f59e0b;
  --color-gold-light: #fef3c7;
  --color-gold-border: #fcd34d;
  --color-emerald: #10b981;
  --color-slate-dark: #0f172a;
  --color-slate-medium: #334155;
  --color-slate-light: #64748b;
  --color-slate-soft: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-bg-light: #f8fafc;
  --color-white: #ffffff;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation & Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 34px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 50px rgba(10, 25, 47, 0.18);
  --shadow-glow: 0 0 25px rgba(230, 81, 0, 0.28);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Dimensions */
  --container-max: 1320px;
  --container-fluid-max: 1540px;
  --transition-normal: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-slate-medium);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-fluid {
  width: 100%;
  max-width: var(--container-fluid-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.text-accent {
  color: var(--color-accent) !important;
}

/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(230, 81, 0, 0.45);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  color: #fff;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.86rem;
}

.btn-nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* -------------------------------------------------------------
   TOP UTILITY BAR
------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
}

.top-bar {
  background: var(--color-primary);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-icon {
  font-size: 0.95rem;
}

.top-link {
  color: #e2e8f0;
}

.top-link:hover {
  color: var(--color-gold);
}

.top-sep {
  opacity: 0.3;
  margin: 0 2px;
}

.badge-trust {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  padding: 3px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-trust.badge-rbi {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.btn-top-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #4ade80;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-top-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
}

.wa-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #22c55e;
}

.wa-text-short {
  display: none;
}

.wa-text-full {
  display: inline;
}

/* -------------------------------------------------------------
   MAIN NAVIGATION HEADER
------------------------------------------------------------- */
.main-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition-normal);
}

.main-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

/* Brand Identity Lockup */
.brand-logo-wrap {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1.15;
}

.brand-logo-container {
  display: flex;
  align-items: center;
}

.site-brand-logo {
  height: 48px;
  width: auto;
  max-width: 210px;
  aspect-ratio: 2290 / 631;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo-wrap:hover .site-brand-logo {
  transform: scale(1.02);
}

.brand-subtext {
  font-size: 0.70rem;
  font-weight: 500;
  color: var(--color-slate-light);
  letter-spacing: 0.02em;
  margin-top: 4px;
  padding-left: 2px;
  white-space: nowrap;
}

.brand-subtext strong {
  color: var(--color-primary-light);
  font-weight: 700;
}

/* Menu Items (Clean & Single Line Guaranteed) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.mobile-only-cta {
  display: none;
}

.nav-menu li a {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-slate-dark);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--color-accent);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-normal);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-nav-cta {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 6px;
  border-radius: var(--radius-pill);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px;
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero-corporate {
  position: relative;
  min-height: 700px;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 75px 0 90px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.94) 0%, rgba(23, 42, 69, 0.88) 55%, rgba(6, 13, 23, 0.94) 100%);
  z-index: 1;
}

.hero-corporate .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 81, 0, 0.2);
  border: 1px solid rgba(230, 81, 0, 0.45);
  color: #fbbf24;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: 3.3rem;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: #cbd5e1;
  margin-bottom: 34px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-item span {
  font-size: 0.76rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  display: block;
}

/* Hero Quick Inquiry Box */
.hero-inquiry-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--color-slate-dark);
}

.inquiry-card-header {
  margin-bottom: 22px;
}

.inquiry-card-header h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.inquiry-card-header p {
  font-size: 0.85rem;
  color: var(--color-slate-light);
  margin-bottom: 0;
}

.quick-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-slate-dark);
  background-color: #f8fafc;
  transition: var(--transition-normal);
  text-overflow: ellipsis;
}

select.form-control {
  cursor: pointer;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.15);
}

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

/* -------------------------------------------------------------
   TRUST STRIP
------------------------------------------------------------- */
.trust-strip {
  position: relative;
  z-index: 25;
  margin-top: -38px;
  padding: 0 0 35px;
}

.trust-dock {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px -8px rgba(11, 22, 38, 0.14), 0 4px 12px rgba(11, 22, 38, 0.05);
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.trust-dock-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border-right: 1px solid #f1f5f9;
  transition: all 0.25s ease;
}

.trust-dock-item:last-child {
  border-right: none;
}

.trust-dock-item:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.trust-dock-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.trust-dock-item:hover .trust-dock-icon {
  transform: scale(1.08);
}

.trust-icon-amber {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  color: #d97706;
}

.trust-icon-emerald {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

.trust-icon-blue {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  color: #0284c7;
}

.trust-icon-purple {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border: 1px solid #e9d5ff;
  color: #7c3aed;
}

.trust-icon-orange {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid #fed7aa;
  color: #ea580c;
}

.trust-dock-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.trust-dock-badge {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.trust-badge-amber { color: #b45309; }
.trust-badge-emerald { color: #15803d; }
.trust-badge-blue { color: #0369a1; }
.trust-badge-purple { color: #6d28d9; }
.trust-badge-orange { color: #c2410c; }

.trust-dock-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1626;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.trust-dock-sub {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -------------------------------------------------------------
   SECTION COMMON STYLES
------------------------------------------------------------- */
.section {
  padding: 95px 0;
}

.section-bg-light {
  background-color: #ffffff;
}

.section-bg-slate {
  background-color: #f1f5f9;
}

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

.section-badge {
  display: inline-block;
  background: rgba(230, 81, 0, 0.12);
  color: var(--color-accent);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.35rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-slate-light);
  line-height: 1.65;
}

/* -------------------------------------------------------------
   ABOUT US & CORPORATE PROFILE
------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}

.about-images-composite {
  position: relative;
}

.about-img-large {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 90%;
  object-fit: cover;
  height: 500px;
}

.about-card-badge {
  position: absolute;
  bottom: -25px;
  right: 15px;
  background: var(--color-primary);
  color: #fff;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border-left: 5px solid var(--color-accent);
  max-width: 290px;
}

.about-card-badge strong {
  display: block;
  font-size: 2.2rem;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.about-card-badge p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.45;
}

.about-quote-box {
  background: var(--color-gold-light);
  border-left: 4px solid var(--color-accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 26px 0;
  font-style: italic;
  color: #78350f;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-quote-author {
  font-style: normal;
  font-weight: 700;
  color: #92400e;
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
}

.timeline-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.timeline-step {
  background: #ffffff;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-normal);
}

.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.timeline-year {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.timeline-step h4 {
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.timeline-step p {
  font-size: 0.8rem;
  color: var(--color-slate-light);
  margin: 0;
}

/* -------------------------------------------------------------
   360° ECOSYSTEM BENTO GRID
------------------------------------------------------------- */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #f59e0b);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(230, 81, 0, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 22px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--color-slate-light);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-meta-list {
  border-top: 1px dashed var(--color-border);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--color-slate-dark);
  font-weight: 500;
}

.service-meta-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-meta-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 800;
}

/* -------------------------------------------------------------
   STAR DESTINATIONS
------------------------------------------------------------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.35) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  transition: var(--transition-normal);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(10, 25, 47, 0.98) 0%, rgba(10, 25, 47, 0.55) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.dest-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.95);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  align-self: flex-start;
  letter-spacing: 0.03em;
}

.destination-overlay h3 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 5px;
}

.destination-overlay p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.dest-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.dest-pill {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  color: #ffffff;
}

/* -------------------------------------------------------------
   STAR PRODUCT: TRAVIZIA GIFT CARD
------------------------------------------------------------- */
.giftcard-banner {
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  border-radius: var(--radius-xl);
  color: #ffffff;
  padding: 65px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.giftcard-banner::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.giftcard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.giftcard-content h2 {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.giftcard-content p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 26px;
}

.giftcard-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.giftcard-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #f1f5f9;
}

.giftcard-perk-item span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fbbf24;
  color: #0a192f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.giftcard-visual {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid rgba(251, 191, 36, 0.45);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.giftcard-logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.giftcard-chip {
  width: 44px;
  height: 32px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 6px;
}

.giftcard-visual h4 {
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.giftcard-visual .card-number {
  font-family: monospace;
  font-size: 1.15rem;
  color: #94a3b8;
  letter-spacing: 0.15em;
  margin-bottom: 26px;
}

.giftcard-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.giftcard-footer-row span {
  font-size: 0.76rem;
  color: #94a3b8;
  text-transform: uppercase;
  display: block;
}

.giftcard-footer-row strong {
  font-size: 1.15rem;
  color: #fbbf24;
}

/* -------------------------------------------------------------
   PROOF OF TRUST & REAL CLIENT GALLERY
------------------------------------------------------------- */
.proof-section {
  background-color: #ffffff;
}

.real-moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 54px;
}

.moment-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 290px;
}

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

.moment-card:hover img {
  transform: scale(1.06);
}

.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.96) 0%, rgba(10, 25, 47, 0) 100%);
  padding: 24px 18px 16px;
  color: #ffffff;
}

.moment-tag {
  display: inline-block;
  background: rgba(230, 81, 0, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.moment-caption h4 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.moment-caption span {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* VIP & Endorsements */
.vip-endorsement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 52px;
}

.vip-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  gap: 24px;
  align-items: center;
  transition: var(--transition-normal);
}

.vip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.vip-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.vip-content h4 {
  font-size: 1.22rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.vip-role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.vip-content p {
  font-size: 0.88rem;
  color: var(--color-slate-light);
  margin: 0;
}

/* Corporate Clients Marquee Wall */
.corporate-clients-box {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
}

.corporate-clients-box h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.corporate-clients-box p {
  font-size: 0.9rem;
  color: var(--color-slate-light);
  margin-bottom: 28px;
}

.client-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.client-pill {
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-slate-dark);
  box-shadow: var(--shadow-xs);
  transition: var(--transition-normal);
}

.client-pill:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* -------------------------------------------------------------
   CONTACT & RFP DESK
------------------------------------------------------------- */
.contact-section {
  background: #f1f5f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
}

.contact-info-card {
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-content strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.contact-detail-content span,
.contact-detail-content a {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.contact-detail-content a:hover {
  color: #fbbf24;
}

.rfp-form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 45px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.rfp-form-card h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.rfp-form-card p {
  font-size: 0.92rem;
  color: var(--color-slate-light);
  margin-bottom: 28px;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.site-footer {
  background: #060d17;
  color: #94a3b8;
  padding-top: 80px;
  border-top: 4px solid var(--color-accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #94a3b8;
}

.footer-accreditations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list li a {
  color: #cbd5e1;
  font-size: 0.9rem;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list li a:hover {
  color: #fbbf24;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* -------------------------------------------------------------
   FLOATING WHATSAPP
------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

@media (max-width: 1366px) {
  .site-brand-logo {
    height: 42px;
    max-width: 175px;
  }
  .nav-menu {
    gap: 9px;
  }
  .nav-menu li a {
    font-size: 0.80rem;
  }
  .btn-nav-cta {
    padding: 7px 14px;
    font-size: 0.80rem;
    gap: 5px;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 8px;
  }
  .nav-menu li a {
    font-size: 0.76rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .giftcard-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ecosystem-grid,
  .destinations-grid,
  .real-moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  /* 1. Mobile Top Executive Utility Bar (Above Logo) */
  .top-bar {
    display: block !important;
    background: #0a192f;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    overflow: hidden;
  }

  .top-bar-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 12px;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }

  .top-info-item {
    font-size: 0.74rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-label-desk,
  .top-address,
  .top-info-item:nth-child(2), /* Email address hidden on mobile */
  .top-bar-right .badge-trust {
    display: none !important;
  }

  .top-bar-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .wa-text-full {
    display: none !important;
  }

  .wa-text-short {
    display: inline !important;
  }

  .btn-top-whatsapp {
    padding: 3px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    gap: 4px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
  }

  /* 2. Mobile Main Header & Brand */
  .main-nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 12px !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .brand-logo-wrap {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 calc(100% - 52px) !important;
    max-width: calc(100% - 52px) !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .site-brand-logo {
    height: 36px !important;
    width: auto !important;
    max-width: 135px !important;
    aspect-ratio: 2290 / 631 !important;
    object-fit: contain !important;
  }

  .brand-subtext {
    padding-left: 0 !important;
    font-size: 0.54rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    display: block !important;
  }

  /* 3. Mobile Navigation Controls */
  .header-cta-group {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    margin-left: auto !important;
  }

  /* Hide Corporate RFP button from main header bar on mobile so it doesn't push the hamburger off-screen */
  .btn-nav-cta {
    display: none !important;
  }

  /* Prominent, touch-friendly hamburger button */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    background: #f8fafc !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: #0a192f !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease !important;
  }

  .mobile-menu-toggle:active {
    background: #e2e8f0 !important;
    transform: scale(0.96) !important;
  }

  /* Mobile Drawer Menu */
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    gap: 14px;
    border-top: 1px solid var(--color-border);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav-menu.is-active {
    display: flex;
  }

  .nav-menu li a {
    font-size: 1rem;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid #f1f5f9;
  }

  /* Full-width Corporate RFP button inside the mobile drawer */
  .mobile-only-cta {
    display: block !important;
    margin-top: 8px;
    padding-top: 10px;
    border-top: none;
  }

  .btn-mobile-rfp {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15);
  }

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

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

  .trust-grid,
  .ecosystem-grid,
  .destinations-grid,
  .real-moments-grid,
  .vip-endorsement-grid,
  .timeline-mini {
    grid-template-columns: 1fr;
  }

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

  .giftcard-banner {
    padding: 36px 24px;
  }

  .giftcard-perks {
    grid-template-columns: 1fr;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-tag {
    white-space: normal !important;
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
    padding: 5px 12px !important;
    max-width: 100% !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .rfp-form-card {
    padding: 26px 18px !important;
  }

  .contact-info-card {
    padding: 26px 18px !important;
  }

  .vip-carousel-wrapper {
    overflow: hidden !important;
  }

  .vip-nav-prev {
    left: 6px !important;
  }

  .vip-nav-next {
    right: 6px !important;
  }
}


/* ==========================================================================
   VIP & CELEBRITY CLIENT ROTATING SHOWCASE
   ========================================================================== */
.vip-showcase-section {
  background: linear-gradient(135deg, #071322 0%, #0d1e36 50%, #0a192f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.vip-showcase-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vip-showcase-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vip-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.vip-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
}

.vip-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.vip-slide {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 12px;
  box-sizing: border-box;
}

.vip-card-inner {
  background: rgba(23, 42, 69, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.vip-card-inner:hover {
  transform: translateY(-6px);
  border-color: #e65100;
  box-shadow: 0 18px 40px rgba(230, 81, 0, 0.25);
  background: rgba(23, 42, 69, 0.9);
}

.vip-card-inner.featured-celebrity {
  border: 1.5px solid rgba(230, 81, 0, 0.7);
  background: linear-gradient(165deg, rgba(30, 52, 84, 0.85) 0%, rgba(23, 42, 69, 0.95) 100%);
}

.vip-card-inner.featured-celebrity::before {
  content: '★ CELEBRITY CLIENT';
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(90deg, #e65100, #ff8f00);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.4);
}

.vip-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.vip-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.vip-avatar-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e65100;
  box-shadow: 0 0 16px rgba(230, 81, 0, 0.35);
  display: block;
}

.vip-avatar-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.2), rgba(251, 191, 36, 0.15));
  border: 2px solid rgba(251, 191, 36, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fbbf24;
}

.vip-info {
  flex: 1;
}

.vip-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.vip-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.vip-role {
  font-size: 0.82rem;
  color: #94a3b8;
  display: block;
  line-height: 1.4;
}

.vip-quote {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #e2e8f0;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  margin: 0 0 20px 0;
  flex: 1;
}

.vip-quote::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2.2rem;
  color: #e65100;
  line-height: 1;
  font-family: Georgia, serif;
}

.vip-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #94a3b8;
}

.vip-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #38bdf8;
  font-weight: 600;
}

/* Controls */
.vip-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.vip-nav-prev {
  left: -24px;
}

.vip-nav-next {
  right: -24px;
}

.vip-nav-btn:hover {
  background: #e65100;
  border-color: #e65100;
  box-shadow: 0 0 20px rgba(230, 81, 0, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.vip-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.vip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.vip-dot.active {
  width: 30px;
  border-radius: 6px;
  background: #e65100;
  box-shadow: 0 0 10px rgba(230, 81, 0, 0.5);
}

/* ==========================================================================
   ENTERPRISE SLA & POLICY FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: #f8fafc;
  padding: 90px 0;
}

.faq-accordion-wrap {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.faq-accordion-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.faq-accordion-item.active {
  border-color: #e65100;
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.08);
}

.faq-accordion-header {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-accordion-header span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a192f;
  line-height: 1.4;
}

.faq-accordion-item.active .faq-accordion-header span {
  color: #e65100;
}

.faq-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a192f;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-accordion-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: #e65100;
  color: #ffffff;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

/* Responsiveness for VIP Slider */
@media (max-width: 1100px) {
  .vip-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ==========================================================================
   INNER PAGE TEMPLATES & BREADCRUMBS STYLING
   ========================================================================== */
.page-header-banner {
  background: linear-gradient(135deg, #071322 0%, #0d1e36 50%, #0a192f 100%);
  color: #ffffff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-header-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: #fbbf24;
}

.breadcrumb-sep {
  opacity: 0.4;
}

.breadcrumb-current {
  color: var(--color-accent);
  font-weight: 600;
}

.page-banner-title {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-banner-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 0;
}

.inner-page-content {
  padding: 70px 0 90px;
  background-color: #f8fafc;
}

.inner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.inner-card:hover {
  box-shadow: var(--shadow-md);
}

.inner-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.inner-card p {
  color: var(--color-slate-medium);
  line-height: 1.7;
}

.page-bottom-cta {
  background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  color: #ffffff;
  padding: 60px 0;
  border-radius: var(--radius-xl);
  margin: 50px 0 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-bottom-cta h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.page-bottom-cta p {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 28px;
}

@media (max-width: 860px) {
  .page-header-banner {
    padding: 40px 0 45px;
  }
  .page-banner-title {
    font-size: 2rem;
  }
  .page-banner-subtitle {
    font-size: 0.98rem;
  }
  .inner-page-content {
    padding: 45px 0 60px;
  }
  .inner-card {
    padding: 24px 18px;
  }
  .page-bottom-cta {
    padding: 40px 20px;
  }
  .page-bottom-cta h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .vip-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .vip-nav-btn {
    display: none;
  }
  .vip-card-inner {
    padding: 24px 20px;
  }
}
