@charset "UTF-8";
/*!
 * ESTORIL TRADING — style.scss
 * Matched 100% to uploaded index.php class structure
 * Version: 1.2.0
 *
 * Covered classes from index.php:
 * .bg-lines, .container, .gold, .nav, .brand, .logo, .cta, .lang, .burger,
 * .hero, .hero-bg, .fade, .btns, .btn, .primary, .features, .feature, .icon,
 * .grid2, .section-title, .section-lead, .muted, .stats, .stat, .image-card,
 * .products, .card, .product, .markets, .map, .region, .process, .step,
 * .circle, .cards6, .city, .contact, .form, .footer, .slogan, .copy
 */
/* =========================================================
   01. BRAND VARIABLES
   ========================================================= */
/* =========================================================
   02. BASE / RESET
   ========================================================= */
:root {
  --bg: #05080d;
  --bg2: #07111f;
  --gold: #d4a13a;
  --gold2: #f0c76a;
  --text: #ffffff;
  --muted: #bfc6d1;
  --card: rgba(7, 17, 31, 0.76);
  --line: rgba(212, 161, 58, 0.45);
}

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

html {
  scroll-behavior: smooth;
  background: #05080d;
}

body {
  min-height: 100vh;
  font-family: Inter, Montserrat, Arial, sans-serif;
  background: #05080d;
  color: #ffffff;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 20% 10%, rgba(212, 161, 58, 0.16), transparent 28%), radial-gradient(circle at 80% 30%, rgba(25, 87, 140, 0.22), transparent 32%), linear-gradient(180deg, #02050a, #07111f 46%, #02050a);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

.bg-lines {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  pointer-events: none;
  background-image: repeating-linear-gradient(145deg, transparent 0 42px, rgba(212, 161, 58, 0.08) 43px, transparent 44px);
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.gold {
  color: #d4a13a;
}

.muted {
  color: #bfc6d1;
  font-size: 14px;
}

/* =========================================================
   03. HEADER / NAVIGATION
   index.php: header > .container.nav > .brand + nav + .burger
   ========================================================= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 7, 13, 0.88);
  border-bottom: 1px solid rgba(212, 161, 58, 0.18);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
header.is-scrolled {
  background: rgba(2, 5, 10, 0.96);
  border-bottom-color: rgba(212, 161, 58, 0.34);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.34);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.nav a {
  color: #e9edf5;
  opacity: 0.94;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.nav a:hover {
  color: #d4a13a;
  opacity: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand h1 {
  font-size: 23px;
  line-height: 1;
  letter-spacing: 5px;
  color: #ffffff;
  text-transform: uppercase;
}
.brand span {
  display: block;
  margin-top: 5px;
  color: #d4a13a;
  font-size: 15px;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.logo {
  width: 48px;
  height: 58px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 16px rgba(212, 161, 58, 0.28));
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
nav a {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.04em;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f0c76a, #d4a13a);
  transition: width 0.22s ease;
}
nav a:hover::after, nav a.is-active::after {
  width: 100%;
}

.cta {
  color: #d4a13a !important;
  border: 1px solid #d4a13a;
  padding: 11px 17px;
  border-radius: 6px;
  background: rgba(212, 161, 58, 0.06);
  box-shadow: 0 0 0 rgba(212, 161, 58, 0);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.cta:hover {
  color: #100a03 !important;
  background: linear-gradient(135deg, #f0c76a, #9f6e1e);
  box-shadow: 0 12px 28px rgba(212, 161, 58, 0.18);
  transform: translateY(-1px);
}
.cta::after {
  display: none;
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang a {
  color: #d4a13a;
  font-weight: 800;
}
.lang a.is-active {
  color: #f0c76a;
}

.burger {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(212, 161, 58, 0.42);
  border-radius: 10px;
  background: rgba(212, 161, 58, 0.06);
  color: #d4a13a;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* =========================================================
   04. COMMON SECTION STRUCTURE
   ========================================================= */
main {
  position: relative;
}

section {
  position: relative;
  padding: 92px 0;
  border-bottom: 1px solid rgba(212, 161, 58, 0.12);
}

.section-title {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.section-title::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, #f0c76a, #d4a13a, transparent);
}

.section-lead {
  max-width: 720px;
  margin-bottom: 35px;
  color: #bfc6d1;
  font-size: 18px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.card,
.feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)), rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(212, 161, 58, 0.45);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.card {
  padding: 20px;
}

.icon {
  margin-bottom: 6px;
  color: #d4a13a;
  font-size: 28px;
  line-height: 1;
}
.icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* =========================================================
   05. HERO
   index.php: #home.hero, .hero-bg, .fade, .btns, .btn.primary, .features
   ========================================================= */
.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 5, 10, 0.94), rgba(2, 5, 10, 0.36), rgba(2, 5, 10, 0.8)), radial-gradient(circle at 72% 34%, rgba(212, 161, 58, 0.12), transparent 31%);
}
.hero h2 {
  margin-bottom: 26px;
  font-size: clamp(56px, 7vw, 105px);
  line-height: 0.98;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}
.hero p {
  max-width: 540px;
  margin-bottom: 32px;
  color: #edf2fb;
  font-size: 21px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.45)), url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, #05080d);
}

.btns {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 25px;
  border: 1px solid #d4a13a;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(212, 161, 58, 0.08);
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: #f0c76a;
  box-shadow: 0 14px 30px rgba(212, 161, 58, 0.16);
}
.btn.primary {
  color: #070707;
  border-color: transparent;
  background: linear-gradient(135deg, #d4a13a, #9f6e1e);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin-top: 60px;
}

.feature {
  padding: 20px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 199, 106, 0.62);
}
.feature strong {
  display: block;
  font-size: 18px;
}
.feature span {
  color: #bfc6d1;
  font-size: 14px;
}

/* =========================================================
   06. ABOUT
   index.php: #about, .grid2, .stats, .stat, .image-card
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 28px;
}

.stat {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(212, 161, 58, 0.45);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(212, 161, 58, 0.065), transparent), rgba(0, 0, 0, 0.35);
  text-align: center;
}
.stat b {
  display: block;
  margin-bottom: 6px;
  color: #d4a13a;
  font-size: 17px;
}

.image-card {
  min-height: 390px;
  border: 1px solid rgba(212, 161, 58, 0.45);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.04), rgba(5, 8, 13, 0.56)), url("https://images.unsplash.com/photo-1518684079-3c830dcef090?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

/* =========================================================
   07. PRODUCTS
   index.php: #products, .products, .card.product
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 26px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}
.product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.55), rgba(5, 8, 13, 0.96)), url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
}
.product::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(212, 161, 58, 0.12);
  filter: blur(2px);
}
.product:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 199, 106, 0.58);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), 0 0 34px rgba(212, 161, 58, 0.12);
}
.product h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #d4a13a;
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
}
.product ul {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.product li {
  margin: 10px 0;
  color: #e8edf4;
  list-style: none;
}
.product li::before {
  content: "✓";
  margin-right: 9px;
  color: #d4a13a;
}
.product .btn {
  position: relative;
  z-index: 1;
}

/* =========================================================
   08. GLOBAL MARKETS
   index.php: #markets, .markets, .map, .region
   ========================================================= */
.markets {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.map {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 161, 58, 0.45);
  border-radius: 22px;
  background: radial-gradient(circle at 50% 50%, rgba(212, 161, 58, 0.5), transparent 12%), url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}
.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(3, 7, 13, 0.45), rgba(3, 7, 13, 0.8)), radial-gradient(circle at 24% 40%, rgba(212, 161, 58, 0.34), transparent 10%), radial-gradient(circle at 70% 55%, rgba(212, 161, 58, 0.24), transparent 14%);
}
.map::before {
  content: "";
  position: absolute;
  inset: 10%;
  z-index: 1;
  border: 1px solid rgba(212, 161, 58, 0.22);
  border-radius: 50%;
  opacity: 0.6;
}

.region {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(212, 161, 58, 0.12);
}
.region:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.region .icon {
  flex: 0 0 auto;
  margin: 0;
  font-size: 24px;
}
.region h3 {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 18px;
}

/* =========================================================
   09. TRADING PROCESS
   index.php: #process, .process, .step, .circle
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)), rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(212, 161, 58, 0.45);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  min-height: 178px;
  padding: 18px 10px;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 199, 106, 0.56);
}
.step b {
  display: block;
  color: #ffffff;
}
.step span {
  display: block;
  margin-top: 4px;
  color: #bfc6d1;
  font-size: 12px;
}

.circle {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border: 2px solid #d4a13a;
  border-radius: 50%;
  color: #d4a13a;
  background: radial-gradient(circle, rgba(212, 161, 58, 0.13), rgba(0, 0, 0, 0.42));
  font-size: 30px;
  box-shadow: 0 0 26px rgba(212, 161, 58, 0.1);
}

/* =========================================================
   10. COMPLIANCE / LEADERSHIP
   index.php: #compliance, #leadership, .cards6, .city
   ========================================================= */
.cards6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards6 .card {
  min-height: 190px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.cards6 .card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 199, 106, 0.56);
}
.cards6 .card h3 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

#leadership {
  position: relative;
  overflow: hidden;
}

.city {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5)), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.city::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(2, 5, 10, 0.94), rgba(2, 5, 10, 0.36), rgba(2, 5, 10, 0.8)), linear-gradient(180deg, rgba(5, 8, 13, 0.18), rgba(5, 8, 13, 0.9));
}

/* =========================================================
   11. CONTACT
   index.php: #contact, .contact, .form.card
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}
.contact .card p {
  margin-bottom: 12px;
  color: #e9edf5;
}
.contact .card p:last-child {
  margin-bottom: 0;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(212, 161, 58, 0.25);
  border-radius: 7px;
  background: #eef1f5;
  color: #111111;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #d4a13a;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 161, 58, 0.16);
}
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: rgba(17, 17, 17, 0.62);
}
.form textarea {
  grid-column: 1/-1;
  min-height: 130px;
  resize: vertical;
}
.form button {
  grid-column: 1/-1;
  border: 0;
  border-radius: 7px;
  padding: 15px;
  background: linear-gradient(135deg, #f0c76a, #b67820);
  color: #100a03;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 161, 58, 0.18);
}

/* =========================================================
   12. FOOTER
   index.php: .footer, .slogan, .copy
   ========================================================= */
.footer {
  padding: 70px 0;
  text-align: center;
  background: #02050a;
  border-top: 1px solid rgba(212, 161, 58, 0.12);
}
.footer .brand {
  justify-content: center;
  margin-bottom: 25px;
}

.slogan {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 25px 0;
  color: #bfc6d1;
}
.slogan b {
  display: block;
  color: #d4a13a;
  font-size: 20px;
}

.copy {
  color: #98a1ad;
  font-size: 13px;
}

/* =========================================================
   13. ANIMATIONS / JS STATES
   ========================================================= */
.fade {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.is-invalid {
  border-color: rgba(255, 70, 70, 0.76) !important;
  box-shadow: 0 0 0 4px rgba(255, 70, 70, 0.16) !important;
}

.et-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(420px, 100vw - 36px);
  padding: 14px 18px;
  border: 1px solid rgba(212, 161, 58, 0.35);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(2, 5, 10, 0.94);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.et-toast.is-visible {
  opacity: 1;
  transform: none;
}
.et-toast.is-error {
  border-color: rgba(255, 80, 80, 0.55);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 80;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 161, 58, 0.45);
  border-radius: 50%;
  background: rgba(2, 5, 10, 0.84);
  color: #d4a13a;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* =========================================================
   14. RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  nav {
    gap: 14px;
    font-size: 12px;
  }
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 980px) {
  .burger {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #03070d;
    border-bottom: 1px solid rgba(212, 161, 58, 0.45);
  }
  nav.open, nav.is-open {
    display: flex;
  }
  nav a::after {
    bottom: -4px;
  }
  .features,
  .stats,
  .products,
  .cards6 {
    grid-template-columns: 1fr 1fr;
  }
  .grid2,
  .markets,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .image-card,
  .map {
    min-height: 380px;
  }
  .slogan {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 620px) {
  section {
    padding: 62px 0;
  }
  .container {
    width: 90%;
  }
  .nav {
    height: 70px;
  }
  nav {
    top: 70px;
  }
  .brand h1 {
    font-size: 18px;
    letter-spacing: 3px;
  }
  .brand span {
    font-size: 12px;
    letter-spacing: 5px;
  }
  .logo {
    width: 38px;
    height: auto;
  }
  .hero {
    padding-top: 90px;
  }
  .hero h2 {
    font-size: 52px;
  }
  .hero p {
    font-size: 17px;
  }
  .btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .features,
  .stats,
  .products,
  .cards6,
  .process {
    grid-template-columns: 1fr;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .card,
  .feature {
    padding: 18px;
  }
}

/*# sourceMappingURL=style.css.map */



/* === ESTORIL TRADING RC1 integration fixes === */

.image-hero,
.bg-hero {
  background-image: url("/assets/backgrounds/hero/hero-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-world-map,
.bg-world-map {
  background-image: url("/assets/backgrounds/world-map/world-map-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-compliance,
.bg-compliance {
  background-image: url("/assets/backgrounds/compliance/compliance-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-dubai-contact,
.bg-dubai-contact {
  background-image: url("/assets/backgrounds/dubai-contact/dubai-contact-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-office-main {
  background-image: url("/assets/images/office-main/office-main-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-card {
  min-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .25);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .35);
}

.brand-logo,
.footer-logo {
  display: block;
  height: 54px;
  width: auto;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.site-header {
  z-index: 1000;
}

@media (max-width: 768px) {
  .image-hero,
  .bg-hero {
    background-image: url("/assets/backgrounds/hero/hero-mobile.jpg");
  }

  .image-world-map,
  .bg-world-map {
    background-image: url("/assets/backgrounds/world-map/world-map-mobile.jpg");
  }

  .image-compliance,
  .bg-compliance {
    background-image: url("/assets/backgrounds/compliance/compliance-mobile.jpg");
  }

  .image-dubai-contact,
  .bg-dubai-contact {
    background-image: url("/assets/backgrounds/dubai-contact/dubai-contact-mobile.jpg");
  }

  .image-office-main {
    background-image: url("/assets/images/office-main/office-main-mobile.jpg");
  }

  .brand-logo,
  .footer-logo {
    height: 42px;
  }
}

/* FINAL INTEGRATION SAFETY */
html,body{background:#05080d}body{overflow-x:hidden}.site-header img,.site-footer img{max-width:100%}
