/* ================= ROOT ================= */
:root {
  --brand-blue: #1f4fa3;   /* adjust to exact logo blue */
  --brand-red: #e11d2e;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --header-height: 90px;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER / NAVBAR ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px; /* space between logo and nav */
}

/* LOGO */
.logo {
  margin-left: 16px; /* pulls logo slightly away from edge */
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* NAV LINKS */
.main-nav {
  margin-left: auto; /* push nav to the right */
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--brand-blue);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover {
  opacity: 0.8;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
}

/* NAV TOOLS (TRANSLATION PLACEHOLDER) */
.nav-tools {
  min-width: 80px;
  text-align: right;
}
/* ================= HERO ================= */
.page-hero{
  padding: 140px 0 100px;
  text-align: center;

  background: #1e3a8a; /* Saker blue */
}

.page-hero h1{
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
}

.hero-stripe{
  display: block;
  width: 60px;
  height: 4px;
  background: #e11d48; /* red accent */
  margin: 18px auto 0;
  border-radius: 999px;
}

.page-hero p{
  max-width: 720px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.8;
  color: #e5e7eb; /* soft white */
}

/* Responsive */
@media (max-width: 768px){
  .page-hero{
    padding: 110px 0 80px;
  }

  .page-hero h1{
    font-size: 36px;
  }

  .page-hero p{
    font-size: 16px;
  }
}
/* ================= COLOR SYSTEM ================= */
:root {
  --expo-red: #e11d48;     /* primary accent */
  --expo-blue: #1e3a8a;    /* secondary accent */
  --text-main: #111827;
  --text-muted: #4b5563;
  --border-soft: #e5e7eb;
  --bg-white: #ffffff;
}

/* ================= SECTION ================= */
.expo-detail {
  background: var(--bg-white);
  color: var(--text-main);
  padding: 110px 0;
}

.expo-detail .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.expo-header {
  text-align: center;
  margin-bottom: 90px;
}

.expo-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--expo-blue);
  margin-bottom: 14px;
}

/* RED STRIPE */
.expo-header .red-line {
  width: 64px;
  height: 4px;
  background: var(--expo-red);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.expo-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

/* ================= CONTENT GRID ================= */
.expo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* LEFT | RIGHT */
  gap: 70px;
  align-items: center;
}

/* FORCE POSITIONS */
.expo-text {
  grid-column: 1;              /* LEFT */
  display: flex;
  flex-direction: column;
}

.expo-image {
  grid-column: 2;              /* RIGHT */
  position: relative;
}

/* ================= TEXT ================= */
.expo-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--expo-blue);
  margin-bottom: 20px;
}

.expo-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ================= IMAGE ================= */

/* RED FRAME */
.expo-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid var(--expo-red);
  z-index: 0;
}

/* BLUE BACK PLANE */
.expo-image::after {
  content: "";
  position: absolute;
  inset: -30px -12px -12px -30px;
  background: var(--expo-blue);
  z-index: -1;
}

.expo-image img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ================= CTA BUTTON ================= */
.expo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 32px 0 0;
  width: fit-content;

  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background-color: var(--expo-blue);

  border-radius: 999px;
  transition: all 0.25s ease;
}

.expo-link:hover {
  background-color: var(--expo-red);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .expo-detail {
    padding: 80px 0;
  }

  .expo-header h2 {
    font-size: 34px;
  }

  .expo-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* reset forced columns on mobile */
  .expo-text,
  .expo-image {
    grid-column: auto;
  }

  .expo-image::before {
    inset: -12px;
  }

  .expo-image::after {
    inset: -18px -8px -8px -18px;
  }
}

/* ================= ROOT ================= */
:root {
  --expo-blue: #1e3a8a;
  --expo-red: #e11d48;
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-white: #ffffff;
}

/* ================= SECTION ================= */
.expo-detail {
  background: var(--bg-white);
  padding: 120px 0;
}

/* ================= HEADER ================= */
.expo-header {
  text-align: center;
  margin-bottom: 90px;
}

.expo-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--expo-blue);
  margin-bottom: 14px;
}

.red-line {
  width: 64px;
  height: 4px;
  background: var(--expo-red);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.expo-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

/* ================= CONTENT GRID ================= */
.expo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* LEFT | RIGHT */
  gap: 70px;
  align-items: center;
}

/* FORCE POSITIONING */
.expo-text {
  grid-column: 1;
  display: flex;
  flex-direction: column;
}

.expo-image {
  grid-column: 2;
  position: relative;
}

/* ================= TEXT ================= */
.expo-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ================= META ================= */
.expo-meta {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.expo-meta li {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 10px;
}

/* ================= IMAGE ================= */

/* RED FRAME */
.expo-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid var(--expo-red);
  z-index: 0;
}

/* BLUE DEPTH PLANE */
.expo-image::after {
  content: "";
  position: absolute;
  inset: -30px -12px -12px -30px;
  background: var(--expo-blue);
  z-index: -1;
}

.expo-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* ================= CTA BUTTON ================= */
.expo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 36px;
  width: fit-content;

  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background-color: var(--expo-blue);

  border-radius: 999px;
  transition: all 0.25s ease;
}

.expo-link:hover {
  background-color: var(--expo-red);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .expo-detail {
    padding: 80px 0;
  }

  .expo-header h2 {
    font-size: 34px;
  }

  .expo-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* natural stacking on mobile */
  .expo-text,
  .expo-image {
    grid-column: auto;
  }

  .expo-image::before {
    inset: -12px;
  }

  .expo-image::after {
    inset: -18px -8px -8px -18px;
  }
}

/* ================= GO FRANCHISE EXPO ================= */

#go-franchise-expo {
  background: #ffffff;
  padding: 120px 0;
}

/* ---------- HEADER ---------- */
#go-franchise-expo .expo-header {
  text-align: center;
  margin-bottom: 90px;
}

#go-franchise-expo .expo-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #1e3a8a; /* brand blue */
  margin-bottom: 14px;
}

#go-franchise-expo .red-line {
  width: 64px;
  height: 4px;
  background: #e11d48; /* red stripe */
  margin: 0 auto 28px;
  border-radius: 2px;
}

#go-franchise-expo .expo-subtitle {
  font-size: 18px;
  color: #475569;
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

/* ---------- CONTENT GRID ---------- */
#go-franchise-expo .expo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* FORCE TEXT LEFT / IMAGE RIGHT */
#go-franchise-expo .expo-text {
  order: 1;
  display: flex;
  flex-direction: column;
}

#go-franchise-expo .expo-image {
  order: 2;
  position: relative;
}

/* ---------- TEXT ---------- */
#go-franchise-expo .expo-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
}

#go-franchise-expo .expo-meta {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

#go-franchise-expo .expo-meta li {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 10px;
}

/* ---------- IMAGE FRAME ---------- */
#go-franchise-expo .expo-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid #e11d48; /* red frame */
  z-index: 0;
}

#go-franchise-expo .expo-image::after {
  content: "";
  position: absolute;
  inset: -30px -12px -12px -30px;
  background: #1e3a8a; /* blue depth plane */
  z-index: -1;
}

#go-franchise-expo .expo-image img {
  width: 100%;
  display: block;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* ---------- CTA BUTTON ---------- */
#go-franchise-expo .expo-link {
  align-self: center; /* centers under text */
  margin-top: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background-color: #1e3a8a;

  border-radius: 999px;
  transition: all 0.25s ease;
}

#go-franchise-expo .expo-link:hover {
  background-color: #e11d48;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  #go-franchise-expo {
    padding: 80px 0;
  }

  #go-franchise-expo .expo-header h2 {
    font-size: 34px;
  }

  #go-franchise-expo .expo-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #go-franchise-expo .expo-image::before {
    inset: -12px;
  }

  #go-franchise-expo .expo-image::after {
    inset: -18px -8px -8px -18px;
  }
}
/* ================= EXPO DETAIL (GENERAL) ================= */
.expo-detail {
  padding: 120px 0;
  background: #ffffff;
}

.expo-detail .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */
.expo-header {
  text-align: center;
  margin-bottom: 90px;
}

.expo-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #1e3a8a; /* brand blue */
  margin-bottom: 12px;
}

.red-line {
  width: 64px;
  height: 4px;
  background-color: #e11d48; /* REAL RED */
  margin: 16px auto 26px;
  border-radius: 2px;
}

.expo-subtitle {
  font-size: 18px;
  color: #4b5563;
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

/* ================= CONTENT GRID ================= */
.expo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* TEXT | IMAGE */
  gap: 80px;
  align-items: center;
}

/* ================= TEXT ================= */
.expo-text {
  display: flex;
  flex-direction: column;
}

.expo-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 18px;
}

/* META LIST */
.expo-meta {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.expo-meta li {
  font-size: 15px;
  color: #111827;
  margin-bottom: 8px;
}

.expo-meta strong {
  color: #1e3a8a;
}

/* ================= IMAGE ================= */
.expo-image {
  position: relative;
}

.expo-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid #e11d48; /* RED FRAME */
  z-index: 0;
}

.expo-image::after {
  content: "";
  position: absolute;
  inset: -30px -12px -12px -30px;
  background: #1e3a8a; /* BLUE BACK PLANE */
  z-index: -1;
}

.expo-image img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ================= CTA BUTTON ================= */
.expo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 32px;
  width: fit-content;

  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background-color: #1e3a8a; /* BLUE */

  border-radius: 999px;
  transition: all 0.25s ease;
}

.expo-link:hover {
  background-color: #e11d48; /* RED on hover */
  transform: translateY(-1px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .expo-detail {
    padding: 80px 0;
  }

  .expo-header h2 {
    font-size: 34px;
  }

  .expo-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .expo-image::before {
    inset: -12px;
  }

  .expo-image::after {
    inset: -18px -8px -8px -18px;
  }
}
/* ================= ROOT TOKENS ================= */
:root {
  --expo-blue: #1e3a8a;
  --expo-red: #e11d48;
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-white: #ffffff;
}

/* ================= SECTION ================= */
.expo-detail {
  padding: 120px 0;
  background: var(--bg-white);
}

/* ================= HEADER ================= */
.expo-header {
  text-align: center;
  margin-bottom: 90px;
}

.expo-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--expo-blue);
  margin-bottom: 14px;
}

.expo-header .red-line {
  width: 64px;
  height: 4px;
  background: var(--expo-red);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.expo-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

/* ================= CONTENT GRID ================= */
.expo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* TEXT LEFT / IMAGE RIGHT */
  gap: 70px;
  align-items: center;
}

/* ================= TEXT ================= */
.expo-text {
  display: flex;
  flex-direction: column;
}

.expo-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ================= META ================= */
.expo-meta {
  list-style: none;
  padding: 0;
  margin: 26px 0 10px;
}

.expo-meta li {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.expo-meta strong {
  color: var(--expo-blue);
}

/* ================= IMAGE ================= */
.expo-image {
  position: relative;
}

.expo-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid var(--expo-red);
  z-index: 0;
}

.expo-image::after {
  content: "";
  position: absolute;
  inset: -30px -12px -12px -30px;
  background: var(--expo-blue);
  z-index: -1;
}

.expo-image img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ================= CTA BUTTON ================= */
.expo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 36px;
  padding: 14px 36px;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background-color: var(--expo-blue);

  border-radius: 999px;
  transition: all 0.25s ease;
}

.expo-link:hover {
  background-color: var(--expo-red);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .expo-detail {
    padding: 80px 0;
  }

  .expo-header h2 {
    font-size: 34px;
  }

  .expo-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .expo-image::before {
    inset: -12px;
  }

  .expo-image::after {
    inset: -18px -8px -8px -18px;
  }
}
/* ================= ROOT TOKENS ================= */
:root {
  --expo-blue: #1e3a8a;
  --expo-red: #e11d48;
  --text-main: #0f172a;
  --text-muted: #475569;
  --bg-white: #ffffff;
}

/* ================= SECTION ================= */
#trablus-formula-expo {
  padding: 120px 0;
  background: var(--bg-white);
}

/* ================= HEADER ================= */
#trablus-formula-expo .expo-header {
  text-align: center;
  margin-bottom: 90px;
}

#trablus-formula-expo .expo-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--expo-blue);
  margin-bottom: 14px;
}

#trablus-formula-expo .red-line {
  width: 64px;
  height: 4px;
  background: var(--expo-red);
  margin: 0 auto 26px;
  border-radius: 2px;
}

#trablus-formula-expo .expo-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
}

/* ================= CONTENT GRID ================= */
#trablus-formula-expo .expo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* TEXT LEFT / IMAGE RIGHT */
  gap: 70px;
  align-items: center;
}

/* ================= TEXT ================= */
#trablus-formula-expo .expo-text {
  display: flex;
  flex-direction: column;
}

#trablus-formula-expo .expo-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* ================= META ================= */
#trablus-formula-expo .expo-meta {
  list-style: none;
  padding: 0;
  margin: 26px 0 10px;
}

#trablus-formula-expo .expo-meta li {
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 10px;
}

#trablus-formula-expo .expo-meta strong {
  color: var(--expo-blue);
}

/* ================= IMAGE ================= */
#trablus-formula-expo .expo-image {
  position: relative;
}

#trablus-formula-expo .expo-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 3px solid var(--expo-red);
  z-index: 0;
}

#trablus-formula-expo .expo-image::after {
  content: "";
  position: absolute;
  inset: -30px -12px -12px -30px;
  background: var(--expo-blue);
  z-index: -1;
}

#trablus-formula-expo .expo-image img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* ================= CTA BUTTON ================= */
#trablus-formula-expo .expo-link {
  align-self: center;
  margin-top: 36px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background-color: var(--expo-blue);

  border-radius: 999px;
  transition: all 0.25s ease;
}

#trablus-formula-expo .expo-link:hover {
  background-color: var(--expo-red);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  #trablus-formula-expo {
    padding: 80px 0;
  }

  #trablus-formula-expo .expo-header h2 {
    font-size: 34px;
  }

  #trablus-formula-expo .expo-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  #trablus-formula-expo .expo-image::before {
    inset: -12px;
  }

  #trablus-formula-expo .expo-image::after {
    inset: -18px -8px -8px -18px;
  }
}
/* ================= PAGE CTA ================= */
.page-cta {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    #0f2c6b 100%
  );
  text-align: center;
}

.page-cta h2 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.page-cta p {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.page-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  color: #ffffff;
  background: #e11d48; /* red */

  border-radius: 999px;
  transition: all 0.25s ease;
}

.page-cta .cta-btn:hover {
  background: #ffffff;
  color: #1e3a8a;
}
/* ================= SIMPLE FOOTER ================= */

.simple-footer {
  background: #020617; /* very dark, clean */
  padding: 18px 0;
}

.simple-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
}

.simple-footer strong {
  color: #ffffff;
  font-weight: 500;
}

.footer-divider {
  margin: 0 10px;
  color: #475569;
}
