:root {
  --ink: #242424;
  --red: #ad3126;
  --gold: #c5a04a;
  --green: #2b6033;
  --light-gold: #dec58e;
  --light-green: #4fa058;
  --orange: #ff7f00;
  --muted: #636363;
  --line: #e8dcc0;
  --cream: #fbf8ef;
  --soft: #f4ecd9;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(36, 36, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Aptos Display", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: clamp(260px, 28vw, 390px);
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav .active > a {
  color: var(--red);
  background: #f6ecd5;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 4px;
  width: 292px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.2s;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.dropdown-menu a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 6px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.82), rgba(43, 96, 51, 0.5) 48%, rgba(36, 36, 36, 0.12)),
    url("hero-daytime-uae-business.png") center / cover no-repeat;
}

.hero .container {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--light-gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-header h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Aptos Display", Aptos, ui-sans-serif, system-ui, sans-serif;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn.primary:hover {
  background: #8f281f;
}

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

.btn.secondary:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 74, 0.22);
}

.trust-strip {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1.1;
}

.trust-item span {
  color: var(--muted);
  font-weight: 650;
}

section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0 0 14px;
  font-family: "Aptos Display", Aptos, ui-sans-serif, system-ui, sans-serif;
  font-size: 3rem;
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin-top: 0;
}

.section-heading p,
.content-section > .container > p,
.page-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-overview {
  background: var(--cream);
}

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

.service-item,
.package-item,
.contact-details,
.contact-form,
.feature-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(36, 36, 36, 0.04);
}

.service-item {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-item::before {
  content: attr(data-icon);
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  font-size: 0.88rem;
}

.service-item:nth-child(3n + 1)::before {
  background: var(--red);
}

.service-item:nth-child(3n + 2)::before {
  background: var(--gold);
}

.service-item:nth-child(3n)::before {
  background: var(--green);
}

.service-item h3 a {
  text-decoration: none;
}

.service-item h3 a:hover {
  color: var(--red);
}

.service-item p,
.package-item p,
.feature-panel p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.card-link:hover {
  color: var(--green);
  text-decoration: underline;
}

.final-cta .container {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
}

.final-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.why-us {
  background: var(--soft);
}

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

.why-us ul,
.content-section ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-us li,
.content-section li {
  position: relative;
  padding-left: 30px;
}

.why-us li::before,
.content-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px #fff7e6;
}

.feature-panel {
  padding: 30px;
}

.feature-panel .metric {
  display: grid;
  gap: 16px;
}

.metric strong {
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.packages {
  background: var(--cream);
}

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

.package-item {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.package-item .price {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 900;
}

.package-item ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.package-item li {
  position: relative;
  padding-left: 22px;
}

.package-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(43, 96, 51, 0.94), rgba(197, 160, 74, 0.88)),
    url("hero-daytime-uae-business.png") center / cover;
  color: var(--white);
}

.page-header {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.88), rgba(43, 96, 51, 0.78)),
    url("hero-daytime-uae-business.png") center / cover;
}

.page-header h1 {
  font-size: 4.25rem;
}

.page-header p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.content-section {
  background: var(--cream);
}

.content-section > .container {
  max-width: 940px;
}

.content-section h2 {
  margin-top: 34px;
  font-size: 2.1rem;
}

.about-logo {
  max-width: 620px;
  margin: 0 auto 34px;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.privacy-summary div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.consent-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.redirect-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.content-section .btn {
  margin-top: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-details,
.contact-form {
  padding: 30px;
}

.contact-details a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8d0c1;
  border-radius: 6px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(197, 160, 74, 0.22);
  border-color: var(--gold);
}

footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

footer p {
  margin: 0;
}

footer a {
  color: var(--light-gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  nav,
  nav ul {
    width: 100%;
  }

  .logo img {
    width: min(360px, 92vw);
    max-height: 90px;
  }

  nav ul {
    flex-wrap: wrap;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .hero {
    min-height: 610px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .page-header h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .trust-grid,
  .services-grid,
  .package-grid,
  .why-grid,
  .final-cta .container,
  .contact-layout,
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  nav a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .hero .container {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .hero p,
  .page-header p {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  section {
    padding: 58px 0;
  }

  .buttons,
  .btn {
    width: 100%;
  }
}
