:root {
  --black: #030508;
  --dark: #07101f;
  --dark-blue: #061a35;
  --blue: #00a9e8;
  --blue-dark: #0066c9;
  --white: #ffffff;
  --muted: #aab6c8;
  --border: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.06);
  --red: #e31b23;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.site-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(0, 169, 232, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 102, 201, 0.14), transparent 34%),
    var(--black);
}

/* HEADER */
.site-header {
  width: 100%;
  background: rgba(3, 5, 8, 0.94);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: max-content;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 169, 232, 0.28));
}

.brand-text h1 {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.brand-text span {
  margin-top: 8px;
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(227, 27, 35, 0.14);
  border: 1px solid rgba(227, 27, 35, 0.45);
  color: #ff454d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  padding: 11px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(0, 169, 232, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
  position: relative;
  border-radius: 20px;
  transition: 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 20px;
  transition: 0.25s ease;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* MAIN */
.main-content {
  flex: 1;
}

/* SLIDER SECTION */
.logo-slider-section {
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 26, 53, 0.88), rgba(3, 5, 8, 0.97)),
    radial-gradient(circle at center, rgba(0, 169, 232, 0.16), transparent 38%);
}

.logo-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 38px
    );
  opacity: 0.55;
  pointer-events: none;
}

.logo-slider-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(3, 5, 8, 0.42) 70%);
  pointer-events: none;
}

.logo-slider-section .container {
  padding-top: 70px;
  padding-bottom: 82px;
  position: relative;
  z-index: 2;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.section-heading h2 strong {
  color: var(--blue);
  text-shadow: 0 0 30px rgba(0, 169, 232, 0.38);
}

.section-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* CAROUSEL */
.slider-wrapper {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel {
  width: 100%;
  height: 400px;
  position: relative;
  perspective: 1400px;
}

.slide-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 245px;
  height: 335px;
  padding: 15px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  transition: 0.55s ease;
  overflow: hidden;
  pointer-events: none;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.slide-card.active {
  transform: translate(-50%, -50%) scale(1.15);
  opacity: 1;
  z-index: 8;
  pointer-events: auto;
  box-shadow:
    0 0 0 2px rgba(0, 169, 232, 0.78),
    0 0 45px rgba(0, 169, 232, 0.36),
    var(--shadow);
}

.slide-card.prev {
  transform: translate(-50%, -50%) translateX(-270px) rotateY(18deg) scale(0.94);
  opacity: 0.9;
  z-index: 7;
}

.slide-card.next {
  transform: translate(-50%, -50%) translateX(270px) rotateY(-18deg) scale(0.94);
  opacity: 0.9;
  z-index: 7;
}

.slide-card.prev-2 {
  transform: translate(-50%, -50%) translateX(-485px) rotateY(25deg) scale(0.78);
  opacity: 0.68;
  z-index: 6;
}

.slide-card.next-2 {
  transform: translate(-50%, -50%) translateX(485px) rotateY(-25deg) scale(0.78);
  opacity: 0.68;
  z-index: 6;
}

.slide-card.prev-3 {
  transform: translate(-50%, -50%) translateX(-660px) rotateY(32deg) scale(0.62);
  opacity: 0.38;
  z-index: 5;
}

.slide-card.next-3 {
  transform: translate(-50%, -50%) translateX(660px) rotateY(-32deg) scale(0.62);
  opacity: 0.38;
  z-index: 5;
}

/* SLIDER ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.slider-arrow:hover {
  background: rgba(0, 169, 232, 0.22);
  border-color: rgba(0, 169, 232, 0.5);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

/* DOTS */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.25s ease;
}

.slider-dot.active {
  width: 30px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 169, 232, 0.55);
}

/* FOOTER */
.site-footer {
  background: rgba(3, 5, 8, 0.96);
  border-top: 1px solid var(--border);
}

.site-footer .container {
  padding-top: 42px;
  padding-bottom: 28px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.footer-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: 0.25s ease;
  min-height: 110px;
}

.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 232, 0.42);
  background: rgba(0, 169, 232, 0.07);
}

.footer-icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 15px 35px rgba(0, 169, 232, 0.22);
  flex-shrink: 0;
}

.footer-card h3 {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.footer-card p,
.footer-card a {
  font-size: 17px;
  color: var(--white);
  font-weight: 800;
  word-break: break-word;
}

.footer-card a {
  color: #dff7ff;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-weight: 900;
}

.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
}

.copyright-text {
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .header-container {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .slide-card.prev-3,
  .slide-card.next-3 {
    opacity: 0;
  }

  .slide-card.prev-2 {
    transform: translate(-50%, -50%) translateX(-380px) rotateY(22deg) scale(0.72);
  }

  .slide-card.next-2 {
    transform: translate(-50%, -50%) translateX(380px) rotateY(-22deg) scale(0.72);
  }
}

@media (max-width: 820px) {
  .header-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text h1 {
    font-size: 21px;
  }

  .brand-text span {
    font-size: 9px;
    padding: 5px 8px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border);
    margin-top: 8px;
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav.show {
    display: grid;
  }

  .main-nav a {
    text-align: center;
    border-radius: 12px;
  }

  .logo-slider-section {
    min-height: auto;
  }

  .logo-slider-section .container {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    letter-spacing: -1px;
  }

  .slider-wrapper {
    min-height: 380px;
  }

  .logo-carousel {
    height: 355px;
  }

  .slide-card {
    width: 215px;
    height: 305px;
  }

  .slide-card.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .slide-card.prev {
    transform: translate(-50%, -50%) translateX(-150px) rotateY(16deg) scale(0.68);
    opacity: 0.45;
  }

  .slide-card.next {
    transform: translate(-50%, -50%) translateX(150px) rotateY(-16deg) scale(0.68);
    opacity: 0.45;
  }

  .slide-card.prev-2,
  .slide-card.next-2,
  .slide-card.prev-3,
  .slide-card.next-3 {
    opacity: 0;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

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

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

  .copyright-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text h1 {
    font-size: 17px;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .section-heading p {
    font-size: 14px;
  }

  .logo-carousel {
    height: 320px;
  }

  .slider-wrapper {
    min-height: 340px;
  }

  .slide-card {
    width: 190px;
    height: 270px;
    border-radius: 24px;
  }

  .slide-card.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .slide-card.prev {
    transform: translate(-50%, -50%) translateX(-105px) scale(0.58);
  }

  .slide-card.next {
    transform: translate(-50%, -50%) translateX(105px) scale(0.58);
  }

  .footer-card {
    align-items: flex-start;
    padding: 20px;
  }
}


/* MOBILE HEADER LOGO SIZE FIX START */

@media (max-width: 620px) {
  .brand-logo {
    width: 100px !important;
    height: 100px !important;
    min-width: 72px;
  }

  .brand {
    gap: 12px;
  }

  .brand-text h1 {
    font-size: 12px !important;
    line-height: 1.15;
    
  }

  .brand-text span {
    font-size: 9px;
    padding: 5px 8px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 68px;
    height: 68px;
    min-width: 68px;
  }

  .brand-text h1 {
    font-size: 17px;
  }
}

/* MOBILE HEADER LOGO SIZE FIX END */



/* HOME LOGO SLIDER SIZE UPDATE START */

.logo-carousel {
  height: 520px;
}

.slider-wrapper {
  min-height: 540px;
}

.slide-card {
  width: 360px;
  height: 430px;
  padding: 22px;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.slide-card.active {
  transform: translate(-50%, -50%) scale(1.08);
}

.slide-card.prev {
  transform: translate(-50%, -50%) translateX(-360px) rotateY(16deg) scale(0.82);
}

.slide-card.next {
  transform: translate(-50%, -50%) translateX(360px) rotateY(-16deg) scale(0.82);
}

.slide-card.prev-2 {
  transform: translate(-50%, -50%) translateX(-610px) rotateY(24deg) scale(0.62);
}

.slide-card.next-2 {
  transform: translate(-50%, -50%) translateX(610px) rotateY(-24deg) scale(0.62);
}

.slide-card.prev-3,
.slide-card.next-3 {
  opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .logo-carousel {
    height: 470px;
  }

  .slider-wrapper {
    min-height: 490px;
  }

  .slide-card {
    width: 310px;
    height: 390px;
    padding: 20px;
  }

  .slide-card.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .slide-card.prev {
    transform: translate(-50%, -50%) translateX(-230px) rotateY(14deg) scale(0.66);
    opacity: 0.42;
  }

  .slide-card.next {
    transform: translate(-50%, -50%) translateX(230px) rotateY(-14deg) scale(0.66);
    opacity: 0.42;
  }

  .slide-card.prev-2,
  .slide-card.next-2 {
    opacity: 0;
  }
}

@media (max-width: 620px) {
  .logo-carousel {
    height: 390px;
  }

  .slider-wrapper {
    min-height: 410px;
  }

  .slide-card {
    width: 270px;
    height: 330px;
    padding: 18px;
  }

  .slide-card.prev {
    transform: translate(-50%, -50%) translateX(-145px) scale(0.55);
    opacity: 0.28;
  }

  .slide-card.next {
    transform: translate(-50%, -50%) translateX(145px) scale(0.55);
    opacity: 0.28;
  }
}

@media (max-width: 420px) {
  .slide-card {
    width: 245px;
    height: 310px;
    padding: 16px;
  }
}

/* HOME LOGO SLIDER SIZE UPDATE END */



/* ABOUT PAGE START */

/* ABOUT PAGE START */

.about-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.96), rgba(3, 5, 8, 0.72), rgba(3, 5, 8, 0.92)),
    url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1600") center center / cover no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left, rgba(0, 169, 232, 0.22), transparent 38%),
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 38px
    );
  pointer-events: none;
}

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

.about-hero-content {
  max-width: 760px;
}

.about-label,
.about-small-title {
  display: inline-block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-hero-content h1 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.about-hero-content h1 strong {
  color: var(--blue);
  text-shadow: 0 0 30px rgba(0, 169, 232, 0.38);
}

.about-hero-content p {
  max-width: 690px;
  color: #d8e1ee;
  font-size: 18px;
  line-height: 1.8;
}

.about-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 232, 0.12), transparent 32%),
    var(--black);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.about-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 480px;
}

.about-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 5, 8, 0.46));
  pointer-events: none;
}

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

.about-content-box h2,
.leadership-content h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 900;
  margin-bottom: 22px;
}

.about-content-box p,
.leadership-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-highlight-row {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.about-highlight-row div {
  padding: 20px 16px;
  border-right: 1px solid var(--border);
}

.about-highlight-row div:last-child {
  border-right: none;
}

.about-highlight-row strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 5px;
}

.about-highlight-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.leadership-section {
  padding: 0 0 90px;
  background: var(--black);
}

.leadership-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 46px;
  border-radius: 32px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(0, 169, 232, 0.16), transparent 34%);
  box-shadow: var(--shadow);
}

.leadership-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leadership-logo img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 0 28px rgba(0, 169, 232, 0.28));
}

.companies-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 53, 0.72), rgba(3, 5, 8, 0.97)),
    var(--dark);
}

.about-page-heading {
  margin-bottom: 44px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.company-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  transition: 0.25s ease;
}

.company-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 232, 0.42);
  background: rgba(0, 169, 232, 0.07);
}

.company-image {
  height: 215px;
  overflow: hidden;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.35s ease;
}

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

.company-content {
  padding: 24px;
}

.company-content h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  margin-bottom: 12px;
}

.company-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.vision-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at bottom left, rgba(0, 169, 232, 0.13), transparent 34%),
    var(--black);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vision-card {
  padding: 34px 30px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  transition: 0.25s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 232, 0.42);
  background: rgba(0, 169, 232, 0.07);
}

.vision-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 15px 35px rgba(0, 169, 232, 0.22);
}

.vision-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
}

.vision-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}





/* ABOUT PAGE RESPONSIVE */

@media (max-width: 980px) {
  .about-intro-grid,
  .leadership-card {
    grid-template-columns: 1fr;
  }

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

  .about-highlight-row div:nth-child(2) {
    border-right: none;
  }

  .about-highlight-row div:nth-child(1),
  .about-highlight-row div:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

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

  .leadership-logo img {
    max-width: 220px;
  }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: 390px;
  }

  .about-hero-content p {
    font-size: 15px;
  }

  .about-section,
  .companies-section,
  .vision-section {
    padding: 64px 0;
  }

  .leadership-section {
    padding-bottom: 64px;
  }

  .about-image-box,
  .about-image-box img {
    min-height: 340px;
  }

  .about-highlight-row {
    grid-template-columns: 1fr;
  }

  .about-highlight-row div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-highlight-row div:last-child {
    border-bottom: none;
  }

  .leadership-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

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

  .company-image {
    height: 210px;
  }
}



/* PREMIUM SUBTLE HEADING OVERRIDES START */

.section-heading h2,
.about-hero-content h1,
.about-content-box h2,
.leadership-content h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.section-heading h2 strong,
.about-hero-content h1 strong {
  font-weight: 700;
}

.company-content h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.35;
}

.vision-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand-text h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.about-label,
.about-small-title,
.section-heading span {
  font-weight: 700;
  letter-spacing: 1.4px;
}

@media (max-width: 820px) {
  .section-heading h2,
  .about-hero-content h1,
  .about-content-box h2,
  .leadership-content h2 {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.18;
  }

  .brand-text h1 {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .section-heading h2,
  .about-hero-content h1,
  .about-content-box h2,
  .leadership-content h2 {
    font-size: 30px;
  }

  .brand-text h1 {
    font-size: 17px;
  }

  .company-content h3 {
    font-size: 18px;
  }
}

/* PREMIUM SUBTLE HEADING OVERRIDES END */
/* ABOUT PAGE END */

/* ABOUT PAGE END */

/* =========================================================
   FINAL MOBILE SLIDER + SELECTIVE BUTTON + STICKY HEADER
   Keep this section only once.
========================================================= */

/* Sticky injected header wrapper */
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

/* Prevent transparent header while scrolling */
#siteHeader .site-header,
#siteHeader header {
  width: 100%;
  background: rgba(3, 5, 8, 0.96);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Mobile guide hidden on desktop */
.mobile-slider-guide {
  display: none;
}

/* Main clickable logo area */
.slide-logo-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: inherit;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.slide-logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* Real action button is mobile-only */
.slide-action {
  display: none;
}

/* Permanently disable the old fake pseudo button */
.slide-card::after,
.slide-card.active::after {
  content: none !important;
  display: none !important;
}

/* =========================================================
   MOBILE SLIDER
========================================================= */
@media (max-width: 620px) {
  .logo-slider-section .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .slider-wrapper {
    min-height: clamp(440px, 126vw, 490px);
  }

  .logo-carousel {
    height: clamp(420px, 120vw, 465px);
    overflow: visible;
    touch-action: pan-y;
  }

  .slide-card {
    width: min(88vw, 340px);
    height: clamp(350px, 108vw, 415px);
    padding: 10px;
    border-radius: 24px;
  }

  .slide-card img {
    border-radius: 18px;
  }

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

  .slide-card.prev {
    transform:
      translate(-50%, -50%)
      translateX(-42vw)
      rotateY(10deg)
      scale(0.38);
    opacity: 0.22;
  }

  .slide-card.next {
    transform:
      translate(-50%, -50%)
      translateX(42vw)
      rotateY(-10deg)
      scale(0.38);
    opacity: 0.22;
  }

  .slide-card.prev-2,
  .slide-card.next-2,
  .slide-card.prev-3,
  .slide-card.next-3 {
    opacity: 0;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .slider-prev {
    left: 4px;
  }

  .slider-next {
    right: 4px;
  }

  .slider-dots {
    margin-top: 10px;
  }

  .mobile-slider-guide {
    display: block;
    margin: 4px 0 11px;
    padding: 0 12px;
    color: #aab6c8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.1px;
    text-align: center;
  }

  /* -------------------------------------------------------
     Slides WITHOUT button
     Use the full card and remove the visually empty bottom.
     Button slides are not targeted here.
  ------------------------------------------------------- */
  .slide-card.active:not(.has-action) .slide-logo-link {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .slide-card.active:not(.has-action) .slide-logo-link img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    transform: scale(1.06);
    transform-origin: center;
  }

  /* -------------------------------------------------------
     Slides WITH button
     Existing image size/position remains unchanged.
  ------------------------------------------------------- */
  .slide-card.active.has-action .slide-action {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 100;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 145px;
    min-height: 40px;
    padding: 10px 17px;
    color: #ffffff;
    background: rgba(7, 40, 67, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.24),
      0 0 0 0 rgba(0, 169, 232, 0.25);
    font-family: "Inter", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.2px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: sliderActionPulse 2.2s ease-in-out infinite;
  }

  .slide-card.active.has-action .slide-action:active {
    transform: translateX(-50%) scale(0.94);
    background: rgba(0, 119, 180, 0.98);
  }

  .slide-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .slide-action:hover .slide-action-icon {
    transform: translate(2px, -2px);
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .slide-card {
    width: 90vw;
    height: 355px;
    padding: 8px;
  }

  .slider-wrapper {
    min-height: 425px;
  }

  .logo-carousel {
    height: 405px;
  }

  .mobile-slider-guide {
    font-size: 11px;
  }

  .slide-card.active.has-action .slide-action {
    bottom: 11px;
    min-width: 132px;
    min-height: 38px;
    padding: 9px 14px;
    font-size: 11px;
  }
}

/* Button pulse */
@keyframes sliderActionPulse {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.24),
      0 0 0 0 rgba(0, 169, 232, 0.24);
  }

  50% {
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.24),
      0 0 0 7px rgba(0, 169, 232, 0);
  }
}

/* Reduced-motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .slide-card,
  .slide-action {
    transition: none;
  }

  .slide-card.active.has-action .slide-action {
    animation: none;
  }
}



/* =========================================================
   KANYADAAN MOBILE SLIDE FIX
   Prevent button from overlapping image text
========================================================= */

@media (max-width: 620px) {

  /*
   Reserve separate space for the button only
   on the Kanyadaan slide.
  */
  .slide-card.active.slide-kanyadaan .slide-logo-link {
    width: 100%;
    height: calc(100% - 62px);
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .slide-card.active.slide-kanyadaan .slide-logo-link img {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: center top;

    transform: none !important;
  }

  /*
   Button remains in its separate bottom area.
  */
  .slide-card.active.slide-kanyadaan .slide-action {
    bottom: 12px;
  }
}




/* =========================================================
   FINAL KANYADAAN MOBILE SLIDE FIX
   Creates a separate bottom area for the button
========================================================= */

@media (max-width: 620px) {

  /*
   Reserve bottom white space inside Kanyadaan card.
   The image will remain above and the button will remain below.
  */
  .slide-card.active.slide-kanyadaan,
  .slide-card.active[data-slide-index="3"] {
    padding:
      10px
      10px
      66px !important;

    overflow: hidden !important;
  }

  /*
   Image occupies only the available area above
   the reserved button section.
  */
  .slide-card.active.slide-kanyadaan .slide-logo-link,
  .slide-card.active[data-slide-index="3"] .slide-logo-link {
    display: block;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden;
    border-radius: 18px;
  }

  .slide-card.active.slide-kanyadaan .slide-logo-link img,
  .slide-card.active[data-slide-index="3"] .slide-logo-link img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
    object-position: center center !important;

    transform: none !important;
    border-radius: 18px;
  }

  /*
   Button sits inside the separate bottom white area.
  */
  .slide-card.active.slide-kanyadaan .slide-action,
  .slide-card.active[data-slide-index="3"] .slide-action {
    position: absolute !important;

    left: 50% !important;
    bottom: 12px !important;

    transform: translateX(-50%) !important;

    z-index: 150 !important;

    min-height: 40px;
    min-width: 145px;

    margin: 0 !important;
  }

  .slide-card.active.slide-kanyadaan .slide-action:active,
  .slide-card.active[data-slide-index="3"] .slide-action:active {
    transform:
      translateX(-50%)
      scale(0.95) !important;
  }
}









/* =========================================================
   MOBILE STICKY QUICK CONNECTION PANEL
========================================================= */

.mobile-quick-panel {
  display: none;
}

@media (max-width: 620px) {

  /*
   Prevent bottom panel from hiding
   footer or page content.
  */
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .mobile-quick-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 10000;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;

    min-height: 66px;
    padding: 6px;

    background: rgba(5, 16, 29, 0.96);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;

    box-shadow:
      0 14px 40px rgba(0, 0, 0, 0.48),
      0 0 30px rgba(0, 169, 232, 0.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-quick-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    min-width: 0;
    min-height: 54px;

    padding: 7px 5px;

    color: #aab6c8;
    background: transparent;

    border-radius: 15px;

    font-family: "Inter", Arial, sans-serif;
    text-align: center;
    text-decoration: none;

    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;

    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  /* Separator between items */
  .mobile-quick-item:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 10px;
    right: 0;
    bottom: 10px;

    width: 1px;

    background: rgba(255, 255, 255, 0.11);
  }

  .mobile-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    color: #ffffff;
  }

  .mobile-quick-icon svg {
    display: block;

    width: 100%;
    height: 100%;
  }

  .mobile-quick-label {
    display: block;

    overflow: hidden;

    max-width: 100%;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.15px;

    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Highlight centre Contact option */
  .mobile-quick-item-primary {
    color: #ffffff;

    background:
      linear-gradient(
        135deg,
        rgba(0, 169, 232, 0.25),
        rgba(0, 102, 201, 0.2)
      );

    box-shadow:
      inset 0 0 0 1px rgba(0, 169, 232, 0.32);
  }

  .mobile-quick-item-primary .mobile-quick-icon {
    color: #44c9fa;
  }

  /* Touch feedback */
  .mobile-quick-item:active {
    transform: scale(0.94);

    color: #ffffff;
    background: rgba(0, 169, 232, 0.18);
  }
}

/* Very small phones */
@media (max-width: 360px) {

  .mobile-quick-panel {
    left: 8px;
    right: 8px;
    bottom: calc(7px + env(safe-area-inset-bottom));

    min-height: 62px;

    border-radius: 17px;
  }

  .mobile-quick-item {
    min-height: 50px;
    padding: 6px 3px;
  }

  .mobile-quick-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-quick-label {
    font-size: 9px;
  }
}

/* =========================================================
   WELL WISHERS PAGE
========================================================= */

.well-wishers-page {
  background: var(--black);
}

/* Hero */
.well-wishers-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 28%, rgba(0, 169, 232, 0.2), transparent 34%),
    linear-gradient(118deg, #061a35 0%, #07101f 52%, #030508 100%);
}

.well-wishers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.024) 0,
      rgba(255, 255, 255, 0.024) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.well-wishers-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 70px;
  padding-top: 84px;
  padding-bottom: 84px;
}

.well-wishers-hero-copy {
  max-width: 770px;
}

.well-wishers-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.well-wishers-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
}

.well-wishers-hero h1 strong {
  display: block;
  color: var(--blue);
  font-weight: 700;
  text-shadow: 0 0 32px rgba(0, 169, 232, 0.3);
}

.well-wishers-hero p {
  max-width: 700px;
  margin-bottom: 28px;
  color: #c6d0de;
  font-size: 17px;
  line-height: 1.8;
}

.well-wishers-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.13);
  border: 1px solid rgba(0, 169, 232, 0.38);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s ease;
}

.well-wishers-hero-link:hover {
  transform: translateY(-2px);
  background: rgba(0, 169, 232, 0.22);
}

.well-wishers-hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 310px;
  height: 310px;
  margin-left: auto;
}

.well-wishers-hero-mark::before,
.well-wishers-hero-mark::after,
.well-wishers-hero-mark-ring {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 169, 232, 0.18);
}

.well-wishers-hero-mark::before {
  inset: 0;
}

.well-wishers-hero-mark::after {
  inset: 36px;
  border-color: rgba(255, 255, 255, 0.11);
}

.well-wishers-hero-mark-ring {
  inset: 70px;
  background: rgba(0, 169, 232, 0.06);
  box-shadow: 0 0 65px rgba(0, 169, 232, 0.13);
}

.well-wishers-hero-mark img {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(0, 169, 232, 0.34));
}

/* Shared headings */
.well-wishers-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.well-wishers-section-heading > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.well-wishers-section-heading h2 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.well-wishers-section-heading p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Featured moments */
.well-wishers-featured-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 232, 0.08), transparent 34%),
    var(--black);
}

.well-wishers-featured-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.well-wishers-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.well-wishers-featured-card.is-reversed {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.well-wishers-featured-card.is-reversed .well-wishers-featured-media {
  order: 2;
}

.well-wishers-featured-card.is-reversed .well-wishers-featured-copy {
  order: 1;
}

.well-wishers-featured-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: #07101f;
  border: 0;
  cursor: pointer;
}

.well-wishers-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, opacity 0.3s ease;
}

.well-wishers-featured-media:hover img {
  transform: scale(1.035);
  opacity: 0.86;
}

.well-wishers-media-hint {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  background: rgba(3, 10, 18, 0.5);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.well-wishers-featured-media:hover .well-wishers-media-hint,
.well-wishers-featured-media:focus-visible .well-wishers-media-hint {
  opacity: 1;
}

.well-wishers-media-hint-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.88);
  border-radius: 50%;
}

.well-wishers-media-hint-icon svg {
  width: 23px;
  height: 23px;
}

.well-wishers-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}

.well-wishers-person-name {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #8ddfff;
  background: rgba(0, 169, 232, 0.1);
  border: 1px solid rgba(0, 169, 232, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.well-wishers-featured-copy h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.7px;
}

.well-wishers-featured-copy p {
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.well-wishers-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 27px;
}

.well-wishers-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  color: #c4cfdd;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.well-wishers-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.15);
  border: 1px solid rgba(0, 169, 232, 0.4);
  border-radius: 999px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.well-wishers-view-button:hover {
  transform: translateY(-2px);
  background: rgba(0, 169, 232, 0.27);
}

/* Individual well wishers */
.well-wishers-individual-section {
  padding: 90px 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 53, 0.56), rgba(3, 5, 8, 0.98));
}

.well-wishers-individual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.well-wishers-individual-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.well-wishers-individual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 232, 0.38);
  background: rgba(0, 169, 232, 0.065);
}

.well-wishers-individual-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  padding: 0;
  color: inherit;
  background: #07101f;
  border: 0;
  cursor: pointer;
}

.well-wishers-individual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.well-wishers-individual-card:hover .well-wishers-individual-media img {
  transform: scale(1.04);
}

.well-wishers-individual-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: rgba(5, 24, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.well-wishers-individual-zoom svg {
  width: 19px;
  height: 19px;
}

.well-wishers-individual-copy {
  padding: 22px 20px 25px;
}

.well-wishers-individual-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.well-wishers-individual-copy h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.well-wishers-individual-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Gratitude */
.well-wishers-gratitude-section {
  padding: 0 0 90px;
  background: var(--black);
}

.well-wishers-gratitude-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 25px;
  padding: 40px;
  background:
    radial-gradient(circle at right, rgba(0, 169, 232, 0.13), transparent 38%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 28px;
}

.well-wishers-gratitude-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.15);
  border: 1px solid rgba(0, 169, 232, 0.37);
  border-radius: 21px;
}

.well-wishers-gratitude-icon svg {
  width: 33px;
  height: 33px;
}

.well-wishers-gratitude-card > div:last-child > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.well-wishers-gratitude-card h2 {
  margin-bottom: 11px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.25;
}

.well-wishers-gratitude-card p {
  max-width: 850px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Modal */
body.well-wishers-modal-open {
  overflow: hidden;
}

.well-wishers-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.87);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.well-wishers-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.well-wishers-modal-dialog {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  width: min(1100px, 100%);
  max-height: 88vh;
  overflow: hidden;
  background: #07101f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65);
}

.well-wishers-modal-media {
  min-height: 500px;
  background: #020407;
}

.well-wishers-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 88vh;
  object-fit: contain;
  object-position: center;
}

.well-wishers-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.well-wishers-modal-copy > span {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.well-wishers-modal-copy h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.well-wishers-modal-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.well-wishers-modal-close {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 20001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Well wishers responsive */
@media (max-width: 1040px) {
  .well-wishers-hero-container {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 35px;
  }

  .well-wishers-hero-mark {
    width: 230px;
    height: 230px;
  }

  .well-wishers-hero-mark img {
    width: 105px;
    height: 105px;
  }

  .well-wishers-individual-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .well-wishers-featured-card,
  .well-wishers-featured-card.is-reversed {
    grid-template-columns: 1fr;
  }

  .well-wishers-featured-card.is-reversed .well-wishers-featured-media,
  .well-wishers-featured-card.is-reversed .well-wishers-featured-copy {
    order: initial;
  }

  .well-wishers-modal-dialog {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .well-wishers-modal-media {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .well-wishers-hero-container {
    grid-template-columns: 1fr;
  }

  .well-wishers-hero-mark {
    display: none;
  }

  .well-wishers-individual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .well-wishers-hero {
    min-height: auto;
  }

  .well-wishers-hero-container {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .well-wishers-hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .well-wishers-hero p {
    font-size: 14px;
  }

  .well-wishers-featured-section,
  .well-wishers-individual-section {
    padding: 64px 0;
  }

  .well-wishers-section-heading {
    margin-bottom: 32px;
  }

  .well-wishers-featured-list {
    gap: 24px;
  }

  .well-wishers-featured-card {
    min-height: auto;
    border-radius: 23px;
  }

  .well-wishers-featured-media,
  .well-wishers-featured-media img {
    min-height: 270px;
  }

  .well-wishers-featured-copy {
    padding: 27px 21px 29px;
  }

  .well-wishers-featured-copy h2 {
    font-size: 25px;
  }

  .well-wishers-media-hint {
    display: none;
  }

  .well-wishers-individual-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .well-wishers-individual-card {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 20px;
  }

  .well-wishers-individual-media {
    min-height: 172px;
    aspect-ratio: auto;
  }

  .well-wishers-individual-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 17px 16px;
  }

  .well-wishers-individual-copy h3 {
    font-size: 17px;
  }

  .well-wishers-individual-copy p {
    font-size: 12px;
  }

  .well-wishers-individual-zoom {
    right: 8px;
    bottom: 8px;
    width: 33px;
    height: 33px;
  }

  .well-wishers-individual-zoom svg {
    width: 16px;
    height: 16px;
  }

  .well-wishers-gratitude-section {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .well-wishers-gratitude-card {
    grid-template-columns: 1fr;
    padding: 27px 21px;
    border-radius: 22px;
  }

  .well-wishers-gratitude-icon {
    width: 57px;
    height: 57px;
    border-radius: 17px;
  }

  .well-wishers-modal {
    align-items: flex-end;
    padding: 64px 10px calc(88px + env(safe-area-inset-bottom));
  }

  .well-wishers-modal-dialog {
    max-height: 82vh;
    border-radius: 21px;
  }

  .well-wishers-modal-media {
    min-height: 280px;
  }

  .well-wishers-modal-copy {
    padding: 24px 20px 27px;
  }

  .well-wishers-modal-close {
    top: 13px;
    right: 13px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 390px) {
  .well-wishers-individual-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .well-wishers-individual-copy {
    padding: 15px 13px;
  }

  .well-wishers-individual-copy p {
    line-height: 1.55;
  }
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
  background: var(--black);
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(0, 169, 232, 0.2), transparent 34%),
    linear-gradient(120deg, #061a35 0%, #07101f 48%, #030508 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(3, 5, 8, 0.34) 78%);
  pointer-events: none;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 60px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.contact-hero-copy {
  max-width: 790px;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.contact-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(40px, 6vw, 70px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1.8px;
}

.contact-hero h1 strong {
  display: block;
  color: var(--blue);
  font-weight: 700;
  text-shadow: 0 0 34px rgba(0, 169, 232, 0.28);
}

.contact-hero-copy > p {
  max-width: 720px;
  color: #c4cedb;
  font-size: 17px;
  line-height: 1.8;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-primary-link,
.contact-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.contact-primary-link {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 36px rgba(0, 169, 232, 0.22);
}

.contact-secondary-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-primary-link:hover,
.contact-secondary-link:hover {
  transform: translateY(-3px);
}

.contact-secondary-link:hover {
  background: rgba(0, 169, 232, 0.12);
  border-color: rgba(0, 169, 232, 0.35);
}

.contact-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.contact-hero-logo-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  padding: 34px;
  background: rgba(3, 5, 8, 0.8);
  border: 1px solid rgba(0, 169, 232, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px rgba(0, 169, 232, 0.025),
    0 30px 75px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(0, 169, 232, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 169, 232, 0.2));
}

.contact-hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 169, 232, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-hero-orbit-one {
  width: 315px;
  height: 315px;
}

.contact-hero-orbit-two {
  width: 390px;
  height: 390px;
  border-color: rgba(255, 255, 255, 0.07);
}

.contact-hero-orbit-one::before,
.contact-hero-orbit-two::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(0, 169, 232, 0.8);
}


/* =========================================================
   COMMON CONTACT SECTION HEADING
========================================================= */

.contact-section-heading {
  max-width: 730px;
  margin: 0 auto 43px;
  text-align: center;
}

.contact-section-heading > span {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-section-heading h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 47px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.9px;
}

.contact-section-heading p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}


/* =========================================================
   CONTACT OPTIONS
========================================================= */

.contact-options-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 232, 0.09), transparent 33%),
    var(--black);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-option-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 150px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-option-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -75% 20%;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 169, 232, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.contact-option-card:hover {
  transform: translateY(-6px);
  background: rgba(0, 169, 232, 0.07);
  border-color: rgba(0, 169, 232, 0.38);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.contact-option-card:hover::before {
  opacity: 1;
}

.contact-option-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.14);
  border: 1px solid rgba(0, 169, 232, 0.32);
  border-radius: 18px;
}

.contact-option-icon svg {
  width: 27px;
  height: 27px;
}

.contact-option-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.contact-option-copy small,
.contact-option-copy strong,
.contact-option-copy > span {
  display: block;
}

.contact-option-copy small {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.contact-option-copy strong {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-option-copy > span {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-overflow: ellipsis;
}

.contact-option-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 15px;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
  position: relative;
  padding: 94px 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 53, 0.64), rgba(3, 5, 8, 0.98)),
    var(--dark);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: start;
  gap: 52px;
}

.contact-form-intro {
  position: sticky;
  top: 130px;
}

.contact-form-intro h2 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.9px;
}

.contact-form-intro > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-form-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-form-point {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.contact-form-point > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.14);
  border: 1px solid rgba(0, 169, 232, 0.3);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
}

.contact-form-point strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form-point p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.contact-form-card {
  padding: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.contact-form-card-header {
  margin-bottom: 29px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-card-header > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form-card-header h2 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-form-card-header p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field {
  min-width: 0;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: #dce5ef;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-field label span,
.contact-consent strong {
  color: #ff5a60;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  display: block;
  width: 100%;
  color: #ffffff;
  background: rgba(3, 10, 18, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  outline: none;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field input,
.contact-field select {
  height: 50px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 165px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #718096;
}

.contact-field select {
  color-scheme: dark;
  cursor: pointer;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: rgba(3, 14, 25, 0.88);
  border-color: rgba(0, 169, 232, 0.65);
  box-shadow: 0 0 0 3px rgba(0, 169, 232, 0.1);
}

.contact-field input.has-error,
.contact-field select.has-error,
.contact-field textarea.has-error,
.contact-consent input.has-error {
  border-color: rgba(255, 82, 89, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 82, 89, 0.08);
}

.contact-field-error {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  color: #ff777c;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-message-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.contact-message-meta > small:last-child {
  flex-shrink: 0;
  margin-top: 6px;
  color: #738297;
  font-size: 10px;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  margin-top: 19px;
  color: #aeb9c8;
  font-size: 11px;
  line-height: 1.65;
  cursor: pointer;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.contact-consent-error {
  margin-left: 29px;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.contact-form-status:not(:empty) {
  display: block;
}

.contact-form-status.is-info {
  color: #bfeeff;
  background: rgba(0, 169, 232, 0.1);
  border: 1px solid rgba(0, 169, 232, 0.25);
}

.contact-form-status.is-success {
  color: #bdf3d1;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.contact-form-status.is-error {
  color: #ffc2c5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.contact-submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 180px;
  min-height: 48px;
  margin-top: 20px;
  padding: 12px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 15px 36px rgba(0, 169, 232, 0.22);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.contact-submit-button:hover:not(:disabled) {
  transform: translateY(-3px);
}

.contact-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-submit-loader {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: contactButtonSpin 0.8s linear infinite;
}

.contact-submit-button.is-loading .contact-submit-icon {
  display: none;
}

.contact-submit-button.is-loading .contact-submit-loader {
  display: inline-block;
}

.contact-form-note {
  margin-top: 13px;
  color: #738297;
  font-size: 10px;
  line-height: 1.6;
}

@keyframes contactButtonSpin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   CONTACT ASSURANCE
========================================================= */

.contact-assurance-section {
  padding: 0 0 92px;
  background: var(--black);
}

.contact-assurance-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  padding: 40px;
  background:
    radial-gradient(circle at right, rgba(0, 169, 232, 0.13), transparent 38%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 28px;
}

.contact-assurance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: #ffffff;
  background: rgba(0, 169, 232, 0.14);
  border: 1px solid rgba(0, 169, 232, 0.34);
  border-radius: 22px;
}

.contact-assurance-icon svg {
  width: 34px;
  height: 34px;
}

.contact-assurance-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-assurance-copy h2 {
  margin-bottom: 11px;
  color: #ffffff;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
}

.contact-assurance-copy p {
  max-width: 850px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}


/* =========================================================
   CONTACT FAQ
========================================================= */

.contact-faq-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at bottom left, rgba(0, 169, 232, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(6, 26, 53, 0.48), rgba(3, 5, 8, 0.98));
}

.contact-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.contact-faq-item[open] {
  background: rgba(0, 169, 232, 0.055);
  border-color: rgba(0, 169, 232, 0.26);
}

.contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 18px 21px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-plus {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  background: rgba(0, 169, 232, 0.12);
  border: 1px solid rgba(0, 169, 232, 0.25);
  border-radius: 50%;
}

.contact-faq-plus::before,
.contact-faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.contact-faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-faq-item[open] .contact-faq-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.contact-faq-answer {
  padding: 0 21px 21px;
}

.contact-faq-answer p {
  max-width: 780px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}


/* =========================================================
   CONTACT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1040px) {
  .contact-hero-container {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-option-card {
    min-height: 125px;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-intro {
    position: static;
    max-width: 820px;
  }

  .contact-form-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-container {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .contact-hero-copy {
    text-align: center;
  }

  .contact-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-hero-visual {
    min-height: 265px;
  }

  .contact-hero-logo-wrap {
    width: 170px;
    height: 170px;
    padding: 27px;
  }

  .contact-hero-orbit-one {
    width: 225px;
    height: 225px;
  }

  .contact-hero-orbit-two {
    width: 270px;
    height: 270px;
  }

  .contact-form-points {
    grid-template-columns: 1fr;
  }

  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .contact-hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .contact-hero-copy > p {
    font-size: 14px;
  }

  .contact-primary-link,
  .contact-secondary-link {
    min-height: 45px;
    padding: 11px 16px;
    font-size: 12px;
  }

  .contact-options-section,
  .contact-form-section,
  .contact-faq-section {
    padding: 64px 0;
  }

  .contact-section-heading {
    margin-bottom: 31px;
  }

  .contact-option-card {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .contact-option-copy strong {
    font-size: 16px;
  }

  .contact-option-arrow {
    display: none;
  }

  .contact-form-intro h2 {
    font-size: 31px;
  }

  .contact-form-point {
    padding: 16px;
  }

  .contact-form-card {
    padding: 25px 19px;
    border-radius: 23px;
  }

  .contact-form-card-header h2 {
    font-size: 26px;
  }

  .contact-field-grid {
    gap: 15px;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-assurance-section {
    padding-bottom: 64px;
  }

  .contact-assurance-card {
    grid-template-columns: 1fr;
    padding: 27px 21px;
    border-radius: 22px;
  }

  .contact-assurance-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .contact-faq-section {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .contact-faq-item summary {
    min-height: 62px;
    padding: 16px 17px;
    font-size: 13px;
  }

  .contact-faq-answer {
    padding: 0 17px 18px;
  }
}

@media (max-width: 390px) {
  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero-actions {
    flex-direction: column;
  }

  .contact-primary-link,
  .contact-secondary-link {
    width: 100%;
  }

  .contact-option-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 13px;
  }

  .contact-option-icon {
    width: 46px;
    height: 46px;
  }

  .contact-option-icon svg {
    width: 23px;
    height: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-primary-link,
  .contact-secondary-link,
  .contact-option-card,
  .contact-submit-button,
  .contact-faq-plus::before,
  .contact-faq-plus::after {
    transition: none;
  }

  .contact-submit-loader {
    animation-duration: 1.4s;
  }
}


/* =========================================================
   HIDE SLIDER ARROWS ON MOBILE
========================================================= */

@media (max-width: 620px) {
  .logo-slider-section .slider-arrow {
    display: none !important;
  }
}