:root {
  --primary-teal: #10a9a8;
  --dark-teal: #006e78;
  --navy: #07304e;
  --accent-gold: #f5c544;
  --soft-bg: #eef9fb;
  --text-dark: #15344a;
  --white: #ffffff;
  --muted: #6d8190;
  --shadow-soft: 0 18px 45px rgba(12, 62, 83, 0.14);
  --shadow-card: 0 14px 32px rgba(11, 86, 102, 0.12);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
}

.contact-page {
  --contact-navy: #071f46;
  --contact-teal: #0aa7a2;
  --contact-teal-dark: #009590;
  --contact-gold: #e7ac22;
  --contact-muted: #26344d;
  --contact-border: #d9e2ee;
  --contact-soft: #effafd;
  color: var(--contact-muted);
  /* font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #ffffff; */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  line-height: 1.65;
  font-size: 0.95rem;
  font-weight: 400;
  color: #243f52;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container-xl {
  max-width: 1200px;
}

.section {
  padding: clamp(46px, 6vw, 76px) 0;
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
  text-align: center;
}

.section-heading h2,
.limited-content h2,
.about-card h2 {
  color: var(--navy);
  /* font-weight: 800; */
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.section-line {
  display: block;
  width: 58px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--primary-teal);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-teal);
  font-size: 0.78rem;
  /* font-weight: 800; */
  font-weight: 600;
}

.btn-teal {
  border: 0;
  border-radius: 7px;
  color: #ffffff;
  /* font-weight: 800; */
  font-weight: 600;
  background: linear-gradient(135deg, #12b7ad, #007982);
  box-shadow: 0 10px 22px rgba(0, 137, 139, 0.2);
}

.btn-teal:hover,
.btn-teal:focus {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 137, 139, 0.28);
}

.btn,
.profile-card,
.inclusion-card,
.limited-banner {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.fade-up {
  animation: fadeUp 0.75s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

/* Top bar */
.top-contact {
  min-height: 34px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 400;
  background: linear-gradient(90deg, #00717c 0%, #006274 45%, #07506a 100%);
}

.top-contact__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 34px;
}

.top-contact__links,
.top-contact__actions,
.social-mini {
  display: flex;
  align-items: center;
}

.top-contact__links {
  gap: clamp(18px, 4vw, 54px);
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.top-contact i {
  font-size: 0.9rem;
}

.top-contact__actions {
  gap: 18px;
}

.social-mini {
  gap: 15px;
}

.social-mini a {
  opacity: 0.96;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 5px;
  color: var(--text-dark);
  background: #ffffff;
}

.language-select i {
  color: #d6a321;
}

.language-select select {
  width: 112px;
  border: 0;
  color: #526170;
  font-size: 0.78rem;
  font-weight: 400;
  outline: 0;
  background: transparent;
}

/* Header */
.site-header {
  /* position: relative; */
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(7, 48, 78, 0.08);
}

.site-header .navbar {
  min-height: 76px;
  padding: 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: clamp(145px, 15vw, 187px);
  height: auto;
}

.navbar-nav {
  gap: 3px;
}

.navbar .nav-link {
  position: relative;
  padding: 29px 12px;
  color: var(--navy);
  /* font-size: 0.76rem;
  font-weight: 800; */
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-teal);
}

.navbar .dropdown-toggle::after {
  margin-left: 0.28em;
  vertical-align: 0.1em;
  border-top-width: 0.28em;
}

.header-cta {
  min-width: 120px;
  padding: 12px 18px;
  font-size: 0.82rem;
}

.dropdown-menu {
  border: 1px solid rgba(6, 126, 137, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.dropdown-item {
  color: var(--text-dark);
  font-size: 0.85rem;
  /* font-weight: 700; */
  font-weight: 600;
}

.dropdown-item:hover {
  color: var(--dark-teal);
  background: var(--soft-bg);
}

/* Hero */
.hero-section {
  position: relative;
  /* min-height: clamp(520px, 65vw, 710px); */
  overflow: hidden;
  color: #ffffff;
  /* isolation: isolate;
  background: #04384a; */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 70, 95, 0.9) 0%, rgba(0, 102, 111, 0.82) 45%, rgba(9, 79, 59, 0.46) 100%),
    url("../images/hero-banner-clean.png") center / cover no-repeat;
}

.hero-section::before {
  /* position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 54% 64%, rgba(255, 255, 255, 0.16), transparent 25%),
    linear-gradient(105deg, rgba(0, 170, 176, 0.22) 0 32%, transparent 32.3%),
    linear-gradient(90deg, rgba(0, 36, 54, 0.58), rgba(0, 84, 91, 0.34) 55%, rgba(242, 193, 64, 0.12)); */
}

.hero-section::after {
  /* position: absolute;
  right: -8%;
  bottom: -88px;
  left: -8%;
  z-index: -1;
  height: 215px;
  border-top: 6px solid rgba(245, 197, 68, 0.9);
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
  content: "";
  background: #ffffff; */
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(500px, 63vw, 690px);
  padding-top: 38px;
  padding-bottom: 130px;
}

.hero-copy {
  width: min(680px, 100%);
  margin-top: 4px;
  text-align: center;
  text-shadow: 0 8px 22px rgba(0, 32, 49, 0.2);
}

.event-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #22c8a6;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
}

.leaf-mark {
  display: inline-grid;
  width: clamp(44px, 7vw, 72px);
  height: clamp(44px, 7vw, 72px);
  place-items: center;
  border-radius: 20px 48px 20px 48px;
  color: #ffffff;
  background: linear-gradient(140deg, #88c843, #01b8b5);
  transform: rotate(-8deg);
}

.leaf-mark i {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.hero-copy h1 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(4.3rem, 10vw, 8.4rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.country-ribbon {
  display: inline-block;
  margin: 13px auto 9px;
  padding: 6px clamp(26px, 5vw, 58px);
  border-radius: 7px;
  color: #07506a;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(180deg, #f8d56c 0%, #efb62f 100%);
  box-shadow: 0 9px 16px rgba(0, 0, 0, 0.16);
}

.hero-copy p {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2.1vw, 1.62rem);
  font-weight: 800;
}

.event-dates {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(580px, 100%);
  margin-bottom: 37px;
  padding: 18px 26px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(1, 57, 75, 0.34);
  backdrop-filter: blur(3px);
}

.date-box {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 210px;
  text-align: left;
}

.date-box i {
  font-size: 2.05rem;
}

.date-box strong {
  display: block;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.date-box span {
  display: block;
  margin-top: 5px;
  color: #13c9c5;
  font-size: clamp(1.2rem, 2.3vw, 1.9rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.date-box:last-child span {
  color: #9bcf3a;
}

.date-divider {
  width: 1px;
  height: 72px;
  margin: 0 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 202px;
  min-height: 58px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-hero-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #18c4bd, #079595);
  box-shadow: 0 14px 28px rgba(0, 52, 70, 0.25);
}

.btn-hero-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.74);
  color: #ffffff;
  background: rgba(0, 25, 41, 0.12);
}

.btn-hero-outline:hover {
  border-color: #ffffff;
  color: var(--navy);
  background: #ffffff;
  transform: translateY(-2px);
}

/* About */
.about-section {
  margin-top: -8px;
  padding-top: 0;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(13, 162, 169, 0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.about-card::after {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 180px;
  height: 120px;
  content: "";
  opacity: 0.22;
  background-image: radial-gradient(circle, #17aaa8 1px, transparent 1px);
  background-size: 8px 8px;
}

.about-card h2 {
  max-width: 530px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.16;
}

.about-card p {
  /* max-width: 650px; */
  margin-top: 22px;
  margin-bottom: 0;
  color: #243f52;
  /* font-size: 0.95rem; */
  /* font-weight: 600; */
  /* font-weight: 400; */
}

.about-image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 360px;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(8, 89, 115, 0.18);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Product cards */
.product-section {
  padding-top: 44px;
}

.profile-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 188px;
  padding: 25px 18px 22px;
  border: 1px solid rgba(21, 164, 174, 0.18);
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f5fdfe);
  box-shadow: var(--shadow-card);
}

.profile-card:hover,
.inclusion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(11, 86, 102, 0.18);
}

.profile-card h3 {
  margin: 18px 0 15px;
  color: var(--navy);
  font-size: 1.04rem;
  /* font-weight: 850; */
  font-weight: 600;
}

.icon-bubble {
  display: inline-grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 113, 124, 0.12);
}

.icon-bubble i {
  font-size: 2.15rem;
}

.icon-teal {
  color: #12a8a7;
}

.icon-blue {
  color: #2c99d4;
}

.icon-green {
  color: #82bd34;
}

.icon-gold {
  color: #f0ae21;
}

.mini-line {
  width: 43px;
  height: 3px;
  border-radius: 999px;
}

.mini-line.teal {
  background: #12a8a7;
}

.mini-line.blue {
  background: #2c99d4;
}

.mini-line.green {
  background: #82bd34;
}

.mini-line.gold {
  background: #f0ae21;
}

/* Limited banner */
.limited-section {
  padding: 12px 0 44px;
}

.limited-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  overflow: hidden;
  min-height: 158px;
  padding: clamp(22px, 4vw, 34px) clamp(24px, 5vw, 62px);
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.13), transparent 22%),
    linear-gradient(135deg, #078d90 0%, #00717c 50%, #04637b 100%);
  box-shadow: var(--shadow-card);
}

.limited-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background:
    linear-gradient(120deg, transparent 0 20%, rgba(255, 255, 255, 0.18) 20.2% 20.6%, transparent 20.8% 100%),
    radial-gradient(circle at 18% 38%, rgba(255, 255, 255, 0.42) 1px, transparent 2px),
    radial-gradient(circle at 74% 32%, rgba(255, 255, 255, 0.42) 1px, transparent 2px);
  background-size: auto, 95px 95px, 115px 115px;
}

.limited-icon,
.limited-content {
  position: relative;
  z-index: 1;
}

.limited-icon {
  display: grid;
  flex: 0 0 auto;
  width: clamp(86px, 12vw, 128px);
  height: clamp(86px, 12vw, 128px);
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #ffffff;
}

.limited-icon i {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.limited-content {
  flex: 1;
  text-align: left;
}

.limited-content h2 {
  margin-bottom: 9px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
}

.gold-divider {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  /* width: min(260px, 100%); */
  width: min(700px, 100%);
  color: var(--accent-gold);
  font-size: 1rem;
}

.gold-divider::before,
.gold-divider::after {
  flex: 1;
  height: 2px;
  content: "";
  background: rgba(245, 197, 68, 0.9);
}

.limited-content p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.92);
  /* font-weight: 700; */
  font-weight: 500;
}

/* Inclusions */
.inclusions-section {
  position: relative;
  padding-top: 8px;
}

.inclusions-section::before {
  position: absolute;
  top: 130px;
  left: 50%;
  width: min(760px, 90vw);
  height: 360px;
  content: "";
  opacity: 0.08;
  transform: translateX(-50%);
  background-image: radial-gradient(circle, var(--dark-teal) 1px, transparent 1.6px);
  background-size: 7px 7px;
  mask-image: radial-gradient(ellipse, #000 45%, transparent 72%);
}

.inclusions-grid {
  position: relative;
  z-index: 1;
}

.inclusion-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 194px;
  padding: 28px 18px;
  border: 1px solid rgba(21, 164, 174, 0.18);
  border-radius: 11px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.inclusion-icon {
  display: inline-grid;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(20, 169, 168, 0.24);
  border-radius: 50%;
  color: var(--primary-teal);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 108, 119, 0.1);
}

.inclusion-icon i {
  font-size: 2.05rem;
}

.inclusion-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.03rem;
  /* font-weight: 850; */
  font-weight: 600;
  line-height: 1.35;
}

/* Organizer */
.organizer-section {
  padding: 4px 0 48px;
}

.organizer-box {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(24px, 4vw, 36px);
  border: 2px solid rgba(14, 169, 168, 0.36);
  border-radius: 22px;
  background: linear-gradient(90deg, #edfafa 0%, #f8ffff 50%, #edfafa 100%);
}

.organizer-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.organizer-brand p {
  margin: 0 0 16px;
  color: var(--dark-teal);
  font-size: 1.02rem;
  font-weight: 700;
}

.organizer-brand img {
  width: min(250px, 82%);
  margin-bottom: 8px;
}

.organizer-brand a {
  color: var(--navy);
  font-size: 1.05rem;
  /* font-weight: 850; */
  font-weight: 600;
}

.organizer-divider {
  width: 2px;
  height: 150px;
  background: rgba(0, 128, 139, 0.32);
}

.organizer-features {
  display: grid;
  gap: 20px;
}

.organizer-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  font-size: 1.02rem;
}

.organizer-feature span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary-teal);
}

.organizer-feature i {
  font-size: 1.35rem;
}

/* Inquiry */
.inquiry-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 86px;
  background:
    linear-gradient(180deg, #f5fbff 0%, #eef8fb 100%);
}

.inquiry-section::before,
.inquiry-section::after {
  position: absolute;
  top: 30px;
  width: 180px;
  height: 360px;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, rgba(5, 118, 130, 0.32) 1px, transparent 1px),
    linear-gradient(150deg, rgba(5, 118, 130, 0.32) 1px, transparent 1px);
  background-size: 38px 38px;
}

.inquiry-section::before {
  left: -40px;
}

.inquiry-section::after {
  right: -40px;
}

.inquiry-form {
  position: relative;
  z-index: 1;
  max-width: 1090px;
  margin: 0 auto;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #9aa7af;
  font-size: 1.02rem;
  transform: translateY(-50%);
}

.textarea-icon i {
  top: 25px;
  transform: none;
}

.form-control {
  min-height: 62px;
  padding: 18px 18px 18px 50px;
  border: 1px solid #d9e2e8;
  border-radius: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(19, 86, 113, 0.04);
}

.form-control:focus {
  border-color: rgba(13, 169, 168, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(13, 169, 168, 0.12);
}

textarea.form-control {
  min-height: 104px;
  resize: vertical;
}

.submit-btn {
  min-width: 196px;
  margin-top: 4px;
  padding: 13px 24px;
}

/* Footer */
.site-footer {
  position: relative;
  color: #d7eef3;
  background: linear-gradient(135deg, #06364d 0%, #012f47 45%, #006b74 100%);
}

.footer-main {
  padding: 38px 0 34px;
}

.footer-main .row > [class*="col-"] {
  position: relative;
}

.footer-main .row > [class*="col-"]:not(:first-child)::before {
  position: absolute;
  top: 5px;
  bottom: 8px;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  display: none;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 16px;
  /* filter: brightness(0) invert(1); */
}

.footer-brand p,
.newsletter-text {
  max-width: 255px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #ffffff;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.03rem;
  /* font-weight: 850; */
  font-weight: 600;
}

.footer-links,
.contact-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7eef3;
  font-size: 0.83rem;
  font-weight: 400;
}

.footer-links a::before {
  color: var(--primary-teal);
  content: "\F285";
  font-family: "bootstrap-icons";
  font-size: 0.72rem;
}

.footer-links a:hover,
.contact-list a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #d7eef3;
  font-size: 0.83rem;
  font-weight: 400;
}

.contact-list span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(16, 169, 168, 0.72);
}

.contact-list p {
  margin: 0;
}

.newsletter-form {
  display: flex;
  max-width: 305px;
  border: 2px solid rgba(49, 195, 198, 0.65);
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 14px 17px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 400;
  outline: 0;
  background: rgba(4, 43, 65, 0.42);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-form button {
  width: 56px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, #27c3b5, #0a9c9e);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 400;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

/* Floating actions */
.floating-whatsapp,
.scroll-top {
  position: fixed;
  right: 28px;
  z-index: 100;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp {
  bottom: 26px;
  background: #27c45b;
  font-size: 1.65rem;
}

.scroll-top {
  bottom: 92px;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--primary-teal);
  font-size: 1.35rem;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover,
.scroll-top:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Homepage: Upcoming exhibitions */
.upcoming-events-section {
  padding: 70px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fcfc 100%);
}

.upcoming-events-section .section-title {
  max-width: 760px;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.upcoming-events-section h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 750;
  line-height: 1.15;
}

.upcoming-events-section .section-title p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.event-banner-card {
  overflow: hidden;
  border: 1px solid rgba(16, 169, 168, 0.18);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 48, 78, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.event-banner-card:hover {
  border-color: rgba(16, 169, 168, 0.34);
  box-shadow: 0 22px 48px rgba(7, 48, 78, 0.16);
  transform: translateY(-6px);
}

.event-banner-media {
  position: relative;
  min-height: 300px;
  /* height: 245px;
  min-height: 245px;
  background: linear-gradient(135deg, rgba(16, 169, 168, 0.1), rgba(245, 197, 68, 0.16)); */
}

.event-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-banner-media--soft {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(245, 197, 68, 0.2), transparent 34%),
    linear-gradient(135deg, #f3fbfa 0%, #ffffff 52%, #edf8f3 100%);
}

.event-banner-media--soft img {
  width: min(270px, 78%);
  object-fit: contain;
}

.event-banner-content {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(24px, 3vw, 32px);
}

.event-category {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--dark-teal);
  font-size: 0.74rem;
  font-weight: 750;
  background: rgba(16, 169, 168, 0.1);
}

.event-banner-content h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  font-weight: 750;
  line-height: 1.25;
}

.event-meta {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.event-meta li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.45;
}

.event-meta i {
  color: var(--primary-teal);
  font-size: 1.08rem;
  line-height: 1.35;
}

.event-banner-content p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

.event-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.event-banner-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.88rem;
}

.btn-event-outline {
  border: 2px solid rgba(16, 169, 168, 0.55);
  border-radius: 7px;
  color: var(--dark-teal);
  font-weight: 600;
  background: #ffffff;
}

.btn-event-outline:hover,
.btn-event-outline:focus {
  border-color: var(--primary-teal);
  color: #ffffff;
  background: var(--primary-teal);
  box-shadow: 0 12px 24px rgba(0, 137, 139, 0.18);
  transform: translateY(-2px);
}

/* Homepage: Core sectors and testimonials */
.core-sectors-section,
.testimonials-section {
  padding: clamp(70px, 8vw, 90px) 0;
}

.core-sectors-section {
  background: #ffffff;
}

.testimonials-section {
  background: #f1f4ff;
}

.core-sector-card,
.testimonial-card {
  border: 1px solid rgba(7, 48, 78, 0.09);
  border-radius: 18px;
  background: #ffffff;
  /* box-shadow: 0 14px 32px rgba(7, 48, 78, 0.08); */
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.core-sector-card{
  box-shadow: 0 14px 32px rgba(7, 48, 78, 0.08);
}
.core-sector-card:hover{
  box-shadow: 0 22px 46px rgba(7, 48, 78, 0.14);
}
.core-sector-card:hover,
.testimonial-card:hover {
  border-color: rgba(16, 169, 168, 0.24);
  /* box-shadow: 0 22px 46px rgba(7, 48, 78, 0.14); */
  transform: translateY(-5px);
}

.core-sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 205px;
  padding: 34px 24px;
  text-align: center;
}

.core-sector-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(16, 169, 168, 0.08);
}

.core-sector-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.core-sector-icon i {
  display: none;
  color: var(--primary-teal);
  font-size: 2.45rem;
  line-height: 1;
}

.core-sector-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.35;
}

.testimonials-swiper {
  width: 100%;
  overflow: hidden;
}

.testimonials-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  display: flex;
  flex-shrink: 0;
  height: auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 360px;
  padding: 28px;
}

.testimonial-card p {
  margin: 0;
  color: #314c5f;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  height: 210px;
  overflow: auto;
  text-align: justify;
  padding-right: 10px;
}

.testimonial-author {
  margin-top: auto;
  padding-top: 22px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}
.testimonial-author strong{
   font-weight: 700;
}
.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5cfdd;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.testimonial-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--primary-teal);
}

@media (max-width: 1199.98px) {
  .site-header .navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 12px 0 18px;
    border-top: 1px solid rgba(7, 48, 78, 0.08);
  }

  .navbar .nav-link {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .header-cta {
    display: inline-flex;
    width: max-content;
    margin-top: 10px;
  }
}

@media (max-width: 991.98px) {
  .top-contact__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 0;
  }

  .top-contact__links,
  .top-contact__actions {
    justify-content: center;
  }

  .hero-section {
    min-height: 640px;
  }

  .hero-content {
    min-height: 620px;
  }

  .about-card {
    text-align: left;
  }

  .about-image-wrap,
  .about-image-wrap img {
    min-height: 300px;
  }

  .organizer-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .organizer-divider {
    width: 100%;
    height: 1px;
  }

  .organizer-features {
    width: min(350px, 100%);
    margin: 0 auto;
    text-align: left;
  }

  .footer-main .row > [class*="col-"]:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 42px 0;
  }

  .upcoming-events-section {
    padding: 40px 0;
  }

  .event-banner-media,
  .event-banner-media img {
    height: 205px;
    min-height: 205px;
  }

  .event-banner-content {
    min-height: 0;
  }

  .event-banner-actions .btn {
    width: 100%;
  }

  .top-contact__links {
    flex-direction: column;
    gap: 4px;
  }

  .top-contact__actions {
    flex-wrap: wrap;
  }

  .hero-section {
    /* min-height: 675px; */
    min-height: auto;
  }

  .hero-section::after {
    bottom: -110px;
    height: 180px;
  }

  .hero-content {
    min-height: 655px;
    padding-bottom: 104px;
  }

  .event-brand {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 18vw, 6.4rem);
  }

  .country-ribbon {
    width: min(420px, 94%);
    padding-right: 10px;
    padding-left: 10px;
  }

  .event-dates {
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    width: min(360px, 100%);
    padding: 19px;
  }

  .date-box {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .date-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .btn-pill {
    width: min(270px, 100%);
  }

  .about-card {
    padding: 26px 18px;
  }

  .limited-banner {
    flex-direction: column;
    text-align: center;
  }

  .limited-content {
    text-align: center;
  }

  .organizer-brand img {
    width: min(220px, 90%);
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .container-xl {
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar-brand img {
    width: 142px;
  }

  .hero-copy p {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-image-wrap,
  .about-image-wrap img {
    min-height: 240px;
  }

  .profile-card,
  .inclusion-card {
    min-height: 168px;
  }

  .inquiry-section::before,
  .inquiry-section::after {
    display: none;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }

  .floating-whatsapp,
  .scroll-top {
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .scroll-top {
    bottom: 82px;
  }
}

/* Event 2: Traditional Medicines & Wellness Expo */
.event-page {
  --event-teal: var(--primary-teal);
  --event-dark: var(--dark-teal);
  --event-navy: var(--navy);
  --event-gold: var(--accent-gold);
  --event-line: rgba(16, 169, 168, 0.28);
  --event-text: var(--text-dark);
  --event-shadow: 0 14px 34px rgba(13, 69, 79, 0.08);
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  padding: 28px 0 26px;
  color: var(--event-text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
}

.event-page a {
  color: inherit;
  text-decoration: none;
}

.event-page img {
  display: block;
  max-width: 100%;
}

.event-page .soft-card {
  border: 1px solid var(--event-line);
  border-radius: 14px;
  background: linear-gradient(105deg, #ffffff 0%, #f7fffd 100%);
  box-shadow: var(--event-shadow);
}

.event-page .intro-card {
  min-height: 310px;
  overflow: hidden;
}

.event-page .intro-card > .card-body {
  padding: 34px 44px;
}

.event-page .intro-media img {
  width: 226px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.event-page .intro-content h1 {
  max-width: 750px;
  margin: 0;
  color: var(--event-dark);
  font-size: clamp(1.45rem, 2.5vw, 2.18rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.event-page .intro-content p {
  max-width: 820px;
  margin: 11px 0 0;
  color: #1c2f38;
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  font-weight: 400;
}

.event-page .title-accent {
  position: relative;
  display: block;
  width: 110px;
  height: 16px;
  margin: 6px auto 0;
  background:
    radial-gradient(circle at 50px 8px, var(--event-gold) 0 3px, transparent 3.5px),
    radial-gradient(circle at 60px 8px, var(--event-gold) 0 3px, transparent 3.5px);
}

.event-page .intro-content .title-accent {
  margin-left: 0;
}

.event-page .title-accent::before,
.event-page .title-accent::after {
  position: absolute;
  top: 7px;
  width: 48px;
  height: 1px;
  content: "";
  background: rgba(245, 197, 68, 0.75);
}

.event-page .title-accent::before {
  left: 0;
}

.event-page .title-accent::after {
  right: 0;
}

.event-page .section-title {
  text-align: center;
}

.event-page .section-title h2 {
  margin: 0;
  color: var(--event-dark);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.2;
}

.event-page.profile-section {
  padding: 30px 12px 0;
}

.event-page .exhibitor-grid {
  margin-top: 22px;
}

.event-page .profile-tile {
  min-height: 64px;
  border: 1px solid var(--event-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 9px 20px rgba(5, 71, 79, 0.035);
}

.event-page .profile-tile .card-body {
  min-height: 64px;
  padding: 8px 16px;
}

.event-page .profile-tile i {
  flex: 0 0 32px;
  color: var(--event-teal);
  font-size: 1.75rem;
  line-height: 1;
}

.event-page .profile-tile h3 {
  margin: 0;
  color: #102d35;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.event-page.audience-section {
  margin-top: 32px;
}

.event-page .audience-card {
  position: relative;
  min-height: 346px;
  overflow: hidden;
  border-radius: 14px;
  padding: 34px 32px 30px 143px;
  box-shadow: var(--event-shadow);
}

.event-page .audience-card .card-body {
  padding: 0;
}

.event-page .visitor-card {
  background: linear-gradient(110deg, rgba(16, 169, 168, 0.11) 0%, #ffffff 100%);
}

.event-page .joiner-card {
  background: linear-gradient(110deg, rgba(7, 48, 78, 0.08) 0%, #ffffff 100%);
}

.event-page .audience-icon {
  position: absolute;
  top: 22px;
  left: 32px;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 69, 81, 0.18);
}

.event-page .audience-icon i {
  font-size: 2.1rem;
}

.event-page .green-icon {
  background: linear-gradient(135deg, var(--event-teal), var(--event-dark));
}

.event-page .blue-icon {
  background: linear-gradient(135deg, #0c83b8, var(--event-navy));
}

.event-page .audience-content {
  position: relative;
  z-index: 1;
}

.event-page .audience-content h2 {
  margin: 0 0 18px;
  color: var(--event-teal);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 600;
}

.event-page .joiner-card .audience-content h2 {
  color: var(--event-navy);
}

.event-page .audience-content ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  color: #102b39;
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

.event-page .audience-content li {
  position: relative;
  padding-left: 25px;
}

.event-page .flower-list li::before {
  position: absolute;
  left: 0;
  /* color: var(--event-teal); */
  content: "\F633";
  font-family: "bootstrap-icons";
  font-size: 0.95rem;
}

.event-page .phone-list li::before {
  position: absolute;
  left: 0;
  color: var(--event-navy);
  content: "\F5C1";
  font-family: "bootstrap-icons";
  font-size: 0.78rem;
}

.event-page .audience-art {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.event-page .visitor-art {
  bottom: 0;
  left: 0;
  width: 198px;
  opacity: 0.58;
}

.event-page .kremlin-art {
  right: 0;
  bottom: 0;
  width: 207px;
  opacity: 0.55;
}

.event-page .why-card {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  background: linear-gradient(110deg, #fbfdf8 0%, rgba(16, 169, 168, 0.07) 100%);
}

.event-page .why-card > .card-body {
  padding: 34px 30px 26px;
}

.event-page .why-grid {
  margin-top: 24px;
}

.event-page .why-grid article {
  margin-bottom: 14px;
}

.event-page .why-grid h3 {
  margin: 0 0 3px;
  color: var(--event-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.event-page .why-grid p {
  margin: 0;
  color: #41545a;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
}

.event-page .why-market-content {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: #050505;
  font-size: 0.94rem;
  line-height: 1.62;
}

.event-page .why-market-content p {
  margin: 0 0 16px;
  color: #41545a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.event-page .why-market-content article {
  margin-bottom: 16px;
}

.event-page .why-market-content article:last-child {
  margin-bottom: 0;
}

.event-page .why-market-content h3 {
  margin: 0 0 10px;
  color: var(--event-dark);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.event-page .why-market-content ul {
  margin: 0;
  padding-left: 1.35rem;
}

.event-page .why-market-content li {
  margin-bottom: 5px;
  color: #41545a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.event-page .why-market-content li:last-child {
  margin-bottom: 0;
}

.event-page .leaf-art {
  position: absolute;
  right: -1px;
  bottom: -2px;
  width: 118px;
  opacity: 0.92;
}

.event-page.countries-section {
  padding-top: 34px;
}

.event-page .country-grid {
  width: min(930px, 100%);
  margin: 20px auto 0;
}

.event-page .country-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 8px;
  border: 1px solid #d2e0e3;
  border-radius: 8px;
  color: #172c34;
  font-size: 0.84rem;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 7px 16px rgba(15, 66, 78, 0.035);
}

.event-page .flag {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 18px;
  margin-right: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background: #f5f5f5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.event-page .am { background: linear-gradient(#d8202f 0 33.33%, #21468b 33.33% 66.66%, #f2a800 66.66%); }
.event-page .by { background: linear-gradient(#d22730 0 66.66%, #009b3a 66.66%); }
.event-page .by::before { position: absolute; top: 0; left: 0; width: 6px; height: 100%; content: ""; background: repeating-linear-gradient(45deg, #fff 0 2px, #d22730 2px 4px); }
.event-page .eg { background: linear-gradient(#ce1126 0 33.33%, #fff 33.33% 66.66%, #000 66.66%); }
.event-page .eg::after { position: absolute; top: 7px; left: 13px; width: 4px; height: 4px; border-radius: 50%; content: ""; background: #c9a227; }
.event-page .ge { background: #fff; }
.event-page .ge::before { position: absolute; top: 7px; left: 0; width: 100%; height: 4px; content: ""; background: #d71920; }
.event-page .ge::after { position: absolute; top: 0; left: 13px; width: 4px; height: 100%; content: ""; background: #d71920; }
.event-page .hu { background: linear-gradient(#ce2939 0 33.33%, #fff 33.33% 66.66%, #477050 66.66%); }
.event-page .id { background: linear-gradient(#ce1126 0 50%, #fff 50%); }
.event-page .kz { background: #00abc2; }
.event-page .kz::after { position: absolute; top: 6px; left: 11px; width: 8px; height: 8px; border-radius: 50%; content: ""; background: #f7c948; }
.event-page .kg { background: #e11d2e; }
.event-page .kg::after { position: absolute; top: 5px; left: 10px; width: 10px; height: 10px; border-radius: 50%; content: ""; background: #f7c948; }
.event-page .me { background: linear-gradient(#111 0 33.33%, #fff 33.33% 66.66%, #108b4d 66.66%); }
.event-page .me::before { position: absolute; top: 0; left: 0; width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 12px solid #ce1126; content: ""; }
.event-page .ma { background: #c1272d; }
.event-page .ma::after { position: absolute; top: 5px; left: 10px; color: #006233; content: "*"; font-size: 14px; line-height: 1; }
.event-page .de { background: linear-gradient(#111 0 33.33%, #d61822 33.33% 66.66%, #f0c332 66.66%); }
.event-page .be { background: linear-gradient(90deg, #101010 0 33.33%, #ffd43b 33.33% 66.66%, #d21f2b 66.66%); }
.event-page .es { background: linear-gradient(#c91320 0 25%, #f4ca45 25% 75%, #c91320 75%); }
.event-page .cy { background: #ffffff; }
.event-page .cy::after { position: absolute; top: 5px; left: 9px; width: 12px; height: 7px; border-radius: 50%; content: ""; background: #e7a027; }
.event-page .cn { background: #d8212c; }
.event-page .cn::after { position: absolute; top: 2px; left: 4px; color: #ffd64a; content: "*"; font-size: 14px; line-height: 1; }
.event-page .it { background: linear-gradient(90deg, #139447 0 33.33%, #fff 33.33% 66.66%, #c9252d 66.66%); }
.event-page .pl { background: linear-gradient(#fff 0 50%, #d92032 50%); }
.event-page .us { background: repeating-linear-gradient(#b22234 0 2px, #fff 2px 4px); }
.event-page .us::before { position: absolute; top: 0; left: 0; width: 13px; height: 10px; content: ""; background: #24457a; }
.event-page .gr { background: repeating-linear-gradient(#1f6db4 0 3px, #fff 3px 6px); }
.event-page .fr { background: linear-gradient(90deg, #173c8c 0 33.33%, #fff 33.33% 66.66%, #dc2b35 66.66%); }
.event-page .sa { background: #146b37; }
.event-page .no { background: linear-gradient(#ba1f2d 0 36%, #fff 36% 44%, #173b83 44% 58%, #fff 58% 66%, #ba1f2d 66%); }
.event-page .ru { background: linear-gradient(#fff 0 33.33%, #2759a6 33.33% 66.66%, #d3232f 66.66%); }
.event-page .in { background: linear-gradient(#f19536 0 33.33%, #fff 33.33% 66.66%, #16833d 66.66%); }
.event-page .in::after { position: absolute; top: 6px; left: 12px; width: 6px; height: 6px; border: 1px solid #263d8e; border-radius: 50%; content: ""; }
.event-page .th { background: linear-gradient(#be1d2c 0 18%, #fff 18% 32%, #243a83 32% 68%, #fff 68% 82%, #be1d2c 82%); }
.event-page .tr { background: #df1f2d; }
.event-page .tr::before { position: absolute; top: 4px; left: 8px; width: 10px; height: 10px; border-radius: 50%; content: ""; box-shadow: -3px 0 0 2px #fff; }
.event-page .uz { background: linear-gradient(#1eb5e5 0 30%, #d61f30 30% 34%, #fff 34% 64%, #d61f30 64% 68%, #1eb53a 68%); }
.event-page .uz::after { position: absolute; top: 3px; left: 5px; width: 7px; height: 7px; border-radius: 50%; content: ""; box-shadow: -2px 0 0 1px #fff; }
.event-page .vn { background: #da251d; }
.event-page .vn::after { position: absolute; top: 3px; left: 10px; color: #ffde00; content: "*"; font-size: 16px; line-height: 1; }
.event-page .jp { background: #ffffff; }
.event-page .jp::after { position: absolute; top: 4px; left: 10px; width: 9px; height: 9px; border-radius: 50%; content: ""; background: #d72638; }
.event-page .nl { background: linear-gradient(#b51f2e 0 33.33%, #fff 33.33% 66.66%, #1f4f9d 66.66%); }
.event-page .kr { background: #ffffff; }
.event-page .kr::after { position: absolute; top: 5px; left: 10px; width: 10px; height: 10px; border-radius: 50%; content: ""; background: linear-gradient(90deg, #d81e2a 0 50%, #2254a5 50%); }
.event-page .ch { background: #e21b2d; }
.event-page .ch::before { position: absolute; top: 4px; left: 13px; width: 4px; height: 10px; content: ""; background: #fff; }
.event-page .ch::after { position: absolute; top: 7px; left: 10px; width: 10px; height: 4px; content: ""; background: #fff; }

.event-page .travel-card {
  position: relative;
  width: min(545px, 100%);
  min-height: 208px;
  margin: 22px auto 0;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(3, 24, 55, 0.18);
}

.event-page .travel-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: fill;
}

.event-page .travel-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 22, 55, 0.34), rgba(7, 48, 78, 0.78) 45%, rgba(3, 16, 44, 0.34));
}

.event-page .travel-copy {
  position: relative;
  z-index: 1;
  width: 78%;
  margin: 0 auto;
  padding: 23px 0 17px;
}

.event-page .travel-copy h2 {
  margin: 0 0 11px;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

.event-page .travel-copy ul {
  display: grid;
  gap: 4px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.event-page .travel-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.event-page .travel-copy p {
  margin: 0;
  /* text-align: center; */
  font-size: 1rem;
  font-weight: 600;
}
.event-page .travel-copy a{
  display: flex;
  align-items: center;
  gap: 12px;
}
.event-page.contact-section {
  padding-top: 20px;
}

.event-page .contact-title h2 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.event-page .contact-grid {
  width: min(920px, 100%);
  margin: 12px auto 0;
}

.event-page .contact-card {
  min-height: 176px;
  border: 1px solid var(--event-line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 71, 79, 0.04);
}

.event-page .contact-card .card-body {
  padding: 24px 20px;
}

.event-page .contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--event-teal);
}

.event-page .contact-card h3 {
  margin: 0 0 14px;
  color: var(--event-navy);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.event-page .contact-card p,
.event-page .contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #132d37;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.event-page .contact-card a i {
  color: var(--event-teal);
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .event-page .intro-card > .card-body {
    padding: 28px;
  }

  .event-page .intro-media img {
    width: 190px;
  }

  .event-page .audience-card {
    min-height: 310px;
  }
}

@media (max-width: 767.98px) {
  .event-page {
    width: min(100% - 24px, 1120px);
    padding-top: 16px;
  }

  .event-page .intro-card > .card-body {
    padding: 24px 18px;
    text-align: center;
  }

  .event-page .intro-media img {
    width: min(210px, 70vw);
    margin: 0 auto;
  }

  .event-page .intro-content .title-accent {
    margin-right: auto;
    margin-left: auto;
  }

  .event-page.profile-section {
    padding-right: 0;
    padding-left: 0;
  }

  .event-page.audience-section .row {
    gap: 16px;
  }

  .event-page .audience-card {
    min-height: 0;
    padding: 116px 20px 24px;
  }

  .event-page .audience-icon {
    left: 20px;
  }

  .event-page .visitor-art,
  .event-page .kremlin-art {
    width: 150px;
  }

  .event-page .why-card > .card-body {
    padding: 28px 18px;
  }

  .event-page .leaf-art {
    width: 86px;
    opacity: 0.55;
  }

  .event-page .travel-copy {
    width: 88%;
  }
}

@media (max-width: 575.98px) {
  .event-page {
    font-size: 13px;
  }

  .event-page .profile-tile,
  .event-page .country-pill {
    justify-content: flex-start;
  }

  .event-page .country-pill {
    padding-left: 22px;
  }

  .event-page .travel-card {
    min-height: 220px;
  }

  .event-page .contact-card {
    min-height: auto;
  }

  .event-page .contact-card .card-body {
    padding: 20px 16px;
  }
}


.page-hero {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  /* background:
    radial-gradient(circle at 0 42%, rgba(10, 167, 162, 0.15), transparent 28%),
    linear-gradient(105deg, #f8fbff 0%, #eff8fb 52%, #e9f7f8 100%); */

  background: url('../images/background/1.png') no-repeat scroll 0 0;
  background-size: cover;
}

.page-hero::before {
  /* position: absolute;
  top: 42px;
  left: -4px;
  width: 152px;
  height: 110px;
  content: "";
  background-image: radial-gradient(circle, rgba(10, 167, 162, 0.8) 1.6px, transparent 2px);
  background-size: 16px 16px; */
}

.page-hero::after {
 /*  position: absolute;
  top: -74px;
  right: -62px;
  width: 306px;
  height: 266px;
  border-radius: 54% 0 0 64%;
  content: "";
  background: linear-gradient(135deg, #43bfbd 0%, #129f9b 100%); */
}

.page-hero-wave {
  /* position: absolute;
  top: 24px;
  right: 225px;
  width: 290px;
  height: 132px;
  opacity: 0.2;
  background:
    repeating-radial-gradient(ellipse at right center, transparent 0 9px, rgba(70, 150, 155, 0.55) 10px 11px, transparent 12px 16px);
  transform: rotate(-9deg); */
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 13px;
  color: var(--contact-navy);
  /* font-size: clamp(2.15rem, 4vw, 3rem); */
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #10233f;
  font-size: 0.92rem;
  font-weight: 600;
}

.page-breadcrumb i {
  color: #596a82;
  font-size: 0.72rem;
}

.page-breadcrumb span {
  color: var(--contact-teal);
}

.contact-panel-section {
  padding: 34px 0 44px;
  background: #ffffff;
}

.contact-info-card,
.contact-form-card {
  border-radius: 10px;
  box-shadow: 0 11px 28px rgba(13, 47, 64, 0.15);
}

.contact-info-card {
  min-height: 444px;
  padding: 30px 31px 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(236, 249, 252, 0.96)),
    var(--contact-soft);
}

.contact-info-card h2 {
  margin: 0;
  color: var(--contact-navy);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-info-card h2 span {
  display: block;
  color: var(--contact-teal);
}

.contact-title-rule {
  display: block;
  width: 45px;
  height: 3px;
  margin: 15px 0 13px;
  background: var(--contact-gold);
}

.contact-info-intro p {
  max-width: 250px;
  margin: 0 0 23px;
  color: #0f1724;
  /* font-size: 0.82rem;
  font-weight: 500; */
  line-height: 1.55;
}

.contact-list-page {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list-page li {
  position: relative;
  min-height: 92px;
}

.contact-list-page li:not(:last-child)::after {
  /* position: absolute;
  right: 0;
  bottom: 0;
  left: 68px;
  height: 1px;
  content: "";
  background: rgba(105, 123, 137, 0.26); */
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--contact-teal);
  background: #ffffff;
  box-shadow: 0 5px 12px rgba(2, 24, 39, 0.17);
}

.contact-icon i {
  font-size: 1.55rem;
  line-height: 1;
}

.contact-copy strong {
  display: block;
  margin-bottom: 3px;
  color: #121926;
  font-size: 1.0rem;
  font-weight:600;
  line-height: 1.25;
}

.contact-copy,
.contact-copy a,
.contact-copy p {
  margin: 0;
  /* color: #111827;
  font-size: 0.78rem;
  font-weight: 500; */
  line-height: 1.32;
}

.contact-form-card {
  min-height: 444px;
  padding: 29px 30px 23px;
  background: #ffffff;
}

.contact-form-grid {
  --bs-gutter-y: 19px;
}

.contact-field label {
  display: block;
  margin: 0 0 7px;
  /* color: #182235;
  font-size: 0.82rem; */
  font-weight: 600;
  line-height: 1.2;
}

.contact-field label span {
  color: #e44242;
}

.contact-page .form-control {
  width: 100%;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid var(--contact-border);
  border-radius: 5px;
  /* color: #1f2a3d;
  font-size: 0.82rem; */
  font-weight: 400;
  line-height: 1.35;
  background: #ffffff;
  box-shadow: none;
}

.contact-page .form-control::placeholder {
  color: #98a6bc;
  opacity: 1;
}

.contact-page .form-control:focus {
  border-color: rgba(10, 167, 162, 0.75);
  box-shadow: 0 0 0 0.2rem rgba(10, 167, 162, 0.1);
}

.contact-page textarea.form-control {
  min-height: 108px;
  resize: vertical;
}

.contact-choice-row {
  gap: 36px;
  margin-top: 15px;
  margin-bottom: 19px;
}

.contact-choice {
  gap: 11px;
  /* color: #172033;
  font-size: 0.82rem; */
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.contact-choice input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--contact-teal);
}

.contact-submit {
  gap: 12px;
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  /* font-size: 0.83rem; */
  font-weight: 600;
  background: linear-gradient(135deg, #12bcb5 0%, #009d98 100%);
  box-shadow: 0 7px 16px rgba(0, 156, 151, 0.25);
}

.contact-submit:hover,
.contact-submit:focus {
  color: #ffffff;
  background: linear-gradient(135deg, #18c7c0 0%, #008f8a 100%);
}

.contact-submit i {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .contact-info-card,
  .contact-form-card {
    min-height: auto;
  }

  .contact-info-card {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 28px;
  }

  .contact-info-intro {
    align-self: start;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    min-height: 144px;
  }

  .page-hero::after {
    right: -108px;
    width: 230px;
    height: 225px;
  }

  .page-hero-wave {
    right: 82px;
    width: 205px;
  }

  .contact-panel-section {
    padding-top: 24px;
  }

  .contact-info-card {
    padding: 26px 22px;
  }

  .contact-info-intro p {
    max-width: none;
  }

  .contact-form-card {
    padding: 24px 18px 20px;
  }

  .contact-form-grid {
    --bs-gutter-y: 16px;
  }

  .contact-choice-row {
    gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .contact-info-card h2 {
    font-size: 1.8rem;
  }

  .contact-list-page li {
    gap: 16px;
    min-height: 86px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-list-page li:not(:last-child)::after {
    left: 64px;
  }

  .contact-choice-row {
    flex-direction: column;
    margin-top: 13px;
  }
}