/* styles.css */

/* =========================
            BASE
========================= */
:root{
  --header-h: 96px;
  --white: #ffffff;
  --black: #111111;
}

*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: #111;
}

/* =========================
            HEADER
========================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.dark{
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.site-header.scrolled{
  background: rgba(255,255,255,.98);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.nav-container{
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo color per state */
.logo{
  font-weight: 600;
  letter-spacing: .6px;
  font-size: 16px;
  line-height: 1;
  user-select: none;
  text-decoration: none;
}

.site-header.dark .logo{ color: #fff; }
.site-header.scrolled .logo{ color: #111; }

/* Nav */
.nav-menu{
  display: flex;
  align-items: center;
  gap: 20px;
}

/* NO boxes. Underline on hover + active. */
.nav-link{
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: color .2s ease;
}

.site-header.dark .nav-link{ color: rgba(255,255,255,.90); }
.site-header.scrolled .nav-link{ color: rgba(0,0,0,.78); }

.nav-link.active{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-link:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-header.scrolled .nav-link:hover{
  color: #000;
}

/* Login button (straight edges) */
.login-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 20px;
  border-radius: 0;              /* straight edges */
  text-decoration: none;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;

  font-weight: 600;
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.login-btn:hover{
  background: rgba(0,0,0,.70);
  transform: translateY(-1px);
}

.site-header.scrolled .login-btn{
  background: #111;
  border-color: rgba(0,0,0,.12);
  color: #fff;
}

/* =========================
   HEADER: AUTH WRAP
========================= */
.nav-login{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Optional second auth button style when logged in */
.login-btn-outline{
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

.login-btn-outline:hover{
  background: rgba(255,255,255,.08);
}

.site-header.scrolled .login-btn-outline{
  background: transparent;
  border-color: rgba(0,0,0,.16);
  color: #111;
}

.site-header.scrolled .login-btn-outline:hover{
  background: rgba(0,0,0,.05);
}

/* =========================
   HAMBURGER
========================= */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span{
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}

.site-header.dark .hamburger span{
  background: #fff;
}

.site-header.scrolled .hamburger span{
  background: #111;
}

.hamburger.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2){
  opacity: 0;
}

.hamburger.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu{
  display: none;
  background: rgba(255,255,255,.98);
  border-top: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.mobile-menu.is-open{
  display: block;
}

.mobile-nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px 22px;

  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link{
  display: block;
  width: 100%;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.mobile-nav-link.active{
  color: #11897e;
}

.mobile-auth{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
}

.mobile-login-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  width: 100%;
  padding: 0 16px;
  text-decoration: none;

  background: #111;
  border: 1px solid #111;
  color: #fff;

  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.mobile-login-btn:hover{
  background: #000;
}

.mobile-login-btn-outline{
  background: transparent;
  color: #111;
  border-color: rgba(0,0,0,.16);
}

.mobile-login-btn-outline:hover{
  background: rgba(0,0,0,.05);
}

/* =========================
   RESPONSIVE HEADER
========================= */
@media (max-width: 992px){
  .nav-menu,
  .desktop-auth{
    display: none;
  }

  .hamburger{
    display: inline-flex;
  }

  .nav-container{
    padding: 0 20px;
  }
}

@media (max-width: 576px){
  .nav-container{
    padding: 0 16px;
  }

  .mobile-nav{
    padding: 12px 16px 18px;
  }

  .logo{
    font-size: 15px;
  }

  .mobile-nav-link{
    font-size: 14px;
  }

  .mobile-login-btn{
    font-size: 13px;
  }
}

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  min-height: 100vh;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: calc(var(--header-h) + 40px) 18px 60px;

  background-image: url("images/21517.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55),
    rgba(0,0,0,.22)
  );
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-content h1{
  margin: 0 0 14px 0;
  color: #fff;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.12;
  font-size: clamp(34px, 4.2vw, 62px);
}

.hero-content p{
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  font-size: clamp(14px, 1.2vw, 18px);
  max-width: 720px;
  margin-inline: auto;
}

/* =========================
   RESPONSIVE (basic)
========================= */
@media (max-width: 860px){
  .nav-menu{ display: none; }
  .nav-container{ padding: 0 16px; }
}

/* =========================
   VISION SECTION
========================= */
.vision{
  position: relative;
  width: 100%;
  margin: 70px 0;
  padding: 120px 0;
  overflow: hidden;
}

.vision-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/2933.jpg");
  background-size: cover;
  background-position: center;
}

.vision-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.72),
    rgba(0,0,0,.35)
  );
}

.vision-card{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vision-card > *{
  max-width: 640px;
}

.vision-kicker{
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 16px;
}

.vision-title{
  margin: 0 0 18px 0;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  font-weight: 600;
}

.vision-text{
  margin: 0 0 32px 0;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.75;
}

/* SINGLE BUTTON */
.vision-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 50px;
  padding: 0 22px;

  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition: transform .2s ease, background .2s ease;
}

.vision-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.20);
}

.vision-btn span{
  transition: transform .2s ease;
}

.vision-btn:hover span{
  transform: translateX(4px);
}

@media (max-width: 640px){
  .vision{
    padding: 90px 0;
  }
}

/* =========================
   SERVICES MODERN
========================= */

.services-modern{
  margin: 70px 0;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #0d0f5b,
    #151875
  );
  color: #fff;
}

.services-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-head{
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  opacity: .8;
  margin-bottom: 16px;
}

.services-head h2{
  margin: 0 0 16px 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  font-weight: 600;
}

.services-head p{
  margin: 0;
  opacity: .85;
  line-height: 1.7;
  font-size: 16px;
}

/* Cards */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 18px;
  padding: 28px 24px;

  transition: transform .2s ease, background .2s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.10);
}

.service-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,.08);
  margin-bottom: 18px;
  font-size: 18px;
}

.service-card h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
}

.service-card p{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  opacity: .85;
}

/* CTA */
.services-cta{
  margin-top: 50px;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
        TICKETING SYSTEM
========================= */
.ticketing-modern{
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(13,15,91,.06), rgba(21,24,117,.10));
}

.ticketing-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.ticketing-head{
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.ticketing-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 14px;
}

.ticketing-head h2{
  margin: 0 0 14px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  color: #111;
}

.ticketing-head p{
  margin: 0;
  color: rgba(0,0,0,.64);
  font-size: 16px;
  line-height: 1.75;
}

/* Grid */
.ticketing-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

/* Image card */
.ticketing-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 520px;

  background-image: url("images/2150062008.jpg"); 
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.ticketing-media-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,15,91,.50), rgba(0,0,0,.08));
}

/* Content card */
.ticketing-card{
  border-radius: 22px;
  padding: 28px 26px;

  background: rgba(255,255,255,.72);
  border: 1px solid rgba(13,15,91,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 18px 50px rgba(0,0,0,.06);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticketing-card h3{
  margin: 0 0 10px 0;
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

.ticketing-text{
  margin: 0 0 18px 0;
  color: rgba(0,0,0,.66);
  line-height: 1.75;
  font-size: 15.5px;
}

/* Features */
.ticketing-features{
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.tfeature{
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.tfeature i{
  margin-top: 4px;
  color: rgba(13,15,91,.92);
  font-size: 16px;
}

.tfeature-title{
  font-weight: 700;
  color: #111;
  font-size: 14px;
  margin-bottom: 2px;
}

.tfeature-desc{
  color: rgba(0,0,0,.62);
  font-size: 14px;
  line-height: 1.55;
}

/* Makes the glass button match the section better */
.ticketing-card .vision-btn{
  background: rgba(13,15,91,.10);
  border-color: rgba(13,15,91,.25);
  color: #111;
}

.ticketing-card .vision-btn:hover{
  background: rgba(13,15,91,.16);
}

/* Responsive */
@media (max-width: 980px){
  .ticketing-grid{
    grid-template-columns: 1fr;
  }
  .ticketing-media{
    min-height: 360px;
  }
}

/* =========================
        OUR PROCESS
========================= */
.process-modern{
  padding: 120px 0;
  background: #fff;
}

.process-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

/* Left intro */
.process-intro{
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}

.process-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 16px;
}

.process-title{
  margin: 0 0 16px 0;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.05;
  font-weight: 600;
  color: #111;
}

.process-subtext{
  margin: 0 0 28px 0;
  color: rgba(0,0,0,.65);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
}

/* Timeline */
.process-timeline{
  position: relative;
  padding-left: 18px;
}

/* vertical line */
.process-timeline::before{
  content:"";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(13,15,91,.25),
    rgba(13,15,91,.08)
  );
}

.process-step{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.step-marker{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-num{
  width: 34px;
  height: 34px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 12px;
  letter-spacing: .5px;

  color: rgba(13,15,91,.95);
  background: rgba(13,15,91,.08);
  border: 1px solid rgba(13,15,91,.18);
}

/* Cards */
.step-card{
  border-radius: 18px;
  padding: 20px 18px;

  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);

  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.step-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0,0,0,.08);
}

.step-card h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #111;
  line-height: 1.25;
}

.step-card p{
  margin: 0;
  color: rgba(0,0,0,.65);
  line-height: 1.7;
  font-size: 14.8px;
}

/* Responsive */
@media (max-width: 980px){
  .process-wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-intro{
    position: static;
  }

  .process-timeline{
    padding-left: 14px;
  }
}

/* =========================
    PROCESS (SCROLL IMAGE
========================= */
.process-scroll{
  padding: 110px 0;
  background: #fff;
}

.process-scroll-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

/* Sticky image side */
.process-sticky{
  position: sticky;
  top: calc(var(--header-h) + 22px);
  align-self: start;
}

.process-sticky-frame{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 22px 60px rgba(0,0,0,.12);
  background: #0b0d2e;
}

/* Images crossfade */
.process-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.03);
  transition: opacity .45s ease, transform .6s ease;
}

.process-img.is-active{
  opacity: 1;
  transform: scale(1.00);
}

/* Overlay to keep text readable */
.process-sticky-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.72),
    rgba(0,0,0,.18)
  );
  z-index: 2;
}

/* Caption on top of image */
.process-sticky-caption{
  position: absolute;
  z-index: 3;
  left: 26px;
  right: 26px;
  bottom: 26px;
  max-width: 520px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 18px;
  padding: 18px 18px 16px;
}

.process-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  margin-bottom: 10px;
}

.process-sticky-title{
  margin: 0 0 10px 0;
  font-size: 24px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
}

.process-sticky-sub{
  margin: 0;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  font-size: 14.5px;
}

/* Steps */
.process-steps{
  display: grid;
  gap: 16px;
  padding: 10px 0;
}

.pstep{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 20px 18px;

  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}

.pstep-top{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pstep-num{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;

  /* TechCore blue tint */
  color: rgba(13,15,91,.95);
  background: rgba(13,15,91,.08);
  border: 1px solid rgba(13,15,91,.18);
}

.pstep-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #111;
  font-weight: 600;
}

.pstep-text{
  margin: 0;
  color: rgba(0,0,0,.65);
  line-height: 1.7;
  font-size: 14.8px;
}

/* Active step emphasis */
.pstep.is-active{
  border-color: rgba(13,15,91,.22);
  box-shadow: 0 18px 45px rgba(13,15,91,.10);
  transform: translateY(-2px);
}

.pstep.is-active .pstep-num{
  background: rgba(13,15,91,.14);
  border-color: rgba(13,15,91,.30);
}

/* Makes the scroll feel intentional */
.pstep{
  scroll-margin-top: calc(var(--header-h) + 30px);
}

/* Responsive */
@media (max-width: 980px){
  .process-scroll-wrap{
    grid-template-columns: 1fr;
  }

  .process-sticky{
    position: relative;
    top: auto;
  }

  .process-sticky-frame{
    min-height: 420px;
  }
}

/* =========================
          ABOUT HERO
========================= */
.about-hero{
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  background: #fff;
  overflow: hidden;
}

.about-hero-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-hero-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 18px;
}

.about-hero-title{
  margin: 0 0 18px 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #111;
}

.about-hero-text{
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(0,0,0,.65);
  font-size: 17px;
  line-height: 1.85;
}

.about-hero-meta{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13,15,91,.06);
  border: 1px solid rgba(13,15,91,.12);
  color: rgba(0,0,0,.78);
  font-weight: 600;
  font-size: 13px;
}

.meta-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13,15,91,.85);
}

/* Decorative shapes */
.about-hero-shape{
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  z-index: 1;
}

.shape-1{
  width: 420px;
  height: 420px;
  left: -140px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.20), rgba(13,15,91,.00));
}

.shape-2{
  width: 520px;
  height: 520px;
  right: -220px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.16), rgba(13,15,91,.00));
}

.shape-3{
  width: 420px;
  height: 420px;
  right: 10%;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.12), rgba(13,15,91,.00));
}

@media (max-width: 640px){
  .about-hero{
    padding: calc(var(--header-h) + 70px) 0 70px;
  }

  .about-hero-title{
    letter-spacing: 4px;
  }

  .about-hero-text{
    font-size: 16px;
  }
}

/* =========================
   MISSION (BLUE FORMAT)
========================= */
.mission-blue{
  padding: 120px 0;
  background: linear-gradient(135deg, #0d0f5b, #151875);
  position: relative;
  overflow: hidden;
}

/* subtle soft glow shapes */
.mission-blue::before,
.mission-blue::after{
  content:"";
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .22;
  pointer-events: none;
}

.mission-blue::before{
  left: -220px;
  top: -180px;
  background: radial-gradient(circle, rgba(255,255,255,.35), rgba(255,255,255,0));
}

.mission-blue::after{
  right: -260px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255,255,255,.25), rgba(255,255,255,0));
}

.mission-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

/* Left */
.mission-left{
  position: sticky;
  top: calc(var(--header-h) + 28px);
  align-self: start;
}

.mission-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}

.mission-title{
  margin: 0 0 22px 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.1;
  font-weight: 600;
}

/* Accent */
.mission-accent{
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-accent-line{
  width: 64px;
  height: 2px;
  background: rgba(255,255,255,.55);
  border-radius: 99px;
}

.mission-accent-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
}

/* Right / Glass card */
.mission-card{
  border-radius: 22px;
  padding: 28px 26px;

  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}

.mission-card p{
  margin: 0 0 16px 0;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.85;
}

.mission-card p:last-of-type{
  margin-bottom: 20px;
}

/* Bullet points */
.mission-points{
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.mpoint{
  display: flex;
  gap: 12px;
  align-items: flex-start;

  padding: 12px 12px;
  border-radius: 16px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.mpoint i{
  margin-top: 2px;
  color: rgba(255,255,255,.90);
  font-size: 16px;
}

.mpoint span{
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  font-size: 14.5px;
}

/* Responsive */
@media (max-width: 980px){
  .mission-wrap{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mission-left{
    position: static;
  }
}

/* =======================================
    JOURNEY SECTION (SPLIT + 2 IMAGES)
======================================= */

.journey-section{
  padding: 120px 0;
  background: #fff;
}

.journey-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.journey-header{
  margin-bottom: 40px;
}

.journey-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 14px;
}

.journey-title{
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.1;
  color: #111;
}

/* Timeline */
.journey-timeline{
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  padding-left: 20px;
}

/* vertical line */
.journey-timeline::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(13,15,91,.25);
}

.journey-item{
  display: flex;
  gap: 24px;
  position: relative;
}

.journey-year{
  font-size: 22px;
  font-weight: 700;
  color: #0d0f5b;
  min-width: 60px;
}

.journey-info h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.journey-info p{
  margin: 0;
  color: rgba(0,0,0,.65);
  line-height: 1.7;
  font-size: 15px;
}

/* Right Visual */
.journey-visual{
  position: relative;
  min-height: 500px;
}

/* smooth animation baseline */
.journey-image{
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.15);

  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    box-shadow .55s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.journey-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Main image (baseline transform so no jump) */
.image-main{
  width: 75%;
  height: 420px;
  top: 0;
  left: 0;
  z-index: 2;

  transform: translateY(0);
}

/* Secondary layered image (baseline transform) */
.image-secondary{
  width: 65%;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 1;

  transform: translateY(40px);
}

/* Hover as a composition */
.journey-visual:hover .image-main{
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(0,0,0,.18);
}

.journey-visual:hover .image-secondary{
  transform: translateY(24px);
  box-shadow: 0 30px 70px rgba(0,0,0,.16);
}

/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .journey-image{
    transition: none;
  }
}

/* Responsive */
@media (max-width: 980px){

  .journey-wrap{
    grid-template-columns: 1fr;
  }

  .journey-visual{
    min-height: 380px;
    margin-top: 40px;
  }

  .image-main{
    position: relative;
    width: 100%;
    height: 300px;
    transform: translateY(0);
  }

  .image-secondary{
    display: none;
  }
}

/* ===============================================
              PRESS / NEWS SECTION
=============================================== */

.press-section{
  padding: 120px 0;
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(13,15,91,.55), rgba(0,0,0,0)),
    linear-gradient(180deg, #05050a, #070717);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.press-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */

.press-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
}

.press-title{
  margin: 0 0 16px 0;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.05;
}

.press-subtext{
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  font-size: 15.5px;
}

/* Right Rail */

.press-rail{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Individual Logo Card */

.press-logo{
  height: 90px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: 
    transform .45s cubic-bezier(.22,1,.36,1),
    background .45s cubic-bezier(.22,1,.36,1),
    border-color .45s cubic-bezier(.22,1,.36,1),
    box-shadow .45s cubic-bezier(.22,1,.36,1);
}

/* Icon */

.press-logo i{
  font-size: 22px;
  color: rgba(255,255,255,.65);
  transition: color .4s ease, transform .4s ease;
}

/* Text */

.press-logo span{
  font-size: 13px;
  letter-spacing: .8px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .4s ease;
}

/* Hover Effects */

.press-logo:hover{
  transform: translateY(-6px);
  background: rgba(13,15,91,.30);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}

.press-logo:hover i{
  color: #ffffff;
  transform: scale(1.15);
}

.press-logo:hover span{
  color: #ffffff;
}

/* Responsive */

@media (max-width: 980px){
  .press-wrap{
    grid-template-columns: 1fr;
  }

  .press-rail{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
        TICKETING HERO
========================= */
.ticketing-hero{
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  background: #fff;
  overflow: hidden;
}

.ticketing-hero-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.ticketing-hero-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 18px;
}

.ticketing-hero-title{
  margin: 0 0 18px 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #111;
}

.ticketing-hero-text{
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(0,0,0,.65);
  font-size: 17px;
  line-height: 1.85;
}

.ticketing-hero-meta{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Decorative shapes */
.ticketing-hero-shape{
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  z-index: 1;
}

.tshape-1{
  width: 420px;
  height: 420px;
  left: -140px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.20), rgba(13,15,91,.00));
}

.tshape-2{
  width: 520px;
  height: 520px;
  right: -220px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.16), rgba(13,15,91,.00));
}

.tshape-3{
  width: 420px;
  height: 420px;
  right: 10%;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.12), rgba(13,15,91,.00));
}

@media (max-width: 640px){
  .ticketing-hero{
    padding: calc(var(--header-h) + 70px) 0 70px;
  }

  .ticketing-hero-title{
    letter-spacing: 4px;
  }

  .ticketing-hero-text{
    font-size: 16px;
  }
}

/* =======================================
        TICKETING FEATURE SECTION
======================================= */
.ticketing-feature{
  padding: 110px 0;
  background: #fff;
}

.ticketing-feature-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

/* Left */
.tf-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 14px;
}

.tf-title{
  margin: 0 0 22px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}

/* Glass card */
.tf-card{
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(13,15,91,.04);
  border: 1px solid rgba(13,15,91,.10);

  box-shadow: 0 18px 55px rgba(0,0,0,.06);
}

.tf-rail{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(
    180deg,
    rgba(13,15,91,.95),
    rgba(13,15,91,.35)
  );
}

.tf-card-body{
  padding: 26px 26px 24px 30px;
}

.tf-card-body p{
  margin: 0 0 14px 0;
  color: rgba(0,0,0,.66);
  line-height: 1.85;
  font-size: 15.5px;
}

.tf-card-body p:last-of-type{
  margin-bottom: 18px;
}

/* Bullets */
.tf-bullets{
  display: grid;
  gap: 12px;
}

.tf-bullet{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(0,0,0,.75);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

.tf-bullet i{
  margin-top: 2px;
  color: rgba(13,15,91,.92);
  font-size: 16px;
}

/* Right visual (UPDATED: larger image, no white box, no shadow) */
.ticketing-feature-right{
  display: flex;
  justify-content: flex-end;
}

.tf-visual-frame{
  width: 100%;
  max-width: 620px;  
  border-radius: 18px;
  overflow: hidden;

  background: none;  
  border: none;      
  box-shadow: none;  
  padding: 0;        
}

.tf-visual-frame img{
  width: 100%;
  height: 420px;     
  display: block;
  object-fit: cover;  
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 980px){
  .ticketing-feature-wrap{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ticketing-feature-right{
    justify-content: center;
  }

  .tf-visual-frame{
    max-width: 100%;
  }

  .tf-visual-frame img{
    height: 320px;
  }
}

@media (max-width: 640px){
  .ticketing-feature{
    padding: 80px 0;
  }

  .tf-card-body{
    padding: 22px 18px 20px 24px;
  }

  .tf-visual-frame img{
    height: 260px;
  }
}

/* =======================================
          CAREERS / JOB OPENINGS
======================================= */
:root{
  --tc-blue: #0d0f5b;
}

.careers{
  background: #000;
  padding: 110px 0;
}

.careers-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- “glass” button ---------- */
.glass-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 44px;
  padding: 0 18px;

  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;

  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);

  transition: transform .18s ease, background .2s ease, border-color .2s ease;
}

.glass-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
}

.glass-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}

/* ---------- TOP: Intro + image ---------- */
.careers-hero{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  overflow: hidden;

  background: radial-gradient(circle at 20% 0%, rgba(13,15,91,.28), rgba(0,0,0,0) 55%),
              radial-gradient(circle at 80% 10%, rgba(255,255,255,.06), rgba(0,0,0,0) 55%),
              #000;
}

.careers-hero-left{
  padding: 56px 54px;
}

.careers-kicker{
  display: inline-flex;
  align-items: center;
  gap: 14px;

  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;

  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}

.careers-kicker-line{
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,.32);
}

.careers-title{
  margin: 0 0 18px 0;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.15;
  font-weight: 600;
}

.careers-text{
  margin: 0 0 22px 0;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  font-size: 15.5px;
  max-width: 560px;
}

.careers-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.careers-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 999px;

  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);

  font-weight: 600;
  font-size: 13px;
}

.careers-chip i{
  color: rgba(255,255,255,.88);
}

/* image */
.careers-hero-right{
  position: relative;
  min-height: 360px;
  height: 100%;
}

.careers-hero-right img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.careers-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.78),
    rgba(0,0,0,.35)
  );
}

/* ---------- GRID HEAD ---------- */
.careers-grid-head{
  margin-top: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.careers-grid-title h3{
  margin: 0 0 6px 0;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.careers-grid-title p{
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- FILTERS (interactive) ---------- */
.careers-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn{
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);

  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 13px;

  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .18s ease;
}

.filter-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}

.filter-btn.is-active{
  background: rgba(13,15,91,.55);
  border-color: rgba(13,15,91,.85);
  color: #fff;
}

/* ---------- JOBS GRID ---------- */
.careers-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.job-card{
  border-radius: 22px;
  padding: 26px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);

  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.job-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}

.job-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.job-title{
  margin: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.25;
}

.job-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.job-tag{
  padding: 6px 10px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}

.job-loc{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
}

.job-loc i{
  color: rgba(255,255,255,.82);
}

.job-desc{
  margin: 14px 0 18px 0;
  color: rgba(255,255,255,.68);
  line-height: 1.85;
  font-size: 14.5px;
  max-width: 560px;
}

.job-btn{
  width: fit-content;
}

/* ---------- BOTTOM CTA (FIXED ALIGNMENT) ---------- */
.careers-bottom{
  margin-top: 34px;
}

.cv-card{
  border-radius: 26px;
  padding: 28px;

  background: radial-gradient(circle at 15% 20%, rgba(13,15,91,.45), rgba(0,0,0,0) 55%),
              linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: center;
}

.cv-left h3{
  margin: 0 0 8px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.cv-left p{
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14.5px;
}

/* The key fix: each field is a block (label + input) */
.cv-form{
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.cv-field{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cv-actions{
  display: flex;
  align-items: flex-end;
}

.cv-label{
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 2px;
}

.cv-input,
.cv-file{
  width: 100%;
  height: 44px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);

  color: #fff;
  padding: 0 12px;
  outline: none;

  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.cv-input::placeholder{
  color: rgba(255,255,255,.45);
}

.cv-input:focus,
.cv-file:focus{
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}

/* File input polish (keeps alignment + consistent look) */
.cv-file{
  padding: 8px 12px;
}

.cv-file::file-selector-button{
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 0 12px;
  margin-right: 10px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .18s ease;
}

.cv-file::file-selector-button:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
  transform: translateY(-1px);
}

.cv-submit{
  height: 44px;
  white-space: nowrap;
  min-width: 150px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .careers-hero{
    grid-template-columns: 1fr;
  }

  .careers-hero-right{
    min-height: 280px;
  }

  .careers-hero-left{
    padding: 44px 24px;
  }

  .careers-grid-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .careers-grid{
    grid-template-columns: 1fr;
  }

  .cv-card{
    grid-template-columns: 1fr;
  }

  .cv-form{
    grid-template-columns: 1fr;
  }

  .cv-submit{
    width: 100%;
  }
}

/* =========================
        CONTACT HERO
========================= */
.contact-hero{
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  background: #fff;
  overflow: hidden;
}

.contact-hero-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-hero-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(13,15,91,.85);
  margin-bottom: 18px;
}

.contact-hero-title{
  margin: 0 0 18px 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #111;
}

.contact-hero-text{
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(0,0,0,.65);
  font-size: 17px;
  line-height: 1.85;
}

.contact-hero-meta{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-meta-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13,15,91,.06);
  border: 1px solid rgba(13,15,91,.12);
  color: rgba(0,0,0,.78);
  font-weight: 600;
  font-size: 13px;
}

.contact-meta-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13,15,91,.85);
}

/* Decorative shapes */
.contact-hero-shape{
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  z-index: 1;
}

.cshape-1{
  width: 420px;
  height: 420px;
  left: -140px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.20), rgba(13,15,91,.00));
}

.cshape-2{
  width: 520px;
  height: 520px;
  right: -220px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.16), rgba(13,15,91,.00));
}

.cshape-3{
  width: 420px;
  height: 420px;
  right: 10%;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(13,15,91,.12), rgba(13,15,91,.00));
}

@media (max-width: 640px){
  .contact-hero{
    padding: calc(var(--header-h) + 70px) 0 70px;
  }

  .contact-hero-title{
    letter-spacing: 4px;
  }

  .contact-hero-text{
    font-size: 16px;
  }
}

:root{
  --tc-blue: #0d0f5b;
}

:root{
  --tc-blue: #0d0f5b;     
  --tc-blue-2: #0b0d4f;   
}

/* =========================
        CONTACT FORM
========================= */
.contact-form-section{
  padding: 110px 0;     
  background: #fff;
}

.contact-form-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 26px;
  align-items: start;
}

/* Left panel */
.contact-panel{
  border-radius: 26px;
  padding: 34px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      #0d0f5b,
      #151875
    );
  border: 1px solid rgba(255,255,255,.14);
}

.contact-panel-kicker{
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.84);
  margin-bottom: 12px;
}

.contact-panel-title{
  margin: 0 0 12px 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  font-weight: 700;
}

.contact-panel-text{
  margin: 0 0 18px 0;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
  font-size: 14.5px;
  max-width: 520px;
}

.contact-panel-list{
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.contact-panel-item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;

  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.cpi-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.14);
}

.cpi-ico i{ color: rgba(255,255,255,.92); }

.cpi-label{
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.76);
  margin-bottom: 2px;
}

.cpi-value{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}

.contact-panel-note{
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.74);
  font-weight: 600;
  font-size: 13px;
}

.cpn-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 0 0 6px rgba(255,255,255,.10);
}

/* Right form card */
.contact-card{
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
}

.contact-card-head{
  padding: 26px 26px 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.contact-card-title{
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .4px;
}

.contact-card-sub{
  margin: 0;
  color: rgba(0,0,0,.62);
  font-size: 13.5px;
  line-height: 1.6;
}

.contact-form{
  padding: 22px 26px 26px;
}

.form-grid{
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.form-grid.two{
  grid-template-columns: 1fr 1fr;
}

.field label{
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,.68);
  margin: 0 0 8px 2px;
}

.req{ color: var(--tc-blue); }

.field input,
.field select,
.field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  color: #111;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input{ height: 46px; }
.field select{ height: 46px; cursor: pointer; }
.field textarea{ resize: vertical; min-height: 120px; padding-top: 12px; }

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(13,15,91,.35);
  box-shadow: 0 0 0 4px rgba(13,15,91,.10);
}

/* =========================
   intl-tel-input (PHONE)
========================= */
.iti{ width: 100%; }

.iti .phone-input,
.iti input[type="tel"]{
  width: 100% !important;
  height: 46px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  padding: 12px 14px !important;
  padding-left: 84px !important; 
  font-size: 14px !important;
}

/* country button */
.iti__selected-country{
  border-right: 1px solid rgba(0,0,0,.10);
  padding: 0 12px 0 12px;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

/* dropdown panel + search */
.iti__dropdown-content{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
  z-index: 9999; 
}

/* search input inside dropdown */
.iti__search-input{
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  padding: 10px 12px;
  outline: none;
}

.iti__search-input:focus{
  border-color: rgba(13,15,91,.35);
  box-shadow: 0 0 0 4px rgba(13,15,91,.10);
}

/* Actions */
.form-actions{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.submit-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 48px;
  width: 260px;

  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.16);
  background: #111;
  color: #fff;

  font-weight: 800;
  letter-spacing: .4px;
  cursor: pointer;

  transition: transform .15s ease, opacity .2s ease;
}

.submit-btn:hover{
  transform: translateY(-1px);
  opacity: .93;
}

.form-footnote{
  color: rgba(0,0,0,.55);
  font-size: 13px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .contact-form-wrap{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px){
  .form-grid.two{
    grid-template-columns: 1fr;
  }

  .submit-btn{
    width: 100%;
  }
}

/* =========================
          FOOTER
========================= */
.site-footer{
  background: #fff;
  padding: 90px 0 28px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr 2fr;
  gap: 44px;
  align-items: start;
}

.footer-logo{
  width: 150px;
  height: auto;
  object-fit: contain;
}

.footer-col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link{
  color: rgba(0,0,0,.72);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-link:hover{
  color: #111;
  transform: translateX(2px);
}

.footer-contact .footer-item{
  color: rgba(0,0,0,.72);
  font-size: 15px;
  line-height: 1.5;
}

.footer-label{
  color: rgba(0,0,0,.88);
  font-weight: 600;
  margin-right: 6px;
}

.footer-title{
  font-weight: 500;
  letter-spacing: .8px;
  font-size: 18px;
  color: #111;
}

.footer-subtext{
  margin: 0 0 10px 0;
  color: rgba(0,0,0,.64);
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}

.subscribe-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscribe-label{
  font-size: 12px;
  color: rgba(0,0,0,.70);
  font-weight: 500;
}

.subscribe-input{
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.22);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.subscribe-input:focus{
  border-color: rgba(0,0,0,.45);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.subscribe-consent{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(0,0,0,.68);
  font-size: 13px;
  line-height: 1.35;
}

.subscribe-consent input{ margin-top: 2px; }

.subscribe-btn{
  height: 48px;
  width: 220px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, opacity .2s ease;
}

.subscribe-btn:hover{
  transform: translateY(-1px);
  opacity: .92;
}

/* Bottom row */
.footer-bottom{
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 22px 24px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-top: 1px solid rgba(0,0,0,.08);
}

.footer-bottom-left{
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.footer-bottom-link{
  color: rgba(0,0,0,.70);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-bottom-link:hover{ color: #111; }

.footer-copy{
  color: rgba(0,0,0,.58);
  font-size: 14px;
}

.footer-social{
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-size: 16px;

  color: #111;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;

  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: #111;
  color: #fff;
}

/* Responsive footer */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .site-footer{ padding: 70px 0 24px; }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .subscribe-btn{ width: 100%; }

  .footer-bottom{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-bottom-left{
    justify-content: center;
    text-align: center;
  }

  .footer-social{
    justify-content: center;
  }
}