@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

:root {
  --navy: #0F1E2E;
  --white: #FFFFFF;
  --soft: #F5F5F5;
  --gold: #D4AF37;
  --ink: #202633;
  --muted: #6D7480;
  --line: rgba(15, 30, 46, 0.12);
  --shadow: 0 24px 80px rgba(15, 30, 46, 0.14);
  --radius: 28px;

  --page-bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-strong: #F5F5F5;
  --surface-glass: rgba(255, 255, 255, 0.90);
  --card-bg: #FFFFFF;
  --text-color: #202633;
  --heading-color: #0F1E2E;
  --muted-color: #6D7480;
  --input-bg: #FFFFFF;
  --icon-bg: rgba(212, 175, 55, 0.10);
  --card-shadow: 0 12px 36px rgba(15, 30, 46, 0.06);
  --map-filter: var(--map-filter);
}

html[data-theme="dark"] {
  --white: #FFFFFF;
  --soft: #0F1E2E;
  --ink: #EAF0F7;
  --muted: #AEB8C6;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);

  --page-bg: #0F1E2E;
  --surface: #0F1E2E;
  --surface-strong: #101B2A;
  --surface-glass: #0F1E2E;
  --card-bg: #101B2A;
  --text-color: #EAF0F7;
  --heading-color: #FFFFFF;
  --muted-color: #AEB8C6;
  --input-bg: #0B1624;
  --icon-bg: rgba(212, 175, 55, 0.13);
  --card-shadow: 0 16px 45px rgba(0, 0, 0, 0.24);
  --map-filter: grayscale(0.35) invert(0.88) contrast(0.92) hue-rotate(180deg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 300;
  color: var(--text-color);
  background: var(--page-bg);
  line-height: 1.65;
}

p,
span,
a,
li,
label,
input,
textarea,
button,
.hero-lead,
.premium-strip span,
.card p,
.timeline p,
.contact p {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.btn,
.main-nav,
.main-nav a,
.section-kicker,
.eyebrow,
.hero-card span,
.hero-card strong,
.premium-strip strong,
.sector-list span,
.timeline span,
.contact a,
label,
.whatsapp {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 700;
}

h1 {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  margin-bottom: 26px;
  letter-spacing: -0.035em;
}

h2 {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  color: var(--heading-color);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

h3 {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 700;
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.main-nav {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.btn {
  font-weight: 700;
}

label {
  font-weight: 700;
}

input,
textarea {
  font-weight: 300;
}

.services-grid h3 {
  font-weight: 700;
}

.services-grid p {
  font-weight: 300;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--surface-glass);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(15, 30, 46, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--heading-color);
  opacity: 0.82;
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.language {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-glass);
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(14px);
  transition:
    background .3s ease,
    border-color .3s ease,
    transform .25s ease,
    color .25s ease;
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1 !important;
}

.language:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gold);
}

.gold-line {
  width: 140px;
  height: 3px;
  margin: 26px auto 32px;

  background: linear-gradient(90deg,
      transparent,
      var(--gold),
      transparent);

  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 150px clamp(20px, 6vw, 90px) 80px;
  /*background-image: url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2200&q=80');*/
  background-image: url('/assets/sliders/slider4.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, rgba(15, 30, 46, 0.92), rgba(15, 30, 46, 0.62), rgba(15, 30, 46, 0.22));*/
  background-image:
    linear-gradient(135deg,
      rgba(15, 30, 46, 0.92),
      rgba(15, 30, 46, 0.72),
      rgba(15, 30, 46, 0.50)),
    url('/assets/sliders/slider4.jpg')
}

.hero-content {
  position: relative;
  max-width: 900px;
  color: var(--white);
  justify-self: start;
}

.hero-logo {
  width: min(420px, 72vw);
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98;
  margin-bottom: 26px;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
  color: var(--heading-color);
  margin-bottom: 22px;
}

h3 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--heading-color);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: 55px;
  width: min(340px, calc(100% - 40px));
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.hero-card span {
  color: var(--gold);
  font-weight: 900;
}

.hero-card strong {
  color: var(--heading-color);
  font-size: 20px;
}

.premium-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin: -1px clamp(20px, 5vw, 72px) 0;
  transform: translateY(-50%);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.premium-strip div {
  background: var(--card-bg);
  padding: 28px;
}

.premium-strip strong {
  display: block;
  color: var(--heading-color);
  font-size: 18px;
}

.premium-strip span {
  color: var(--muted-color);
  font-size: 14px;
}

.section {
  padding: 90px clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.check-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.check-grid span,
.why-grid span,
.sector-list span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}

.check-grid span::before,
.why-grid span::before {
  content: "\2713";
  color: var(--gold);
  font-weight: 900;
  margin-right: 8px;
}

.image-band {
  min-height: 480px;
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background-image: linear-gradient(rgba(15, 30, 46, 0.65), rgba(15, 30, 46, 0.65)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.image-band-content {
  max-width: 900px;
  color: var(--white);
}

.trade-floating-panel {
  margin-top: 34px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.trade-floating-panel span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.trade-floating-panel strong {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.image-band h2 {
  color: var(--white);
}

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

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}


.card .icon {
  background: rgba(210, 146, 0, .08);
  border: 1px solid rgba(210, 146, 0, .16);
  border-radius: 20px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.icon.theme-icon-img {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon.theme-icon-img img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
}

.icon.theme-icon-img .icon-dark {
  display: none;
}

[data-theme="dark"] .icon.theme-icon-img .icon-light {
  display: none;
}

[data-theme="dark"] .icon.theme-icon-img .icon-dark {
  display: block;
}


.sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--surface-strong);
}

.sector-list {
  display: grid;
  gap: 14px;
}

.sector-list span {
  color: var(--heading-color);
}

.process {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.process h2,
.process h3 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.timeline div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 18px;
}

.timeline span {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.why {
  text-align: center;
}

.why h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  background: linear-gradient(135deg, var(--surface), var(--surface-strong));
}

.contact a {
  color: var(--heading-color);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--heading-color);
  font-size: 13px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.map-placeholder iframe {
  width: 100%;
  height: 390px;
  border: 0;
  display: block;
  filter: var(--map-filter);
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1001;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.whatsapp-icon {
  z-index: 1001;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: 170px;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .premium-strip,
  .split,
  .sectors,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    background-attachment: scroll;
  }

  .image-band {
    background-attachment: scroll;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .main-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .premium-strip {
    transform: none;
    margin-top: 0;
    border-radius: 0;
  }

  .services-grid,
  .timeline,
  .check-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}


.services-grid .card {
  background: var(--card-bg);
  border: 1px solid rgba(15, 30, 46, 0.08);
  border-radius: 24px;
  padding: 38px 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(15, 30, 46, 0.06);
}

.services-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 30, 46, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.services-grid .icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 22px;
  background: linear-gradient(145deg,
      rgba(15, 30, 46, 0.04),
      rgba(212, 175, 55, 0.08));
}

.services-grid .icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.services-grid .card:hover .icon img {
  transform: scale(1.08);
}

.services-grid h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--heading-color);
  font-weight: 700;
}

.services-grid p {
  color: #5f6773;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* =========================================================
   DARK MODE + THEME TOGGLE
========================================================= */

html[data-theme="dark"] body {
  background: var(--page-bg);
  color: var(--text-color);
}

html[data-theme="dark"] .site-header {
  background: var(--surface-glass);
  border-bottom-color: var(--line);
}

html[data-theme="dark"] .brand img,
html[data-theme="dark"] .footer-logo {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}


.theme-toggle {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  border: 1px solid var(--line);

  background: var(--surface-glass);

  color: var(--heading-color);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  position: relative;

  backdrop-filter: blur(14px);

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .25s ease,
    color .25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gold);
}

.theme-icon {
  position: absolute;

  font-size: 18px;
  line-height: 1;

  transition:
    opacity .28s ease,
    transform .28s ease;

  color: currentColor;
}

/* LIGHT MODE */

.theme-icon--sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon--moon {
  opacity: 0;
  transform: rotate(-90deg) scale(.5);
}

/* DARK MODE */

html[data-theme="dark"] .theme-icon--sun {
  opacity: 0;
  transform: rotate(90deg) scale(.5);
}

html[data-theme="dark"] .theme-icon--moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}



.card,
.premium-strip div,
.check-grid span,
.why-grid span,
.sector-list span,
.contact-form,
.theme-toggle,
input,
textarea {
  background-color: var(--card-bg);
  color: var(--text-color);
}

input,
textarea {
  background: var(--input-bg);
  color: var(--text-color);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-color);
}

.card p,
.services-grid p,
.premium-strip span,
.timeline p,
.contact p,
.section p {
  color: var(--muted-color);
}

.hero-content p,
.hero-lead,
.image-band-content p,
.process p {
  color: rgba(255, 255, 255, 0.86);
}

html[data-theme="dark"] .hero-overlay {
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(15, 30, 46, 0.75), rgba(15, 30, 46, 0.36));
}

html[data-theme="dark"] .image-band {
  background-image: linear-gradient(rgba(7, 17, 31, 0.78), rgba(7, 17, 31, 0.78)), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=2200&q=80');
}

html[data-theme="dark"] .services-grid .card {
  background: #0F1E2E;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--card-shadow);
}

html[data-theme="dark"] .services-grid .card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .process {
  background: #0F1E2E;
}

html[data-theme="dark"] .site-footer {
  background: #0F1E2E;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .map-placeholder iframe {
  filter: var(--map-filter);
}

html[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .contact {
  background: #0F1E2E;
}

html[data-theme="dark"] .premium-strip div {
  background: #142638;
}


html[data-theme="dark"] h3,
html[data-theme="dark"] .services-grid h3,
html[data-theme="dark"] .card h3,
html[data-theme="dark"] .timeline h3,
html[data-theme="dark"] .process h3 {
  color: #FFFFFF;
}

[data-theme="dark"] .icon img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .25));
}

[data-theme="dark"] .card .icon {
  background: rgba(210, 146, 0, .12);
  border-color: rgba(255, 255, 255, .10);
}