/* Top One Typing — navy + gold/yellow, UAE chevron accents */
body.theme-topone {
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --bg: #f4f6f9;
  --bg-panel: #ffffff;
  --header: #0b1f3a;
  --navy: #0b1f3a;
  --navy-mid: #143456;
  --yellow: #f5c518;
  --yellow-bright: #ffd84d;
  --yellow-dim: rgba(245, 197, 24, 0.16);
  --red: #c8102e;
  --green: #007a33;
  --black: #111111;
  --text: #122033;
  --muted: #5a6b7d;
  --card: #ffffff;
  --accent: #f5c518;
  --accent-bright: #ffd84d;
  --wa: #16a34a;
  --border: rgba(11, 31, 58, 0.12);
  background:
    radial-gradient(ellipse 90% 50% at 100% 0%, rgba(245, 197, 24, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 40% at 0% 100%, rgba(11, 31, 58, 0.06), transparent 50%),
    linear-gradient(180deg, #eef2f7 0%, var(--bg) 40%, #e8edf4 100%);
  color: var(--text);
}

body.theme-topone .site-header {
  background: var(--header);
  color: #fff;
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 8px 28px rgba(11, 31, 58, 0.28);
}

body.theme-topone .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

body.theme-topone .brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  flex-shrink: 0;
}

body.theme-topone .brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.1rem;
}

body.theme-topone .brand strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  display: block;
}

body.theme-topone .brand-tag {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
  display: block;
}

body.theme-topone .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

body.theme-topone .site-nav a:hover,
body.theme-topone .site-nav a.is-active {
  color: var(--navy);
  background: var(--yellow);
}

body.theme-topone .lang-btn {
  border-color: rgba(245, 197, 24, 0.45);
  color: var(--yellow);
}

body.theme-topone .nav-toggle {
  color: var(--yellow);
}

@media (max-width: 768px) {
  html, body.theme-topone { overflow-x: clip; }

  body.theme-topone .site-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body.theme-topone .header-inner {
    position: relative;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-height: 3.5rem;
    max-width: 100%;
  }

  body.theme-topone .brand {
    flex: 1 1 0;
    min-width: 0;
  }

  body.theme-topone .brand strong {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.theme-topone .brand span { display: none; }
  body.theme-topone .brand-tag { display: none; }

  body.theme-topone .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1.5px solid rgba(245, 197, 24, 0.45);
    border-radius: 999px;
    background: rgba(245, 197, 24, 0.12);
    font-size: 1.15rem;
    flex-shrink: 0;
  }

  body.theme-topone .site-nav {
    position: static;
    inset: auto;
    top: auto;
    width: 100%;
    order: 3;
    flex: none;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.55rem 0 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 31, 58, 0.98);
  }

  body.theme-topone .site-nav.is-open { display: flex; }

  body.theme-topone .site-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  body.theme-topone .site-nav a.is-active,
  body.theme-topone .site-nav a:hover {
    color: var(--navy);
    background: var(--yellow);
    border-color: var(--yellow);
  }
}

body.theme-topone .btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border: 0;
  font-weight: 800;
}

body.theme-topone .btn-primary:hover {
  background: var(--yellow-bright);
  text-decoration: none;
}

body.theme-topone .btn-ghost {
  border: 1.5px solid rgba(11, 31, 58, 0.2);
  color: var(--navy);
  background: transparent;
}

body.theme-topone .btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(11, 31, 58, 0.04);
  text-decoration: none;
}

body.theme-topone .btn-wa {
  background: var(--wa);
  color: #fff;
  border: 0;
  font-weight: 700;
}

body.theme-topone .btn-wa:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

body.theme-topone .site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  border-top: 3px solid var(--yellow);
  padding: 2rem var(--pad);
  font-size: 0.82rem;
}

body.theme-topone .site-footer a { color: var(--yellow); }

body.theme-topone .wa-fab {
  background: var(--wa);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.4);
}

/* Hero */
.tot-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.tot-hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .tot-hero-inner { grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; }
}

.tot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow-dim);
  border: 1px solid rgba(245, 197, 24, 0.45);
  border-radius: 999px;
}

.tot-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--navy);
}

.tot-hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, var(--red), var(--green) 50%, var(--black));
  background-clip: text;
  -webkit-background-clip: text;
}

.tot-lead {
  margin: 0 0 1.35rem;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.tot-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.tot-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.tot-hero-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.28);
  border: 1px solid rgba(245, 197, 24, 0.35);
}

.tot-hero-card img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: #fff;
}

.tot-hero-card h2 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
}

.tot-hero-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tot-chevrons {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.tot-chevron {
  width: 42px;
  height: 14px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.tot-chevron--red { background: var(--red); }
.tot-chevron--green { background: var(--green); }
.tot-chevron--black { background: #222; }

/* Sections */
.tot-section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.tot-section-sep {
  border-top: 1px solid var(--border);
}

.tot-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7a00;
}

.tot-title {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--navy);
}

.tot-sub {
  margin: 0 0 1.75rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.tot-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .tot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .tot-grid { grid-template-columns: repeat(3, 1fr); }
}

.tot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
  transition: transform 0.25s ease, border-color 0.25s;
}

.tot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.55);
}

.tot-card-ico {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.tot-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.tot-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.tot-highlight {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  background: linear-gradient(135deg, #fff8d6 0%, #fff 55%);
  border: 1px solid rgba(245, 197, 24, 0.45);
  border-radius: 20px;
  padding: 1.35rem;
}

@media (min-width: 800px) {
  .tot-highlight { grid-template-columns: 1fr 1.1fr; padding: 1.75rem; }
}

.tot-highlight img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  object-fit: cover;
  max-height: 280px;
}

.tot-highlight h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--red);
}

.tot-highlight p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.tot-list {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.tot-list li {
  position: relative;
  padding-inline-start: 1.15rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.tot-list li::before {
  content: "▸";
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 800;
}

.tot-contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .tot-contact-grid { grid-template-columns: 1fr 1fr; }
}

.tot-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.tot-info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.tot-info-card a {
  color: var(--navy);
  font-weight: 700;
}

.tot-info-card p {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.tot-map {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.88), rgba(20, 52, 86, 0.92)),
    radial-gradient(circle at 30% 40%, rgba(245, 197, 24, 0.25), transparent 50%);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  text-decoration: none;
  border: 1px solid rgba(245, 197, 24, 0.35);
}

.tot-map:hover { text-decoration: none; filter: brightness(1.05); }

.tot-map strong {
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}

.tot-map span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.tot-flyer-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .tot-flyer-grid { grid-template-columns: repeat(3, 1fr); }
}

.tot-flyer-grid a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.tot-flyer-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-head {
  padding: clamp(2rem, 5vw, 3rem) 0 1rem;
}

.page-head h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
}

.page-head p {
  margin: 0;
  max-width: 50ch;
  color: var(--muted);
}

@media (max-width: 599px) {
  .tot-ctas { flex-direction: column; }
  .tot-ctas .btn { width: 100%; justify-content: center; }
  .tot-flyer-grid img { height: 180px; }
}
