﻿:root {
  --navy: #07111f;
  --navy-2: #0b1b30;
  --navy-3: #10243d;
  --gold: #c9a45c;
  --gold-2: #e1c982;
  --cream: #f8f3e8;
  --muted: #aeb8c6;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.top-banner {
  background: linear-gradient(90deg, #9d7532, #d7b76d, #9d7532);
  color: #08111f;
  font-size: 14px;
  font-weight: 600;
}

.banner-inner {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.banner-inner a {
  background: #08111f;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-cta {
  background: var(--gold);
  color: #07111f !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.82) 46%, rgba(7, 17, 31, 0.35) 100%),
    url("/assets/dubai-golden-visa-hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(201, 164, 92, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.05), var(--navy));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
  padding: 110px 0;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.12;
  font-weight: 700;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  letter-spacing: -0.04em;
  max-width: 850px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  max-width: 760px;
  margin-top: 24px;
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #07111f;
  box-shadow: 0 16px 36px rgba(201, 164, 92, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(201, 164, 92, 0.30);
}

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

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-card {
  background: rgba(11, 27, 48, 0.78);
  border: 1px solid rgba(201, 164, 92, 0.28);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.card-label {
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-card h2 {
  margin-top: 10px;
  font-size: 30px;
}

.hero-card ul {
  margin: 20px 0 24px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-card li {
  margin-bottom: 10px;
}

.hero-card a {
  color: var(--gold-2);
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.intro {
  background: var(--navy);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.03em;
}

.two-col p,
.section-heading p,
.info-card p,
.service-card p,
.route-card p,
.step-card p,
.faq p,
.enquiry p,
.footer-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.note {
  margin-top: 18px;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.audience,
.services,
.process,
.faq {
  background: var(--navy-2);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.step-card,
.route-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.info-card h3,
.service-card h3,
.step-card h3,
.route-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.routes {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 164, 92, 0.11), transparent 32%),
    var(--navy);
}

.route-card {
  min-height: 360px;
}

.route-card span,
.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.16);
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 18px;
}

.route-card ul,
.check-list {
  margin-top: 18px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.route-card li,
.check-list li {
  margin-bottom: 9px;
}

.image-break {
  background: var(--cream);
  color: #07111f;
  padding: 86px 0;
}

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

.image-panel {
  min-height: 440px;
  border-radius: 28px;
  background: url("/assets/dubai-marina-residency.jpg") center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.2);
}

.image-copy {
  background: #ffffff;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.12);
}

.image-copy h2 {
  color: #07111f;
  margin-bottom: 18px;
}

.image-copy p {
  color: #3e4a5a;
  margin-bottom: 28px;
}

.image-copy .eyebrow {
  color: #9d7532;
}

.tax {
  background:
    linear-gradient(rgba(7, 17, 31, 0.82), rgba(7, 17, 31, 0.92)),
    url("/assets/dubai-business-skyline.jpg") center/cover no-repeat;
}

.dark-panel {
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(201, 164, 92, 0.24);
  border-radius: 30px;
  padding: 52px;
  backdrop-filter: blur(12px);
}

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

details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}

details p {
  margin-top: 12px;
}

.enquiry {
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 164, 92, 0.14), transparent 34%),
    var(--navy);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: start;
}

.enquiry-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  margin-bottom: 18px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 14px;
  background: rgba(7, 17, 31, 0.78);
  color: var(--white);
  font: inherit;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  margin-top: 14px;
}

.site-footer {
  background: #050b14;
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 40px;
}

.footer-grid img {
  height: 58px;
  margin-bottom: 18px;
}

.footer-grid h3 {
  color: var(--gold-2);
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.legal {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 22px;
}

.legal p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 980px) {
  .banner-inner,
  .nav,
  .hero-grid,
  .two-col,
  .image-grid,
  .enquiry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .banner-inner,
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 86px 0;
  }

  .grid.four,
  .grid.three,
  .route-list {
    grid-template-columns: 1fr 1fr;
  }

  .two-col,
  .enquiry-grid {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .top-banner {
    font-size: 13px;
  }

  .banner-inner a {
    width: 100%;
    text-align: center;
  }

  .brand img {
    height: 46px;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .contact-options {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .image-copy,
  .dark-panel,
  .enquiry-form {
    padding: 24px;
  }

  .grid.four,
  .grid.three,
  .route-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .image-panel {
    min-height: 300px;
  }

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

/* --- Visual refinement: larger logo, cleaner hero, stronger SEO landing feel --- */

.brand img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.footer-grid img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

.nav {
  min-height: 96px;
}

.hero {
  min-height: 700px;
}

h1 {
  max-width: 780px;
  font-size: clamp(40px, 5.2vw, 66px);
}

.hero-subtitle {
  max-width: 680px;
  font-size: 18px;
}

.hero-proof {
  max-width: 760px;
}

.hero-card {
  padding: 30px;
}

.hero-card h2 {
  font-size: 26px;
}

.section {
  padding: 78px 0;
}

.section-heading {
  max-width: 720px;
}

.info-card,
.service-card,
.step-card,
.route-card {
  padding: 24px;
}

.route-card {
  min-height: auto;
}

.route-card ul,
.check-list {
  margin-top: 14px;
}

.route-card li,
.check-list li {
  margin-bottom: 7px;
}

@media (max-width: 640px) {
  .brand img,
  .footer-grid img {
    height: 62px;
  }

  .nav {
    min-height: auto;
  }

  h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}

/* --- Premium logo and visual polish update --- */

.brand {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.brand img {
  height: 112px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.footer-grid img {
  height: 100px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.nav {
  min-height: 116px;
}

.hero-subtitle {
  max-width: 640px;
}

.hero-card ul {
  margin-bottom: 18px;
}

.info-card p,
.service-card p,
.route-card p,
.step-card p {
  font-size: 15px;
}

@media (max-width: 640px) {
  .brand img,
  .footer-grid img {
    height: 74px;
    max-width: 220px;
  }

  .nav {
    min-height: auto;
  }
}

/* --- Video section --- */

.video-section {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
}

.video-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.video-copy p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 16px;
  max-width: 520px;
}

.video-copy .btn {
  margin-top: 28px;
}

.video-frame {
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #050b14;
}

@media (max-width: 980px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile header correction: banner below nav, compact logo, aligned menu --- */

@media (max-width: 640px) {
  .site-header {
    position: relative;
    top: auto;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 0 18px;
    min-height: auto;
  }

  .brand {
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .brand img {
    height: 58px;
    max-width: 180px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    overflow: visible;
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .nav-links a {
    font-size: 13px;
    line-height: 1.25;
    padding: 8px 4px;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
  }

  .top-banner {
    order: 2;
  }

  .banner-inner {
    padding: 16px 0;
    gap: 12px;
    text-align: left;
  }

  .banner-inner p {
    font-size: 14px;
    line-height: 1.45;
  }

  .banner-inner a {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
  }

  .hero-grid {
    padding-top: 72px;
  }
}

/* --- Mobile video CTA correction --- */

.video-mobile-cta {
  display: none;
}

@media (max-width: 640px) {
  .video-copy .btn {
    display: none;
  }

  .video-mobile-cta {
    display: block;
    margin-top: 22px;
  }

  .video-mobile-cta .btn {
    width: 100%;
    font-size: 16px;
    padding: 15px 20px;
  }

  .video-section {
    padding-bottom: 76px;
  }
}

/* --- Forced mobile video CTA and header alignment fix --- */

.video-mobile-cta {
  display: none;
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    top: auto;
  }

  .nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    min-height: auto !important;
    padding: 18px 0 20px !important;
  }

  .brand {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
  }

  .brand img {
    height: 54px !important;
    max-width: 170px !important;
    object-fit: contain !important;
  }

  .nav-links {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    align-items: center !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .nav-links a {
    font-size: 13px !important;
    line-height: 1.25 !important;
    padding: 8px 2px !important;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin-top: 6px !important;
    border-radius: 999px !important;
    padding: 13px 18px !important;
    font-size: 15px !important;
  }

  .top-banner {
    margin-top: 0 !important;
  }

  .banner-inner {
    padding: 16px 0 !important;
    text-align: left !important;
  }

  .video-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .video-copy {
    order: 1 !important;
  }

  .video-frame {
    order: 2 !important;
  }

  .video-copy .video-desktop-cta,
  .video-copy .btn {
    display: none !important;
  }

  .video-mobile-cta {
    order: 3 !important;
    display: block !important;
    width: 100% !important;
    margin-top: 22px !important;
  }

  .video-mobile-cta .btn {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
  }
}

/* --- Simplify mobile nav after removing Routes section --- */

@media (max-width: 640px) {
  .nav-links {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1 !important;
  }
}

/* --- Structured language selector: English / Arabic --- */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.language-switcher label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.language-switcher select {
  background: transparent;
  color: #ffffff;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher select option {
  color: #07111f;
  background: #ffffff;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .nav,
html[dir="rtl"] .banner-inner,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .contact-options,
html[dir="rtl"] .hero-proof {
  direction: rtl;
}

html[dir="rtl"] .hero-bg {
  transform: scale(1.02);
}

html[dir="rtl"] .note {
  border-left: none;
  border-right: 3px solid var(--gold);
}

html[dir="rtl"] .route-card ul,
html[dir="rtl"] .check-list,
html[dir="rtl"] .hero-card ul {
  padding-left: 0;
  padding-right: 20px;
}

@media (max-width: 980px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .language-switcher {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    justify-content: center;
  }

  .language-switcher label {
    font-size: 13px;
  }

  .language-switcher select {
    font-size: 14px;
  }

  html[dir="rtl"] .nav-links {
    direction: rtl;
  }
}

/* --- Multilingual selector and RTL support --- */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px 12px;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.language-switcher label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.language-switcher select {
  background: transparent;
  color: #ffffff;
  border: none;
  outline: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher select option {
  color: #07111f;
  background: #ffffff;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .note {
  border-left: none;
  border-right: 3px solid var(--gold);
}

html[dir="rtl"] .hero-card ul,
html[dir="rtl"] .check-list {
  padding-left: 0;
  padding-right: 20px;
}

@media (max-width: 980px) {
  .language-switcher {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .language-switcher {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    justify-content: center;
  }

  .language-switcher label {
    font-size: 13px;
  }

  .language-switcher select {
    font-size: 14px;
  }
}

/* Golden Visa top-video and mobile UX refinements */
.video-section {
  scroll-margin-top: 96px;
}

.video-frame video {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .top-banner {
    position: relative;
    z-index: 30;
  }

  .banner-inner {
    gap: 0.65rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
  }

  .nav {
    align-items: center;
    gap: 0.75rem;
  }

  .brand img {
    max-height: 42px;
    width: auto;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .language-switcher label {
    font-size: 0.85rem;
  }

  .language-switcher select {
    max-width: 190px;
    font-size: 0.9rem;
  }

  .video-section {
    padding: 1.25rem 0 1.75rem;
  }

  .video-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .video-copy {
    order: 1;
  }

  .video-frame {
    order: 2;
    width: 100%;
  }

  .video-frame video {
    width: 100%;
    max-height: 55vh;
    object-fit: cover;
    border-radius: 18px;
  }

  .video-mobile-cta {
    order: 3;
    display: block;
  }

  .video-desktop-cta {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn,
  .contact-options .btn,
  .form-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .rtl .language-switcher {
    direction: rtl;
  }
}
/* End Golden Visa top-video and mobile UX refinements */

/* Golden Visa mobile header premium fix */
@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #071321 !important;
    border-bottom: 1px solid rgba(213, 177, 96, 0.22);
    backdrop-filter: none;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem 1rem 1.15rem;
  }

  .brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand img {
    max-height: 58px;
    width: auto;
    opacity: 1;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0.6rem;
  }

  .nav-links a {
    color: #ffffff !important;
    font-size: 0.92rem;
    line-height: 1.2;
    text-align: center;
    opacity: 0.96;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.35rem;
    background: linear-gradient(135deg, #d8b35d, #f1d47c);
    color: #071321 !important;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.95rem 1rem;
    text-align: center;
  }

  .language-switcher {
    width: calc(100% - 2rem);
    margin: 0.9rem auto 0;
    padding: 0.85rem 1rem;
    background: #071321;
    border: 1px solid rgba(216, 179, 93, 0.55);
    border-radius: 999px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .language-switcher label {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .language-switcher select {
    color: #ffffff !important;
    background: #071321;
    border: 0;
    font-weight: 700;
    text-align: right;
    max-width: 175px;
  }

  .language-switcher select option {
    color: #071321;
    background: #ffffff;
  }

  .video-section {
    padding-top: 1.2rem;
  }
}
/* End Golden Visa mobile header premium fix */


/* Golden Visa section order update */
.enquiry-top {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-video-card h2 {
  margin-bottom: 0;
}

.hero-video-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: auto;
}

/* Golden Visa intelligent conversion layer */
.enquiry-bottom {
  background:
    radial-gradient(circle at top left, rgba(46, 196, 255, 0.12), transparent 32rem),
    linear-gradient(135deg, #071321 0%, #0b1f33 100%);
}

.conversion-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.conversion-proof article {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.conversion-proof strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #4fd3ff;
  font-size: 1.1rem;
}

.conversion-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.smart-route-note {
  margin-top: -0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: rgba(79, 211, 255, 0.09);
  border: 1px solid rgba(79, 211, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.smart-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 60;
  width: min(920px, calc(100% - 2rem));
  transform: translate(-50%, 140%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(7, 19, 33, 0.96);
  border: 1px solid rgba(79, 211, 255, 0.28);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.32);
  transition: transform 0.25s ease;
}

.smart-sticky-cta.is-visible {
  transform: translate(-50%, 0);
}

.smart-sticky-cta strong,
.smart-sticky-cta span {
  display: block;
}

.smart-sticky-cta span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.exit-intent-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(3, 10, 18, 0.72);
  backdrop-filter: blur(6px);
}

.exit-intent-modal.is-visible {
  display: flex;
}

.exit-intent-card {
  position: relative;
  width: min(560px, 100%);
  padding: 2rem;
  border-radius: 1.25rem;
  background: #071321;
  border: 1px solid rgba(79, 211, 255, 0.28);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.42);
}

.exit-intent-card h2 {
  margin: 0.35rem 0 0.75rem;
}

.exit-intent-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
}

@media (max-width: 760px) {
  .conversion-proof {
    grid-template-columns: 1fr;
  }

  .smart-sticky-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .smart-sticky-cta .btn {
    width: 100%;
    text-align: center;
  }

  .exit-intent-modal {
    display: none !important;
  }
}

/* Golden Visa mobile-first UX polish start */

/* General bottom conversion polish */
.enquiry-bottom {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.enquiry-bottom .enquiry-grid {
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.enquiry-bottom .eyebrow {
  margin-bottom: 0.75rem;
  letter-spacing: 0.12em;
}

.enquiry-bottom h2 {
  max-width: 11ch;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.enquiry-bottom p {
  max-width: 42rem;
}

.enquiry-bottom .contact-options {
  margin-top: 1.4rem;
}

/* Proof cards */
.conversion-proof {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.conversion-proof article {
  min-height: 8.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.conversion-proof strong {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(79, 211, 255, 0.12);
}

.conversion-proof span {
  line-height: 1.45;
}

/* Form polish */
.enquiry-bottom .enquiry-form {
  position: relative;
  border-radius: 1.5rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.enquiry-bottom .enquiry-form label {
  gap: 0.5rem;
}

.enquiry-bottom .enquiry-form input,
.enquiry-bottom .enquiry-form select,
.enquiry-bottom .enquiry-form textarea {
  min-height: 3.1rem;
  border-radius: 0.85rem;
}

.enquiry-bottom .enquiry-form textarea {
  min-height: 7rem;
}

.smart-route-note {
  line-height: 1.45;
}

.enquiry-bottom .form-btn {
  min-height: 3.35rem;
  border-radius: 999px;
  font-weight: 800;
}

/* Sticky CTA polish */
.smart-sticky-cta {
  backdrop-filter: blur(12px);
}

.smart-sticky-cta .btn {
  white-space: nowrap;
}

/* Desktop refinement */
@media (min-width: 900px) {
  .enquiry-bottom .enquiry-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.8fr);
  }

  .enquiry-bottom .contact-options {
    max-width: 32rem;
  }

  .enquiry-bottom .contact-options .btn {
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 899px) {
  .enquiry-bottom h2 {
    max-width: 14ch;
  }

  .enquiry-bottom .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .conversion-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-sticky-cta {
    width: min(720px, calc(100% - 1.5rem));
  }
}

/* Mobile-first conversion improvements */
@media (max-width: 760px) {
  .enquiry-bottom {
    padding-top: 2.5rem;
    padding-bottom: 7.25rem;
  }

  .enquiry-bottom .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .enquiry-bottom h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 3.1rem);
    line-height: 0.96;
  }

  .enquiry-bottom p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .conversion-proof {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1.2rem;
    margin-bottom: 1.4rem;
  }

  .conversion-proof article {
    min-height: auto;
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem;
  }

  .conversion-proof strong {
    margin: 0;
  }

  .conversion-proof span {
    font-size: 0.94rem;
  }

  .enquiry-bottom .contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .enquiry-bottom .contact-options .btn {
    width: 100%;
    min-height: 3.1rem;
    justify-content: center;
    text-align: center;
  }

  .enquiry-bottom .enquiry-form {
    border-radius: 1.25rem;
    padding: 1rem;
  }

  .enquiry-bottom .enquiry-form label {
    font-size: 0.88rem;
  }

  .enquiry-bottom .enquiry-form input,
  .enquiry-bottom .enquiry-form select,
  .enquiry-bottom .enquiry-form textarea {
    width: 100%;
    font-size: 1rem;
    min-height: 3.25rem;
  }

  .enquiry-bottom .enquiry-form textarea {
    min-height: 7.5rem;
  }

  .smart-route-note {
    padding: 0.85rem;
    font-size: 0.9rem;
  }

  .enquiry-bottom .form-note {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .smart-sticky-cta {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    transform: translateY(140%);
    padding: 0.8rem;
    border-radius: 1rem;
    gap: 0.65rem;
  }

  .smart-sticky-cta.is-visible {
    transform: translateY(0);
  }

  .smart-sticky-cta strong {
    font-size: 0.92rem;
  }

  .smart-sticky-cta span {
    font-size: 0.82rem;
  }

  .smart-sticky-cta .btn {
    min-height: 2.8rem;
    padding: 0.75rem 1rem;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .enquiry-bottom .container {
    width: min(100% - 1rem, 1120px);
  }

  .enquiry-bottom h2 {
    font-size: clamp(1.85rem, 11vw, 2.7rem);
  }

  .enquiry-bottom .enquiry-form {
    padding: 0.85rem;
  }

  .smart-sticky-cta {
    bottom: 0.55rem;
    left: 0.55rem;
    right: 0.55rem;
  }
}

/* Golden Visa mobile-first UX polish end */

/* Golden Visa premium logo presence start */

/* Make the logo feel more premium without disturbing tracking, forms or page logic */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  backdrop-filter: blur(14px);
}

.site-header .nav {
  min-height: 6.25rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  align-items: center;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: clamp(13rem, 22vw, 20rem);
  text-decoration: none;
}

.site-header .brand img {
  display: block;
  width: clamp(13rem, 18vw, 19rem);
  max-width: 100%;
  height: auto;
  max-height: 5.25rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.65rem 1.35rem rgba(0, 0, 0, 0.22));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-header .brand:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 0.85rem 1.65rem rgba(0, 0, 0, 0.28));
}

/* Keep the header balanced when the logo becomes larger */
.site-header .nav-links {
  align-items: center;
}

/* Desktop premium treatment */
@media (min-width: 1024px) {
  .site-header .nav {
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  .site-header .brand {
    flex: 0 0 auto;
  }
}

/* Tablet */
@media (max-width: 1023px) {
  .site-header .nav {
    min-height: 5.75rem;
  }

  .site-header .brand {
    min-width: clamp(11rem, 32vw, 16rem);
  }

  .site-header .brand img {
    width: clamp(11rem, 30vw, 16rem);
    max-height: 4.75rem;
  }
}

/* Mobile optimisation */
@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .site-header .nav {
    min-height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    gap: 0.75rem;
  }

  .site-header .brand {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .site-header .brand img {
    width: min(78vw, 17rem);
    max-height: 4.5rem;
    object-position: center;
  }

  .site-header .nav-links {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .site-header .brand img {
    width: min(82vw, 15.5rem);
    max-height: 4.1rem;
  }
}

/* Golden Visa premium logo presence end */

