:root {
  --navy: #0d1b2a;
  --navy-mid: #162438;
  --navy-soft: #1e3249;

  --green: #2d7a4f;
  --green-light: #3a9e66;
  --green-pale: #e8f5ee;

  --white: #ffffff;
  --off-white: #f7faf8;
  --cream: #f3f6f4;

  --text: #1a2a1f;
  --text-mid: #3d5446;
  --text-light: #6e8a78;

  --border: #d8e8de;
  --border-light: #eaf3ed;

  --error: #c0392b;

  --shadow-soft: 0 10px 40px rgba(13, 27, 42, 0.08);
  --shadow-card: 0 12px 38px rgba(13, 27, 42, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.5;
}

/* ───────────────────────── */
/* ACCESSIBILITY */
/* ───────────────────────── */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ───────────────────────── */
/* LANGUAGE */
/* ───────────────────────── */

[data-lang] {
  display: none;
}

html[lang="fr"] [data-lang="fr"] {
  display: inline;
}

html[lang="en"] [data-lang="en"] {
  display: inline;
}

/* FIX INLINE NAV / FOOTER LINKS */
.nav-center a[data-lang],
.mobile-menu a[data-lang],
.footer-col a[data-lang],
.footer-tagline span[data-lang],
.footer-copy span[data-lang] {
  display: inline-flex;
}

/* ───────────────────────── */
/* LANG BAR */
/* ───────────────────────── */

.lang-bar {
  position: fixed;
  inset: 0 0 auto;
  height: 36px;
  z-index: 300;
  background: var(--navy);
}

.lang-bar-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-bar-text {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;

  color: rgba(255, 255, 255, 0.5);

  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;

  transition: color 0.2s ease;
}

.lang-btn:hover,
.lang-btn.active {
  color: #7ecfa3;
}

/* ───────────────────────── */
/* NAV */
/* ───────────────────────── */

nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;

  z-index: 250;

  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 48px;

  background: rgba(247, 250, 248, 0.94);
  backdrop-filter: blur(16px);

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

  transition:
    height 0.25s ease,
    box-shadow 0.25s ease;
}

nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-soft);
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--navy);
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-center a {
  position: relative;

  text-decoration: none;
  color: var(--text-mid);

  font-size: 13px;
  letter-spacing: 0.03em;

  transition: color 0.2s ease;
}

.nav-center a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 1px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.25s ease;
}

.nav-center a:hover {
  color: var(--navy);
}

.nav-center a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  text-decoration: none;
  color: var(--navy);

  font-size: 13px;
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;

  padding: 0 20px;

  background: var(--green);
  color: var(--white) !important;

  border-radius: 6px;

  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;

  background: transparent;
  border: none;

  cursor: pointer;

  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;

  background: var(--navy);

  border-radius: 2px;
}

/* ───────────────────────── */
/* MOBILE MENU */
/* ───────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 400;

  background: var(--navy);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 26px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;

  background: transparent;
  border: none;

  color: rgba(255, 255, 255, 0.7);

  font-size: 28px;

  cursor: pointer;
}

.mobile-menu a {
  text-decoration: none;

  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 7vw, 42px);
}

.mobile-phone {
  color: #7ecfa3 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 18px !important;
}

.mobile-lang {
  display: flex;
  gap: 12px;
}

.mobile-lang button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);

  color: rgba(255, 255, 255, 0.6);

  border-radius: 4px;

  padding: 8px 20px;

  cursor: pointer;

  transition: 0.2s ease;
}

.mobile-lang button.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ───────────────────────── */
/* CONTAINER */
/* ───────────────────────── */

.container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0 48px;
}

/* ───────────────────────── */
/* HERO */
/* ───────────────────────── */

.hero {
  position: relative;

  min-height: 100vh;

  padding-top: 120px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      var(--navy) 0%,
      var(--navy-mid) 60%,
      #0f2d1e 100%
    );
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(126, 207, 163, 0.08);

  top: -120px;
  right: -80px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.04);

  bottom: -80px;
  left: -80px;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 80px 48px 80px 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 28px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 999px;

  padding: 10px 18px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #7ecfa3;
}

.hero-title {
  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.95;

  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: #7ecfa3;
}

.hero-sub {
  max-width: 620px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 16px;
  line-height: 1.9;

  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-bottom: 44px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 52px;

  padding: 0 24px;

  border-radius: 8px;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);

  color: var(--white);

  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hstat-n {
  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: 32px;
}

.hstat-l {
  color: rgba(255, 255, 255, 0.65);

  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hstat-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-visual {
  padding: 80px 70px 80px 40px;
}

.hero-img-wrap {
  position: relative;

  overflow: hidden;
  border-radius: 28px;

  box-shadow: var(--shadow-card);
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;

  object-fit: cover;

  display: block;
}

/* IMAGE FALLBACK FIX */
.hero-img-wrap img:not([src]),
.hero-img-wrap img[src=""],
.about-img-col img:not([src]),
.about-img-col img[src=""] {
  min-height: 280px;
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.4),
      transparent 50%
    );
}

.hero-img-card {
  position: absolute;
  left: 24px;
  bottom: 24px;

  padding: 18px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  color: var(--white);
}

.hic-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.72);
}

.hic-status {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #7ecfa3;
}

.hero-float-card {
  position: absolute;
  bottom: 36px;
  left: 0;

  transform: translateX(-40%);

  display: flex;
  align-items: center;
  gap: 16px;

  background: var(--white);

  border-radius: 18px;

  padding: 18px 22px;

  box-shadow: var(--shadow-card);
}

.hfc-icon {
  width: 52px;
  height: 52px;

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

  border-radius: 14px;

  background: var(--green-pale);

  color: var(--green);
}

.hfc-icon svg {
  width: 24px;
  height: 24px;
}

.hfc-title {
  font-weight: 600;
  color: var(--navy);
}

.hfc-sub {
  color: var(--text-light);
  font-size: 13px;
}

/* ───────────────────────── */
/* MARQUEE */
/* ───────────────────────── */

.marquee-wrap {
  overflow: hidden;
  background: var(--green);
  color: var(--white);

  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;

  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;

  font-size: 13px;
  letter-spacing: 0.06em;
}

.marquee-track i {
  margin-left: 28px;
  font-style: normal;
  opacity: 0.5;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ───────────────────────── */
/* SECTIONS */
/* ───────────────────────── */

.services,
.process,
.about,
.contact {
  padding: 110px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 20px;

  color: var(--green);

  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-line {
  width: 50px;
  height: 1px;
  background: var(--green);
}

.section-head,
.section-title {
  margin-bottom: 60px;
}

.section-head h2,
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;

  color: var(--navy);

  margin-bottom: 20px;
}

.section-head em,
.section-title em {
  color: var(--green);
  font-style: italic;
}

.section-head p {
  max-width: 680px;

  color: var(--text-light);

  font-size: 16px;
  line-height: 1.9;
}

/* ───────────────────────── */
/* SERVICES */
/* ───────────────────────── */

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

.scard {
  position: relative;

  padding: 42px 34px;

  border-radius: 24px;

  background: var(--white);

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

  box-shadow: var(--shadow-soft);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

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

.scard-featured {
  background:
    linear-gradient(
      180deg,
      var(--green-pale),
      var(--white)
    );
}

.scard-tag {
  position: absolute;
  top: 22px;
  right: 22px;

  background: var(--green);
  color: var(--white);

  border-radius: 999px;

  padding: 6px 12px;

  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scard-num {
  color: rgba(45, 122, 79, 0.2);

  font-family: "Playfair Display", serif;
  font-size: 54px;

  margin-bottom: 18px;
}

.scard-icon {
  width: 72px;
  height: 72px;

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

  border-radius: 18px;

  background: var(--green-pale);

  color: var(--green);

  margin-bottom: 24px;
}

.scard-icon svg {
  width: 42px;
  height: 42px;
}

.scard h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;

  color: var(--navy);

  margin-bottom: 14px;
}

.scard p {
  color: var(--text-light);
  line-height: 1.8;

  margin-bottom: 24px;
}

.scard-list {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scard-list li {
  position: relative;

  padding-left: 22px;

  color: var(--text-mid);
  font-size: 14px;
}

.scard-list li::before {
  content: "•";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--green);
}

/* ───────────────────────── */
/* PROCESS */
/* ───────────────────────── */

.process {
  background:
    linear-gradient(
      135deg,
      var(--navy) 0%,
      #0f2d1e 100%
    );
}

.process .section-title,
.process .section-label {
  color: var(--white);
}

.process .label-line {
  background: rgba(255, 255, 255, 0.4);
}

.process-steps {
  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: start;
}

.pstep {
  text-align: center;
}

.pstep-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pstep-n {
  color: rgba(126, 207, 163, 0.24);

  font-family: "Playfair Display", serif;
  font-size: 48px;

  margin-bottom: 16px;
}

.pstep h4 {
  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: 20px;

  margin-bottom: 10px;
}

.pstep p {
  max-width: 220px;

  color: rgba(255, 255, 255, 0.6);

  font-size: 14px;
  line-height: 1.8;

  margin: 0 auto;
}

.pstep-arrow {
  color: rgba(126, 207, 163, 0.3);

  font-size: 22px;

  padding: 0 12px;
  margin-top: 24px;
}

/* ───────────────────────── */
/* ABOUT */
/* ───────────────────────── */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;

  background: var(--white);

  padding-inline: 48px;
}

.about-img-col {
  position: relative;
}

.about-img-col img {
  width: 100%;
  height: 620px;

  object-fit: cover;

  border-radius: 28px;

  display: block;
}

.about-img-accent {
  position: absolute;
  right: -20px;
  bottom: -20px;

  width: 180px;
  height: 180px;

  border-radius: 28px;

  background: var(--green-pale);

  z-index: -1;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.05;

  margin-bottom: 24px;

  color: var(--navy);
}

.about-content em {
  color: var(--green);
}

.about-content p {
  color: var(--text-light);
  line-height: 1.9;

  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

  margin-top: 32px;
}

.afeat {
  display: flex;
  align-items: center;
  gap: 12px;

  background: var(--off-white);

  border-radius: 12px;

  padding: 14px 16px;
}

.afeat-icon {
  width: 28px;
  height: 28px;

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

  border-radius: 50%;

  background: var(--green);

  color: var(--white);

  font-size: 12px;
}

/* ───────────────────────── */
/* CONTACT */
/* ───────────────────────── */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  background: var(--off-white);

  padding-inline: 48px;
}

.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.05;

  margin-bottom: 22px;
}

.contact-left em {
  color: var(--green);
}

.contact-left p {
  color: var(--text-light);

  line-height: 1.8;

  margin-bottom: 34px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

  padding: 20px;

  background: var(--white);

  border-radius: 18px;

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

  text-decoration: none;

  color: inherit;
}

.cdetail-icon {
  width: 52px;
  height: 52px;

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

  border-radius: 14px;

  background: var(--green-pale);

  color: var(--green);
}

.cdetail-icon svg {
  width: 24px;
  height: 24px;
}

.cdetail-label {
  color: var(--text-light);
  font-size: 12px;
}

.cdetail-value {
  color: var(--navy);
  font-weight: 600;
}

/* FORM */

.contact-form-wrap {
  background: var(--white);

  border-radius: 28px;

  padding: 38px;

  box-shadow: var(--shadow-soft);
}

.form-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;

  color: var(--navy);

  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;

  margin-bottom: 8px;

  color: var(--navy);

  font-size: 13px;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;

  background: var(--off-white);

  border: 1.5px solid var(--border);

  border-radius: 8px;

  padding: 13px 15px;

  color: var(--text);

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;

  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  background: var(--white);

  border-color: var(--green);

  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.12);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--error);

  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  min-height: 18px;

  margin-top: 6px;

  color: var(--error);

  font-size: 12px;
}

.form-footer {
  margin-top: 12px;
}

.form-note {
  color: var(--text-light);

  font-size: 12px;

  margin-bottom: 18px;
}

.btn-submit {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 54px;

  background: var(--green);
  color: var(--white);

  border: none;
  border-radius: 8px;

  cursor: pointer;

  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-submit:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* FIX BTN LOADING FLEX */

#btn-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.spinner {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);

  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-error-global {
  display: none;

  margin-top: 14px;

  color: var(--error);

  font-size: 13px;
}

.form-success {
  text-align: center;

  padding: 30px 20px;
}

.success-icon {
  width: 68px;
  height: 68px;

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

  margin: 0 auto 18px;

  border-radius: 50%;

  background: var(--green);

  color: var(--white);

  font-size: 28px;
}

/* ───────────────────────── */
/* FOOTER */
/* ───────────────────────── */

footer {
  background: var(--navy);
  color: var(--white);

  padding: 80px 48px 30px;
}

.footer-inner {
  max-width: 1200px;

  margin: 0 auto 50px;

  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer-logo-name {
  font-family: "Playfair Display", serif;
  font-size: 34px;

  margin-bottom: 10px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.68);

  margin-bottom: 22px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a,
.footer-contacts span {
  color: rgba(255, 255, 255, 0.72);

  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-head {
  color: var(--white);

  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #7ecfa3;
}

.footer-bottom {
  max-width: 1200px;

  margin: 0 auto;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 13px;
}

/* ───────────────────────── */
/* ANIMATIONS */
/* ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.scard {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.scard:hover {
  transform: translateY(-6px);
}
.hero-orb {
  animation: floatOrb 10s ease-in-out infinite;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-18px);
  }
}
.btn-primary,
.btn-ghost,
.nav-cta {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn-primary:hover,
.btn-ghost:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}
.hero-orb-1 {
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  animation: orbFloat2 16s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%,100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-25px) translateX(15px);
  }
}

@keyframes orbFloat2 {
  0%,100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(20px) translateX(-12px);
  }
  
}


.fade-up {
  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────── */
/* REDUCED MOTION */
/* ───────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ───────────────────────── */
/* RESPONSIVE */
/* ───────────────────────── */

@media (max-width: 1100px) {
  nav,
  .lang-bar-inner,
  .container,
  .about,
  .contact,
  footer {
    padding-left: 36px;
    padding-right: 36px;
  }

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

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-content,
  .hero-visual {
    padding: 70px 50px;
  }

  .hero-float-card {
    position: relative;
    transform: none;

    left: auto;
    bottom: auto;

    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .nav-center,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-bar-text {
    display: none;
  }

  .lang-bar-inner {
    justify-content: flex-end;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pstep-arrow {
    display: none;
  }

  .pstep {
    text-align: left;

    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .pstep-content {
    align-items: flex-start;
  }

  .pstep p {
    max-width: 100%;
    margin: 0;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .form-row,
  .about-features {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-visual {
    padding: 60px 24px;
  }

  .hero-img-wrap img {
    height: 360px;
  }
}

@media (max-width: 600px) {
  nav,
  .lang-bar-inner,
  .container,
  .about,
  .contact,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 48px;
  }

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

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hstat-divider {
    display: none;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .footer-links {
    flex-direction: column;
    gap: 36px;
  }
}

@media (max-width: 380px) {
  .logo-name {
    font-size: 16px;
  }

  .hero-title {
    font-size: 42px;
  }
  /* =========================
   HERO MOBILE FIXES
========================= */

.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 24px 0;
}

.hero-title em {
  color: #7ecfa3;
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary,
.btn-ghost {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  background: var(--green-light);
}

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);

  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

/* FIX PHONE ICON */

.btn-ghost svg {
  width: 22px;
  height: 22px;

  flex-shrink: 0;

  stroke: currentColor;
  stroke-width: 1.8;

  display: block;
}

/* REMOVE HUGE ICON ISSUE */
.btn-ghost::before,
.btn-ghost::after {
  display: none !important;
}

/* MOBILE FIXES */
@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: clamp(54px, 14vw, 74px);
    line-height: 0.95;
    margin: 22px 0;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 100%;
  }

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

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 18px 22px;
  }

  .btn-ghost {
    min-height: 74px;
  }

  .btn-ghost svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 600px) {

  .hero-content {
    padding: 0 18px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 15px;
    border-radius: 12px;
  }
}
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 22px;

  min-height: 58px;

  border-radius: 10px;

  white-space: nowrap;
}

.phone-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.phone-number {
  white-space: nowrap;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 600px) {

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .btn-ghost {
    justify-content: center;
  }

}
.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  width: 100%;
  max-width: 340px;

  padding: 18px 22px;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;

  background: rgba(255,255,255,0.04);

  color: var(--white);
  text-decoration: none;

  font-size: 18px;
  font-weight: 500;

  backdrop-filter: blur(10px);

  transition: 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-ghost svg {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  stroke: currentColor;
}

@media (max-width: 768px) {

  .btn-ghost {
    max-width: 100%;
    justify-content: center;

    padding: 18px;

    font-size: 16px;
    gap: 12px;
  }

  .btn-ghost svg {
    width: 28px;
    height: 28px;
  }

}
