@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #061b47;
  --navy-2: #04132f;
  --blue: #092e83;
  --blue-bright: #0e48c5;
  --yellow: #ffd400;
  --white: #fff;
  --off-white: #f5f7fb;
  --charcoal: #161b26;
  --muted: #647085;
  --line: #dfe4ed;
  --shadow: 0 22px 60px rgba(6, 27, 71, .12);
  --radius: 18px;
  --container: 1180px;
  --header-height: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 2000; transform: translateY(-150%);
  padding: 10px 16px; color: var(--navy); background: var(--yellow); font-weight: 800;
}
.skip-link:focus { transform: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
  color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--yellow); }
.on-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--yellow); }
h1, h2, h3, h4 {
  margin: 0 0 .65em; color: var(--navy); font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800; line-height: .98; letter-spacing: -.02em; text-transform: uppercase;
}
h1 { font-size: clamp(3.15rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.25rem); }
h3 { font-size: clamp(1.45rem, 2vw, 1.9rem); line-height: 1.08; }
p { margin: 0 0 1.25em; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.24rem); }
.on-dark, .on-dark h2, .on-dark h3, .on-dark p { color: var(--white); }
.on-dark .lead { color: #c8d2e8; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-sm { padding: 60px 0; }
.section-light { background: var(--off-white); }
.section-dark { position: relative; overflow: hidden; background: var(--navy); }
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(14,72,197,.55), transparent 40%);
}
.section-dark > .container { position: relative; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading > div:first-child { max-width: 760px; }
.section-heading p { max-width: 560px; margin-bottom: 8px; }
.btn {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border: 2px solid transparent; border-radius: 4px;
  font-weight: 800; letter-spacing: .03em; line-height: 1; text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--yellow); }
.btn-primary:hover { background: #ffe34f; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { color: var(--navy); background: var(--white); border-color: var(--white); }
.btn-blue { color: var(--white); background: var(--blue); }
.btn-blue:hover { background: var(--blue-bright); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.site-header {
  position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(4,19,47,.92);
  backdrop-filter: blur(16px); transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { background: rgba(4,19,47,.98); box-shadow: 0 10px 35px rgba(0,0,0,.2); }
.nav-wrap { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 194px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); }
.main-nav a {
  position: relative; color: #e4e9f5; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 2px;
  background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-cta { padding: 11px 16px; color: var(--navy); background: var(--yellow); }
.nav-toggle {
  display: none; width: 46px; height: 44px; border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px; color: var(--white); background: transparent;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: .25s;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; min-height: min(900px, 100svh); display: grid; align-items: end;
  overflow: hidden; padding: calc(var(--header-height) + 100px) 0 105px; background: var(--navy-2);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,19,47,.96) 0%, rgba(4,19,47,.78) 44%, rgba(4,19,47,.17) 78%),
              linear-gradient(0deg, rgba(4,19,47,.8), transparent 45%),
              url("../images/dakeen/dakeen-hero.png") center 40% / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px;
  border: 70px solid rgba(255,212,0,.1); transform: rotate(45deg);
}
.hero-content { position: relative; z-index: 1; max-width: 850px; }
.hero h1 { max-width: 820px; margin-bottom: 24px; color: var(--white); }
.hero h1 span { color: var(--yellow); }
.hero .lead { max-width: 650px; color: #d9e1f0; }
.hero-trust {
  position: absolute; z-index: 2; right: max(20px, calc((100vw - var(--container)) / 2)); bottom: 36px;
  display: flex; align-items: center; gap: 12px; color: var(--white); font-size: .82rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-trust::before { content: ""; width: 46px; height: 3px; background: var(--yellow); }

.page-hero {
  position: relative; overflow: hidden; padding: calc(var(--header-height) + 100px) 0 90px; background: var(--navy);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,19,47,.97), rgba(4,19,47,.65)),
              var(--page-image, url("../images/dakeen/dakeen-fleet.png")) center / cover;
}
.page-hero::after {
  content: ""; position: absolute; right: 8%; bottom: -150px; width: 320px; height: 320px;
  border: 60px solid rgba(255,212,0,.12); transform: rotate(45deg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-bottom: 18px; color: var(--white); }
.page-hero .lead { color: #d5deef; }
.breadcrumbs { display: flex; gap: 9px; margin-top: 28px; color: #b9c6df; font-size: .86rem; font-weight: 600; }
.breadcrumbs a { color: var(--yellow); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-card, .benefit-card, .plan-card, .value-card {
  position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: 0 10px 35px rgba(6,27,71,.05); transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover, .benefit-card:hover, .plan-card:hover, .value-card:hover {
  transform: translateY(-7px); border-color: rgba(9,46,131,.25); box-shadow: var(--shadow);
}
.card-icon {
  display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 26px;
  border-radius: 50%; color: var(--navy); background: var(--yellow); font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem; font-weight: 800;
}
.service-card p, .benefit-card p, .value-card p { color: var(--muted); }
.card-link { color: var(--blue); font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.card-link::after { content: " →"; }
.media-split { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.media-split.reverse { grid-template-columns: .96fr 1.04fr; }
.media-split.reverse .media-frame { order: 2; }
.media-frame {
  position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.media-frame::after {
  content: ""; position: absolute; right: 0; bottom: 0; width: 84px; height: 84px; background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.check-list, .plain-list { margin: 25px 0 0; padding: 0; list-style: none; }
.check-list { display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 31px; color: #3d4758; font-weight: 600; }
.check-list li::before {
  content: "✓"; position: absolute; top: 2px; left: 0; display: grid; width: 21px; height: 21px;
  place-items: center; border-radius: 50%; color: var(--navy); background: var(--yellow); font-size: .72rem; font-weight: 900;
}
.on-dark .check-list li { color: #e0e7f3; }
.fleet-card {
  position: relative; min-height: 320px; display: flex; align-items: end; overflow: hidden;
  padding: 28px; border-radius: var(--radius); background: var(--navy);
}
.fleet-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,19,47,.94), rgba(4,19,47,.1) 75%); }
.fleet-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card div { position: relative; z-index: 1; }
.fleet-card h3 { margin: 0; color: var(--white); }
.fleet-card span { color: var(--yellow); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.band {
  padding: 32px 0; color: var(--navy); background: var(--yellow);
}
.band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.band h2 { max-width: 820px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.band .btn { flex: 0 0 auto; color: var(--white); background: var(--navy); }
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.stat { padding: 35px; border-right: 1px solid rgba(255,255,255,.16); }
.stat:last-child { border: 0; }
.stat strong { display: block; margin-bottom: 8px; color: var(--yellow); font-family: "Barlow Condensed"; font-size: 2rem; line-height: 1; text-transform: uppercase; }
.stat span { color: #cbd5e7; font-size: .9rem; }
.process { counter-reset: step; }
.process-step { position: relative; padding: 35px 30px 30px; border-top: 4px solid var(--blue); background: var(--white); }
.process-step::before {
  counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 25px;
  color: var(--yellow); font-family: "Barlow Condensed"; font-size: 2.2rem; font-weight: 800;
  -webkit-text-stroke: 1px var(--navy);
}
.quote-card {
  padding: 38px; border-left: 5px solid var(--yellow); border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white); box-shadow: var(--shadow);
}
.quote-card p { color: var(--navy); font-family: "Barlow Condensed"; font-size: 1.7rem; font-weight: 700; line-height: 1.2; }
.quote-card span { color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.plan-card { display: flex; flex-direction: column; }
.plan-card.featured { border: 3px solid var(--yellow); }
.plan-card .plan-label { color: var(--blue); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.plan-card .btn { margin-top: auto; }
.plan-card .check-list { margin-bottom: 28px; }

.faq-list { max-width: 900px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 25px 0; border: 0; color: var(--navy); background: transparent; text-align: left;
  font-family: "Barlow Condensed"; font-size: 1.45rem; font-weight: 700; text-transform: uppercase;
}
.faq-question::after { content: "+"; color: var(--blue); font-family: Inter; font-size: 1.8rem; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer p { max-width: 760px; padding: 0 0 24px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.contact-note { padding: 28px; border-radius: var(--radius); color: var(--white); background: var(--navy); }
.contact-note h3 { color: var(--white); }
.contact-note a { color: var(--yellow); font-weight: 700; word-break: break-word; }
.contact-note p:last-child { margin: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-size: .85rem; font-weight: 700; }
input, select, textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cbd2df;
  border-radius: 5px; color: var(--charcoal); background: var(--white);
}
textarea { min-height: 145px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(9,46,131,.14); border-color: var(--blue); }
.field-error { color: #b42318; font-size: .78rem; }
.form-status { margin: 18px 0 0; padding: 12px 15px; border-radius: 5px; background: #eaf8ef; color: #176b35; font-weight: 600; }
.legal { max-width: 850px; }
.legal h2 { margin-top: 1.2em; font-size: 2rem; }
.legal h3 { margin-top: 1.5em; font-size: 1.4rem; }
.legal p, .legal li { color: #4d586a; }
.legal a { color: var(--blue); text-decoration: underline; }
.error-page {
  min-height: 100svh; display: grid; place-items: center; padding: 120px 0 60px; text-align: center;
  color: var(--white); background: radial-gradient(circle at 50% 30%, var(--blue), var(--navy-2) 60%);
}
.error-code { margin: 0; color: var(--yellow); font-family: "Barlow Condensed"; font-size: clamp(8rem, 24vw, 18rem); font-weight: 800; line-height: .7; }
.error-page h1 { margin-top: 35px; color: var(--white); font-size: clamp(2.5rem, 6vw, 5rem); }
.error-page p { max-width: 590px; margin-inline: auto; color: #cbd5e7; }

.site-footer { color: #c0cadc; background: var(--navy-2); }
.footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 55px; padding: 76px 0 55px; }
.footer-brand img { width: 220px; margin-bottom: 24px; }
.footer-brand p { max-width: 350px; }
.site-footer h3 { margin-bottom: 22px; color: var(--white); font-size: 1.2rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .83rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
.back-top {
  position: fixed; z-index: 900; right: 24px; bottom: 24px; width: 46px; height: 46px;
  display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: var(--yellow);
  box-shadow: 0 9px 30px rgba(0,0,0,.18); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .2s;
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: none; }

.whatsapp-float {
  position: fixed; z-index: 950; right: 22px; bottom: 84px;
  display: flex; align-items: center; gap: 10px; color: var(--white);
  font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}
.whatsapp-label {
  padding: 10px 14px; border-radius: 999px; background: var(--navy-2);
  opacity: 0; transform: translateX(12px); transition: opacity .2s, transform .2s;
}
.whatsapp-icon {
  position: relative; display: grid; width: 58px; height: 58px; flex: 0 0 58px;
  place-items: center; border: 3px solid var(--white); border-radius: 50%; background: #25d366;
  animation: whatsapp-attention 3.2s ease-in-out infinite;
}
.whatsapp-icon::before,
.whatsapp-icon::after {
  content: ""; position: absolute; inset: -5px; border: 2px solid rgba(37,211,102,.7);
  border-radius: inherit; opacity: 0; animation: whatsapp-ring 3.2s ease-out infinite;
}
.whatsapp-icon::after { animation-delay: .55s; }
.whatsapp-icon svg { width: 31px; height: 31px; fill: currentColor; }
.whatsapp-float:hover .whatsapp-label,
.whatsapp-float:focus-visible .whatsapp-label { opacity: 1; transform: none; }
.whatsapp-float:hover .whatsapp-icon { background: #1fb85a; animation-play-state: paused; }

@keyframes whatsapp-attention {
  0%, 72%, 100% { transform: translateY(0) scale(1); }
  78% { transform: translateY(-7px) scale(1.04); }
  84% { transform: translateY(0) scale(1); }
  90% { transform: translateY(-3px) scale(1.02); }
}
@keyframes whatsapp-ring {
  0%, 70% { opacity: 0; transform: scale(.82); }
  76% { opacity: .8; }
  96%, 100% { opacity: 0; transform: scale(1.45); }
}

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .site-header {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #04132f;
  }
  body.menu-open::before {
    content: ""; position: fixed; inset: 0; z-index: 998;
    background: rgba(4, 19, 47, .78);
  }
  .main-nav {
    position: absolute; z-index: 999; top: 100%; right: 0;
    width: min(360px, 100vw); height: calc(100dvh - var(--header-height));
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0; padding: 20px 24px 40px; overflow-y: auto;
    background: #04132f; border-top: 1px solid rgba(255,255,255,.08);
    border-left: 1px solid rgba(255,255,255,.1);
    box-shadow: -24px 20px 50px rgba(0,0,0,.5);
    transform: translateX(105%); transition: transform .28s; pointer-events: none;
  }
  .main-nav.open { transform: none; pointer-events: auto; }
  .main-nav a {
    padding: 16px 8px; border-bottom: 1px solid rgba(255,255,255,.12);
    color: #f2f5fb; font-size: .98rem; background: transparent;
  }
  .main-nav a:hover,
  .main-nav a[aria-current="page"] { color: var(--yellow); }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav .nav-cta {
    margin-top: 24px; border: 0; text-align: center; color: var(--navy);
    background: var(--yellow);
  }
  .main-nav .nav-cta:hover,
  .main-nav .nav-cta[aria-current="page"] { color: var(--navy); background: #ffe34f; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 2fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 170px; }
  .hero { min-height: 760px; padding-bottom: 90px; }
  .hero::before { background: linear-gradient(0deg, rgba(4,19,47,.98) 8%, rgba(4,19,47,.7) 80%), url("../images/dakeen/dakeen-hero.png") 62% center / cover; }
  .hero-trust { right: 14px; bottom: 24px; }
  .page-hero { padding-top: calc(var(--header-height) + 75px); }
  .section-heading { display: block; }
  .grid-2, .grid-3, .grid-4, .media-split, .media-split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .media-split.reverse .media-frame { order: 0; }
  .media-frame { min-height: 350px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .band .container { display: block; }
  .band .btn { margin-top: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand, .footer-main > :last-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-legal { margin-top: 12px; }
}
@media (max-width: 480px) {
  .section { padding: 68px 0; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .service-card, .benefit-card, .plan-card, .value-card { padding: 28px 24px; }
  .button-row .btn { width: 100%; }
  .hero-trust { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-main > :last-child { grid-column: auto; }
  .whatsapp-float { right: 16px; bottom: 76px; }
  .whatsapp-icon { width: 54px; height: 54px; flex-basis: 54px; }
  .whatsapp-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .whatsapp-icon, .whatsapp-icon::before, .whatsapp-icon::after { animation: none; }
}
