/* ============================================
   Pioneer Adventures — Creative Theme (Touria-style)
   Blue + White + Orange
   ============================================ */

.site-creative {
  --creative-accent: #f97316;
  --creative-accent-dark: #ea580c;
  --creative-accent-light: #fdba74;
  --creative-gold: #fbbf24;
  --creative-navy: #0e2a4e;
  --creative-navy-deep: #071a33;
  --creative-bg: #f0f4f8;
  --creative-white: #ffffff;
  --creative-text: #475569;
  --creative-radius: 999px;
  --creative-shadow: 0 20px 55px rgba(14, 42, 78, 0.1);
  --creative-shadow-lg: 0 28px 70px rgba(14, 42, 78, 0.16);
  --creative-glass: rgba(255, 255, 255, 0.72);
  --creative-border: rgba(14, 42, 78, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, var(--creative-bg) 100%);
}

.site-creative .creative-script {
  display: block;
  font-family: "Dancing Script", cursive;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--creative-accent);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

/* ---- Floating Navbar ---- */
.nav-creative {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-creative-bar {
  pointer-events: auto;
  max-width: 1140px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: var(--creative-radius);
  box-shadow: 0 12px 40px rgba(14, 42, 78, 0.12);
  border: 1px solid rgba(14, 42, 78, 0.06);
  padding: 0.65rem 1rem 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  flex-wrap: wrap;
}

.nav-creative-left,
.nav-creative-right,
.nav-creative-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-creative-links {
  flex: 1;
  justify-content: center;
  margin-left: 0.5rem;
}

.nav-creative-bar > .btn-creative--sm {
  margin-left: auto;
  flex-shrink: 0;
}

.nav-creative-left a,
.nav-creative-right a,
.nav-creative-links a,
.nav-creative-mobile a {
  color: var(--creative-navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--creative-radius);
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-creative-left a:hover,
.nav-creative-right a:hover,
.nav-creative-links a:hover,
.nav-creative-mobile a:hover,
.nav-creative-left a.active,
.nav-creative-right a.active,
.nav-creative-links a.active {
  color: var(--creative-accent);
  background: rgba(249, 115, 22, 0.08);
}

.nav-creative-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.nav-creative-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-creative-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--creative-navy);
  white-space: nowrap;
}

.nav-creative-brand em {
  font-style: normal;
  color: var(--creative-accent);
}

.nav-creative-toggle {
  border: none;
  background: rgba(14, 42, 78, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--creative-navy);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-creative-collapse {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--creative-shadow);
  padding: 1rem;
}

.nav-creative-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ---- Buttons ---- */
.btn-creative {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fb923c, var(--creative-accent));
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--creative-radius);
  border: none;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-creative:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.45);
  color: #fff;
}

.btn-creative--sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btn-creative--outline {
  background: transparent;
  color: var(--creative-navy) !important;
  border: 1px solid rgba(14, 42, 78, 0.15);
  box-shadow: none;
}

.btn-creative--outline:hover {
  background: var(--creative-navy);
  color: #fff !important;
  border-color: var(--creative-navy);
}

/* ---- Hero ---- */
.hero-creative {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 6.5rem;
}

.hero-creative-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-creative-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 42, 78, 0.9) 0%, rgba(14, 42, 78, 0.65) 42%, rgba(14, 42, 78, 0.35) 100%);
}

.hero-creative .container {
  position: relative;
  z-index: 2;
}

.hero-creative .hero-creative-row {
  min-height: calc(100vh - 13rem);
  align-items: center;
}

.hero-creative-content {
  color: #fff;
  padding: 1rem 0;
  max-width: 560px;
}

.hero-creative-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-creative-content h1 strong {
  display: block;
  color: var(--creative-accent);
  font-weight: 700;
  margin-top: 0.15rem;
}

.hero-creative-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.hero-creative-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: auto;
  padding-right: 0.5rem;
}

.hero-hex-frame {
  width: min(100%, 340px);
  aspect-ratio: 1;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.3);
  margin-left: auto;
}

.hero-hex-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-play-btn {
  position: absolute;
  bottom: 12%;
  left: -8%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--creative-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.3s ease;
  z-index: 3;
}

.hero-play-btn:hover {
  transform: scale(1.08);
  color: var(--creative-accent-dark);
}

.hero-slider-dots {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 3;
}

.hero-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots span.active {
  background: var(--creative-accent);
  transform: scale(1.2);
}

/* ---- Torn / wavy section edges ---- */
.hero-creative .torn-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}

.torn-edge {
  position: relative;
  line-height: 0;
}

.torn-edge svg {
  display: block;
  width: 100%;
  height: 70px;
}

.torn-edge--flip {
  transform: rotate(180deg);
  margin-top: 0;
  margin-bottom: -1px;
}

/* ---- About Creative ---- */
.about-creative {
  position: relative;
  background: #fff;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.about-creative-map {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='%230e2a4e' d='M120,180 Q200,120 280,160 T440,140 T600,170 T720,150 L720,220 Q640,260 560,230 T400,250 T240,220 T120,240 Z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.about-creative h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--creative-navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--creative-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.about-pill-images {
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-pill {
  position: absolute;
  width: 200px;
  height: 380px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: var(--creative-shadow);
}

.about-pill--1 {
  left: 50%;
  transform: translateX(-75%) rotate(-4deg);
  z-index: 2;
}

.about-pill--2 {
  left: 50%;
  transform: translateX(-15%) rotate(4deg);
  z-index: 1;
}

.about-circle-img {
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--creative-shadow);
  z-index: 3;
}

.about-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-creative-text p {
  color: var(--creative-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.about-stats strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--creative-accent);
  line-height: 1;
}

.about-stats span {
  font-size: 0.78rem;
  color: var(--creative-text);
  line-height: 1.3;
}

/* ---- Packages Creative ---- */
.packages-creative {
  background: var(--creative-bg);
  padding: 5.5rem 0 6rem;
  position: relative;
}

.packages-creative h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  color: var(--creative-navy);
  font-weight: 700;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0 2.5rem;
}

.filter-pill {
  border: 1px solid rgba(14, 42, 78, 0.12);
  background: #fff;
  color: var(--creative-navy);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1.35rem;
  border-radius: var(--creative-radius);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--creative-accent);
  border-color: var(--creative-accent);
  color: #fff;
}

.creative-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--creative-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.creative-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(14, 42, 78, 0.18);
}

.creative-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--creative-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--creative-radius);
}

.creative-card-img {
  height: 280px;
  overflow: hidden;
}

.creative-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.creative-card:hover .creative-card-img img {
  transform: scale(1.08);
}

.creative-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.creative-card-body h4 {
  font-size: 1.15rem;
  color: var(--creative-navy);
  margin-bottom: 0.35rem;
}

.creative-card-body p {
  font-size: 0.88rem;
  color: var(--creative-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.creative-card-link {
  color: var(--creative-accent);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.creative-card-link:hover {
  color: var(--creative-accent-dark);
}

.creative-card.hidden {
  display: none;
}

/* ---- Why / Features strip ---- */
.why-creative {
  padding: 5rem 0;
  background: #fff;
}

.why-creative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-creative-item {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 24px;
  background: var(--creative-bg);
  transition: all 0.3s ease;
}

.why-creative-item:hover {
  background: #fff;
  box-shadow: var(--creative-shadow);
  transform: translateY(-4px);
}

.why-creative-item i {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--creative-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.why-creative-item h4 {
  font-size: 1rem;
  color: var(--creative-navy);
  margin-bottom: 0.5rem;
}

.why-creative-item p {
  font-size: 0.85rem;
  color: var(--creative-text);
  margin: 0;
  line-height: 1.65;
}

/* ---- Testimonials creative ---- */
.testimonials-creative {
  background: var(--creative-bg);
  padding: 5rem 0;
}

.testimonial-creative-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--creative-shadow);
  height: 100%;
}

.testimonial-creative-card .stars,
.testimonial-creative-card .stars i,
.testimonial-stars,
.testimonial-stars i {
  color: var(--creative-accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* ---- CTA Creative ---- */
.site-creative .cta-creative,
.site-creative .cta-section {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--creative-navy) 0%, #071a33 100%) !important;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-creative {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--creative-navy) 0%, #071a33 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.site-creative .cta-creative h2,
.site-creative .cta-section h2,
.cta-creative h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.site-creative .cta-creative p,
.site-creative .cta-section p,
.cta-creative p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.site-creative .cta-creative .creative-script,
.site-creative .cta-section .creative-script {
  color: #fdba74 !important;
}

/* ---- Inner page banner ---- */
.page-banner-creative {
  position: relative;
  min-height: 46vh;
  padding: 7.5rem 0 4.5rem;
  overflow: hidden;
}

.page-banner-creative-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner-creative-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(14, 42, 78, 0.92) 0%, rgba(14, 42, 78, 0.55) 55%, rgba(14, 42, 78, 0.35) 100%);
}

.page-banner-creative .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-banner-creative .torn-edge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.page-banner-creative .torn-edge svg {
  display: block;
  width: 100%;
  height: 60px;
}

.page-banner-creative h1 {
  color: #fff;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-banner-creative h1 span {
  color: var(--creative-accent);
}

.page-banner-creative p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.75;
  font-size: 1rem;
}

/* ---- Inner pages ---- */
.site-creative main {
  background: var(--creative-bg);
}

.site-creative main > section:not(.cta-creative):not(.cta-section) {
  background: #fff;
  padding: 4.5rem 0;
}

.site-creative main > section.bg-light:not(.cta-creative):not(.cta-section),
.site-creative main > section:nth-of-type(even):not(.cta-creative):not(.cta-section) {
  background: var(--creative-bg);
}

.site-creative main > section.cta-creative,
.site-creative main > section.cta-section {
  padding: 5rem 0;
}

.site-creative .intro-section {
  padding: 5rem 0;
}

.site-creative .about-image img,
.site-creative .intro-section img {
  border-radius: 24px;
  box-shadow: var(--creative-shadow);
}

.site-creative .package-card,
.site-creative .feature-card,
.site-creative .mission-card,
.site-creative .contact-form-wrap {
  border-radius: 24px;
  border: 1px solid rgba(14, 42, 78, 0.06);
  box-shadow: var(--creative-shadow);
}

.site-creative .package-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-creative .package-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.site-creative .package-card-actions {
  margin-top: auto;
}

.site-creative .package-card-img {
  height: 220px;
}

.site-creative .package-card-body h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}

.site-creative .package-highlights {
  flex: 1;
}

@media (max-width: 767.98px) {
  .site-creative .package-card-img {
    height: 200px;
  }
}

.site-creative .filter-bar,
.site-creative .filter-pills,
.site-creative .package-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.site-creative .section-label {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--creative-accent);
}

.site-creative .contact-form .form-control,
.site-creative .contact-form .form-select {
  border-radius: 14px;
  border: 1px solid rgba(14, 42, 78, 0.12);
  padding: 0.85rem 1rem;
}

.site-creative .contact-form .btn-gold {
  border-radius: var(--creative-radius);
}

.breadcrumb-creative {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.45rem 1rem;
  border-radius: var(--creative-radius);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.breadcrumb-creative a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.breadcrumb-creative .active {
  color: var(--creative-accent);
}

/* ---- Footer tweaks for creative ---- */
.site-creative .footer-v2 {
  margin-top: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .page-banner-creative {
    min-height: auto;
    padding: 6.5rem 0 4rem;
  }

  .nav-creative-bar {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .nav-creative-brand {
    flex: 1;
  }

  .nav-creative-toggle {
    order: 0;
  }

  .nav-creative-bar > .btn-creative--sm {
    order: 2;
    margin-left: 0;
  }

  .hero-creative {
    min-height: auto;
    padding: 6.5rem 0 5rem;
  }

  .hero-creative .hero-creative-row {
    min-height: auto;
  }

  .hero-creative-content {
    max-width: 100%;
  }

  .about-pill-images {
    height: 340px;
    margin: 2rem 0;
  }

  .about-pill {
    width: 160px;
    height: 300px;
  }

  .why-creative-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .nav-creative {
    top: 0.75rem;
    padding: 0 0.5rem;
  }

  .nav-creative-bar {
    padding: 0.55rem 0.75rem;
  }

  .nav-creative-brand span {
    font-size: 0.9rem;
  }

  .hero-creative {
    padding: 5.5rem 0 4.5rem;
  }

  .hero-creative-content h1 {
    font-size: 1.85rem;
  }

  .hero-creative-content p {
    font-size: 0.95rem;
  }

  .why-creative-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ============================================
   Header & Footer UI V3 — distinct premium look
   ============================================ */

/* ---- Header: full-width sticky navy bar ---- */
.site-creative .nav-creative {
  top: 0;
  padding: 0;
}

.site-creative .nav-creative-bar {
  max-width: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, #0e2a4e 0%, #0a2140 100%);
  border: none;
  border-bottom: 3px solid var(--creative-accent);
  box-shadow: 0 10px 40px rgba(10, 22, 40, 0.28);
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  min-height: 74px;
  gap: 1rem;
}

.site-creative .nav-creative-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--creative-accent), #fdba74, var(--creative-accent));
}

.site-creative .nav-creative-brand {
  margin-right: 1rem;
  padding-right: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.site-creative .nav-creative-brand img {
  width: 42px;
  height: 42px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.site-creative .nav-creative-brand span {
  color: #fff;
  font-size: 1.1rem;
}

.site-creative .nav-creative-brand em {
  color: var(--creative-accent);
}

.site-creative .nav-creative-links {
  justify-content: flex-end;
  margin-left: auto;
  margin-right: 0.5rem;
  gap: 0.15rem;
}

.site-creative .nav-creative-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

.site-creative .nav-creative-links a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--creative-accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.site-creative .nav-creative-links a:hover,
.site-creative .nav-creative-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-creative .nav-creative-links a:hover::after,
.site-creative .nav-creative-links a.active::after {
  transform: scaleX(1);
}

.site-creative .nav-creative-bar > .btn-creative--sm {
  background: transparent;
  color: #fff !important;
  border: 2px solid var(--creative-accent);
  box-shadow: none;
  padding: 0.55rem 1.5rem;
  font-weight: 600;
}

.site-creative .nav-creative-bar > .btn-creative--sm:hover {
  background: var(--creative-accent);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.site-creative .nav-creative-toggle {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-creative .nav-creative-collapse {
  background: #0a2140;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 12px;
}

.site-creative .nav-creative-mobile a {
  color: rgba(255, 255, 255, 0.85);
}

.site-creative .nav-creative-mobile a:hover,
.site-creative .nav-creative-mobile a.active {
  color: #fff;
  background: rgba(249, 115, 22, 0.15);
}

/* ---- Footer: dark premium with wave top ---- */
.site-creative .footer.footer-v2 {
  background: linear-gradient(180deg, #071a33 0%, #0e2a4e 55%, #0a2140 100%);
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.site-creative .footer.footer-v2::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--creative-accent), #fdba74, var(--creative-accent));
  z-index: 2;
}

.site-creative .footer.footer-v2::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.site-creative .footer-body {
  padding: 5.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.site-creative .footer-v2-grid {
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 3rem;
}

.site-creative .footer-v2-brand .logo-deluxe--footer .logo-title,
.site-creative .footer-v2-brand .logo-deluxe--footer .logo-subtitle {
  color: #fff;
}

.site-creative .footer-v2-brand .logo-deluxe--footer .logo-gold {
  color: var(--creative-accent);
}

.site-creative .footer-v2-brand p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 340px;
}

.site-creative .footer-v2-col h5,
.site-creative .footer-v2-contact h5 {
  color: #fff;
  border-bottom-color: rgba(249, 115, 22, 0.5);
  font-size: 0.88rem;
  letter-spacing: 1.5px;
}

.site-creative .footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.25s ease;
}

.site-creative .footer-links a:hover {
  color: var(--creative-accent);
  padding-left: 4px;
}

.site-creative .footer-links li {
  margin-bottom: 0.65rem;
}

.site-creative .social-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
  margin-right: 0.5rem;
  transition: all 0.25s ease;
}

.site-creative .social-icons a:hover {
  background: var(--creative-accent);
  border-color: var(--creative-accent);
  color: #fff;
  transform: translateY(-3px);
}

.site-creative .footer-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.site-creative .footer-info-card strong {
  color: #fff;
  font-size: 0.85rem;
}

.site-creative .footer-info-card p,
.site-creative .footer-info-card a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
}

.site-creative .footer-info-card a:hover {
  color: var(--creative-accent);
}

.site-creative .footer-info-icon {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--creative-accent);
}

.site-creative .footer-bottom-v2 {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  position: relative;
  z-index: 1;
}

.site-creative .footer-bottom-inner p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.site-creative .footer-bottom-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.site-creative .footer-bottom-nav a:hover {
  color: var(--creative-accent);
}

.site-creative .scroll-top {
  background: var(--creative-accent);
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

@media (max-width: 991.98px) {
  .site-creative .nav-creative-bar {
    border-radius: 0;
    padding: 0.65rem 1rem;
  }

  .site-creative .nav-creative-brand {
    border-right: none;
    flex: 1;
  }

  .site-creative .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-creative .footer-v2-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .site-creative .nav-creative {
    top: 0;
  }

  .site-creative .footer-v2-grid,
  .site-creative .footer-v2-nav {
    grid-template-columns: 1fr;
  }
}

/* ---- Mission & Vision Creative ---- */
.mission-vision-creative {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mission-vision-creative::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mission-card--creative {
  position: relative;
  padding: 2.25rem 2rem;
  height: 100%;
  border-left: 4px solid var(--creative-accent);
  background: linear-gradient(145deg, #fff 0%, #fafbfd 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mission-card--creative:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(14, 42, 78, 0.12);
}

.mission-card--vision {
  border-left-color: var(--creative-navy);
}

.mission-card--vision .mission-tag {
  background: rgba(14, 42, 78, 0.08);
  color: var(--creative-navy);
}

.mission-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(249, 115, 22, 0.12);
  color: var(--creative-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.15rem;
}

.mission-card--creative h3 {
  font-size: 1.45rem;
  color: var(--creative-navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mission-card--creative p {
  color: var(--creative-text);
  line-height: 1.85;
  font-size: 0.98rem;
}

/* ── Creative Logo (PAS hex mark) ── */
.pas-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(249, 115, 22, 0.45);
  box-shadow: 0 4px 18px rgba(249, 115, 22, 0.22);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pas-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-creative-brand:hover .pas-logo {
  transform: rotate(-4deg) scale(1.06);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.35);
}

.pas-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--creative-navy);
  white-space: nowrap;
}

.pas-logo-text em {
  font-style: normal;
  color: var(--creative-accent);
}

.site-creative .nav-creative-brand .pas-logo {
  width: 46px;
  height: 46px;
  padding: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.site-creative .nav-creative-brand .pas-logo-text {
  color: #fff;
  font-size: 1.1rem;
}

.site-creative .nav-creative-brand .pas-logo-text em {
  color: var(--creative-accent);
}

.logo-mark--creative {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.28);
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-mark--creative img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-deluxe:hover .logo-mark--creative {
  transform: rotate(-3deg) scale(1.05);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.loader-logo--creative {
  padding: 6px;
  background: rgba(14, 42, 78, 0.5);
  border: 2px solid rgba(249, 115, 22, 0.5);
  border-radius: 50%;
  animation: pasLogoPulse 1.6s ease-in-out infinite;
}

.loader-logo--creative img {
  display: block;
  width: 52px;
  height: 52px;
}

@keyframes pasLogoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.35);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 24px 4px rgba(249, 115, 22, 0.25);
  }
}

/* ── Toast notifications ── */
.pas-toast-container {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(420px, calc(100vw - 2rem));
  pointer-events: none;
}

.pas-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(14, 42, 78, 0.18);
  border-left: 4px solid var(--creative-accent);
  opacity: 0;
  transform: translateX(110%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: auto;
}

.pas-toast--visible {
  opacity: 1;
  transform: translateX(0);
}

.pas-toast--success {
  border-left-color: #22c55e;
}

.pas-toast--error {
  border-left-color: #ef4444;
}

.pas-toast-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.1rem;
}

.pas-toast--success .pas-toast-icon {
  color: #22c55e;
}

.pas-toast--error .pas-toast-icon {
  color: #ef4444;
}

.pas-toast-body {
  flex: 1;
  min-width: 0;
}

.pas-toast-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--creative-navy);
  margin-bottom: 0.25rem;
}

.pas-toast-msg {
  margin: 0;
  font-size: 0.9rem;
  color: var(--creative-text);
  line-height: 1.5;
}

.pas-toast-close {
  flex-shrink: 0;
  border: none;
  background: transparent;
  color: rgba(14, 42, 78, 0.45);
  padding: 0.15rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pas-toast-close:hover {
  color: var(--creative-navy);
}

@media (max-width: 575.98px) {
  .pas-toast-container {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .pas-toast {
    transform: translateY(110%);
  }

  .pas-toast--visible {
    transform: translateY(0);
  }
}

/* ============================================
   Premium Creative V4 — luxury travel aesthetic
   ============================================ */

@keyframes pasShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pasFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pasHeroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

@keyframes pasGlowPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}

/* Premium typography */
.site-creative .creative-script {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(249, 115, 22, 0.15);
}

.site-creative h2.section-title,
.site-creative .packages-creative h2,
.site-creative .about-creative h2 {
  letter-spacing: -0.02em;
}

/* Header — glass premium bar */
.site-creative .nav-creative-bar {
  background: linear-gradient(180deg, rgba(14, 42, 78, 0.97) 0%, rgba(10, 33, 64, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 12px 48px rgba(7, 26, 51, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-creative .nav-creative-bar > .btn-creative--sm {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.08));
  border: 1.5px solid rgba(249, 115, 22, 0.65);
  letter-spacing: 0.03em;
}

.site-creative .nav-creative-bar > .btn-creative--sm:hover {
  background: linear-gradient(135deg, #fb923c, var(--creative-accent));
  border-color: var(--creative-accent);
  box-shadow: 0 10px 32px rgba(249, 115, 22, 0.45);
}

/* Premium buttons */
.site-creative .btn-creative {
  background: linear-gradient(135deg, #fb923c 0%, var(--creative-accent) 45%, #ea580c 100%);
  background-size: 200% auto;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.95rem 2rem;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.site-creative .btn-creative::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.site-creative .btn-creative:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(249, 115, 22, 0.48);
}

.site-creative .btn-creative:hover::after {
  transform: translateX(120%);
}

.site-creative .btn-creative--sm {
  text-transform: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.5rem;
}

.site-creative .btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, var(--creative-accent) 50%, #ea580c 100%) !important;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.site-creative .btn-gold:hover {
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.5) !important;
  transform: translateY(-3px);
}

/* Hero — cinematic premium */
.site-creative .hero-creative::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
  animation: pasGlowPulse 6s ease-in-out infinite;
}

.site-creative .hero-creative::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.site-creative .hero-creative-bg {
  animation: pasHeroZoom 22s ease-out forwards;
}

.site-creative .hero-creative-overlay {
  background:
    linear-gradient(115deg, rgba(7, 26, 51, 0.92) 0%, rgba(14, 42, 78, 0.72) 45%, rgba(14, 42, 78, 0.4) 100%),
    linear-gradient(0deg, rgba(7, 26, 51, 0.5) 0%, transparent 40%);
}

.site-creative .hero-creative-content h1 {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.03em;
}

.site-creative .hero-creative-content h1 strong {
  background: linear-gradient(135deg, #fdba74, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.site-creative .hero-slider-dots span {
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.site-creative .hero-slider-dots span.active {
  background: linear-gradient(135deg, var(--creative-accent), var(--creative-gold));
  border-color: transparent;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.6);
}

/* Page banners — premium inner pages */
.site-creative .page-banner-creative-bg {
  animation: pasHeroZoom 24s ease-out forwards;
}

.site-creative .page-banner-creative-overlay {
  background:
    linear-gradient(120deg, rgba(7, 26, 51, 0.94) 0%, rgba(14, 42, 78, 0.65) 50%, rgba(14, 42, 78, 0.45) 100%);
}

.site-creative .page-banner-creative h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.site-creative .breadcrumb-creative {
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

/* About section — premium layout */
.site-creative .about-creative {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.site-creative .about-pill {
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--creative-shadow-lg);
}

.site-creative .about-stats {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--creative-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--creative-shadow);
}

.site-creative .about-stats strong {
  background: linear-gradient(135deg, var(--creative-accent), var(--creative-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-creative .avatar-count {
  background: linear-gradient(145deg, var(--creative-navy), #16375f);
  box-shadow: 0 8px 24px rgba(14, 42, 78, 0.3);
}

/* Package cards — glass premium */
.site-creative .packages-creative {
  background:
    radial-gradient(circle at 10% 20%, rgba(249, 115, 22, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(14, 42, 78, 0.05) 0%, transparent 40%),
    var(--creative-bg);
}

.site-creative .filter-pill {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(14, 42, 78, 0.06);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-creative .filter-pill.active {
  background: linear-gradient(135deg, #fb923c, var(--creative-accent));
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.site-creative .creative-card {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--creative-shadow);
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}

.site-creative .creative-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.35), transparent 40%, rgba(14, 42, 78, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.site-creative .creative-card:hover::before {
  opacity: 1;
}

.site-creative .creative-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--creative-shadow-lg);
}

.site-creative .creative-card-badge {
  background: linear-gradient(135deg, var(--creative-accent), #ea580c);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Why us — luxury cards */
.site-creative .why-creative-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--creative-border);
  box-shadow: 0 8px 30px rgba(14, 42, 78, 0.06);
}

.site-creative .why-creative-item:hover {
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: var(--creative-shadow-lg);
  transform: translateY(-8px);
}

.site-creative .why-creative-item i {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.18), rgba(251, 191, 36, 0.1));
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

/* Testimonials — editorial style */
.site-creative .testimonial-creative-card {
  border: 1px solid var(--creative-border);
  border-left: 4px solid var(--creative-accent);
  background: linear-gradient(145deg, #fff, #fafbfd);
  position: relative;
}

.site-creative .testimonial-creative-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: rgba(249, 115, 22, 0.12);
  pointer-events: none;
}

.site-creative .testimonial-card {
  border-left: 4px solid var(--creative-accent);
  box-shadow: var(--creative-shadow);
}

/* CTA — premium glow */
.site-creative .cta-creative::before,
.site-creative .cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 65%);
  pointer-events: none;
  animation: pasGlowPulse 5s ease-in-out infinite;
}

/* Inner page cards */
.site-creative .package-card,
.site-creative .feature-card,
.site-creative .mission-card--creative,
.site-creative .contact-form {
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  border: 1px solid var(--creative-border);
  box-shadow: var(--creative-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-creative .package-card:hover,
.site-creative .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--creative-shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}

.site-creative .feature-icon {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.08)) !important;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.12);
}

.site-creative .mission-card--creative {
  backdrop-filter: blur(8px);
}

.site-creative .mission-card--creative:hover {
  border-left-width: 5px;
}

/* Contact — premium split layout */
.site-creative .contact-info-card {
  background: linear-gradient(145deg, #0e2a4e 0%, #071a33 55%, #0a2140 100%);
  border-radius: 24px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  box-shadow: var(--creative-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.site-creative .contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.site-creative .contact-info-icon {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.1));
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 14px !important;
}

.site-creative .contact-form {
  padding: 2.25rem;
  border-radius: 24px;
}

.site-creative .contact-form .form-control:focus,
.site-creative .contact-form .form-select:focus {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

/* Footer CTA bar */
.site-creative .footer-cta-bar {
  background: linear-gradient(135deg, #0e2a4e 0%, #16375f 50%, #0a2140 100%);
  border-bottom: 1px solid rgba(249, 115, 22, 0.2);
  position: relative;
  overflow: hidden;
}

.site-creative .footer-cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.08), transparent);
  animation: pasShimmer 8s linear infinite;
  background-size: 200% 100%;
  pointer-events: none;
}

.site-creative .footer-cta-inner h3 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

/* Scroll to top — premium */
.site-creative .scroll-top {
  background: linear-gradient(135deg, var(--creative-accent), #ea580c);
  border: none;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.45);
}

.site-creative .scroll-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.55);
}

/* Stats boxes on about */
.site-creative .stats-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.site-creative .stats-box:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.35);
}

.site-creative .stats-number {
  background: linear-gradient(135deg, #fdba74, var(--creative-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accordion FAQ premium */
.site-creative .accordion-deluxe .accordion-button:not(.collapsed) {
  color: var(--creative-navy);
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.08), transparent);
}

.site-creative .accordion-deluxe .accordion-item {
  border: 1px solid var(--creative-border);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 16px rgba(14, 42, 78, 0.04);
}

/* Logo hover — premium glow */
.site-creative .pas-logo {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.site-creative .pas-logo-text em {
  background: linear-gradient(135deg, #fdba74, var(--creative-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-creative .info-card {
  border: 1px solid var(--creative-border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--creative-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-creative .info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--creative-shadow-lg);
}

.site-creative .page-loader {
  background: linear-gradient(145deg, var(--creative-navy-deep), var(--creative-navy));
}

.site-creative .loader-logo--creative {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}

/* Toast — premium glass */
.site-creative .pas-toast {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 42, 78, 0.08);
  box-shadow: var(--creative-shadow-lg);
}

/* ---- Trade Fair / Venue Detail (BITEC-style) ---- */
.site-creative .venue-hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

.site-creative .venue-details-section {
  padding: 4.5rem 0 3rem;
}

.site-creative .venue-body p {
  color: var(--creative-text);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.15rem;
}

.site-creative .venue-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.site-creative .venue-meta-card {
  background: #fff;
  border: 1px solid var(--creative-border);
  border-radius: 18px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 28px rgba(14, 42, 78, 0.06);
}

.site-creative .venue-meta-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--creative-navy);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-creative .venue-meta-card h3 i {
  color: var(--creative-accent);
}

.site-creative .venue-meta-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-creative .venue-meta-card li {
  color: var(--creative-text);
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.site-creative .venue-sidebar {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--creative-border);
  box-shadow: var(--creative-shadow);
  position: sticky;
  top: 6.5rem;
}

.site-creative .venue-sidebar-img {
  height: 220px;
  overflow: hidden;
}

.site-creative .venue-sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-creative .venue-sidebar-body {
  padding: 1.5rem;
}

.site-creative .venue-sidebar-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--creative-navy);
  margin-bottom: 1rem;
}

.site-creative .venue-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.site-creative .venue-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--creative-text);
  font-size: 0.92rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(14, 42, 78, 0.06);
}

.site-creative .venue-facts li:last-child {
  border-bottom: none;
}

.site-creative .venue-facts i {
  color: var(--creative-accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.site-creative .venue-facilities-section {
  padding: 4.5rem 0;
}

.site-creative .venue-facility-card {
  background: #fff;
  border: 1px solid var(--creative-border);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: 0 8px 28px rgba(14, 42, 78, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-creative .venue-facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--creative-shadow);
}

.site-creative .venue-facility-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.04));
  color: var(--creative-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.site-creative .venue-facility-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--creative-navy);
  margin-bottom: 0.85rem;
}

.site-creative .venue-facility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-creative .venue-facility-card li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
  color: var(--creative-text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-creative .venue-facility-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--creative-accent);
}

.site-creative .venue-pricing-note {
  margin-top: 2.5rem;
  background: var(--creative-navy);
  color: #fff;
  border-radius: 20px;
  padding: 1.75rem 2rem;
}

.site-creative .venue-pricing-note h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #fff;
}

.site-creative .venue-pricing-note p {
  color: rgba(255, 255, 255, 0.7);
}

.site-creative .more-venues-section {
  padding: 4.5rem 0;
}

.site-creative .more-venue-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--creative-border);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 28px rgba(14, 42, 78, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-creative .more-venue-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--creative-shadow-lg);
}

.site-creative .more-venue-img {
  height: 220px;
  overflow: hidden;
}

.site-creative .more-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.site-creative .more-venue-card:hover .more-venue-img img {
  transform: scale(1.06);
}

.site-creative .more-venue-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.site-creative .more-venue-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--creative-navy);
  margin-bottom: 0.75rem;
}

.site-creative .more-venue-body p {
  color: var(--creative-text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  flex: 1;
}

.site-creative .more-venue-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--creative-navy);
  font-weight: 500;
}

.site-creative .more-venue-meta i {
  color: var(--creative-accent);
  margin-right: 0.25rem;
}

.site-creative .nav-creative-links a {
  white-space: nowrap;
  font-size: 0.8rem;
  padding: 0.45rem 0.65rem;
}

@media (max-width: 991.98px) {
  .site-creative .venue-meta-row {
    grid-template-columns: 1fr;
  }

  .site-creative .venue-sidebar {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .site-creative .venue-pricing-note {
    padding: 1.35rem 1.25rem;
    text-align: center;
  }

  .site-creative .venue-pricing-note .d-flex {
    justify-content: center !important;
  }
}
