/* FindStorage.ae — main stylesheet */

:root {
  --navy: #02103C;
  --navy-light: #041646;
  --blue: #0242B5;
  --blue-hover: #0353E0;
  --blue-soft: #4d84f5;
  --steel: #8BA2D8;
  --border: rgba(255, 255, 255, 0.1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

select option { background: var(--navy-light); color: #fff; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.noise-overlay {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 600; border: 0; border-radius: 4px;
  transition: background-color .3s ease, transform .3s ease;
}
.btn .icon { width: 20px; height: 20px; transition: transform .3s ease; }
.btn:hover .icon { transform: translateX(4px); }
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 32px rgba(2, 66, 181, 0.45);
}
.btn-primary:hover { background: var(--blue-hover); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-sm .icon { width: 16px; height: 16px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; padding: 16px 24px; font-size: 15px; }
.btn[disabled] { opacity: .6; cursor: wait; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background-color: #fff;
  border-bottom: 1px solid transparent;
  transition: background-color .5s ease, border-color .5s ease;
  padding: 0 0 20px;
}
.site-header.scrolled { background-color: #fff; border-bottom-color: var(--border); padding: 0 0 20px;}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 30px; }

.logo { display: inline-flex; align-items: center; gap: 10px; max-width: 200px}
@media (max-width: 1024px) {
    .logo {
        max-width: 150px;
    }
}
.logo-mark {
  width: 36px; height: 36px; background: var(--blue); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .3s ease;
}
.logo:hover .logo-mark { background: var(--blue-hover); }
.logo-mark svg { width: 20px; height: 20px; color: #fff; }
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.logo-dim { color: var(--steel); }

.main-nav { display: none; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--navy); transition: color .3s ease; }
.main-nav a:hover { color: #000; }
@media (min-width: 1024px) { .main-nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: 4px; color: #0242B5;
}
.menu-toggle svg { width: 20px; height: 20px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-close { display: block; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none; flex-direction: column; gap: 16px;
  padding: 24px; background: rgba(2, 16, 60, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 16px; font-weight: 500; color: var(--steel); transition: color .3s ease; }
.mobile-nav a:hover { color: #fff; }
.mobile-nav .mobile-cta { margin-top: 8px; color: #fff; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 128px 0 96px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 120%; object-fit: cover;
  -webkit-mask-image: radial-gradient(95% 95% at 66% 42%, black 25%, transparent 78%);
  mask-image: radial-gradient(95% 95% at 66% 42%, black 25%, transparent 78%);
  will-change: transform;
}
.hero-fade-x { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, rgba(2,16,60,.7) 50%, rgba(2,16,60,.15) 100%); }
.hero-fade-y { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy) 0%, transparent 40%, rgba(2,16,60,.7) 100%); }

.hero-grid {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 32px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 8px 16px; border-radius: 4px; margin-bottom: 32px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--steel);
}
.icon-xs { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.mask-line { display: block; overflow: hidden; padding-bottom: 4px; }
.mask-inner {
  display: block; transform: translateY(110%);
  animation: mask-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes mask-up { to { transform: translateY(0); } }
.gradient-text {
  background: linear-gradient(to right, var(--blue-soft), var(--blue-hover));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  margin-top: 28px; font-size: 16px; font-weight: 300; color: var(--steel);
  max-width: 36rem; line-height: 1.7;
}
@media (min-width: 640px) { .hero-sub { font-size: 18px; } }

.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero-trust { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--steel); }
.trust-dots { display: flex; }
.trust-dots i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 2px var(--navy); margin-left: -4px;
}
.trust-dots i:first-child { margin-left: 0; }

/* on-load fade reveals */
.reveal-now {
  opacity: 0; transform: translateY(20px);
  animation: rise .9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* scroll reveals */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .9s cubic-bezier(0.16, 1, 0.3, 1), transform .9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Form card ---------- */
.form-card {
  position: relative;
  background: rgba(4, 22, 70, 0.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 28px; box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
@media (min-width: 640px) { .form-card { padding: 36px; } }
.form-card::before {
  content: ''; position: absolute; top: -1px; left: 32px; right: 32px; height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-hover), transparent);
}
.form-title { font-family: var(--font-head); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.form-sub { margin-top: 8px; font-size: 14px; font-weight: 300; color: var(--steel); }

#fs-inquiry-form { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; color: var(--steel); margin-bottom: 8px;
}
.form-field input,
.form-field select {
  width: 100%; appearance: none; -webkit-appearance: none;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 4px;
  padding: 12px 16px; font-size: 14px; color: #fff; font-family: inherit;
  outline: none; transition: border-color .3s ease, background-color .3s ease;
}
.form-field input::placeholder { color: #fff; }
.form-field input:focus,
.form-field select:focus { border-color: var(--blue); background: rgba(255,255,255,.07); }
.form-field select:invalid { color: #fff; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; }
.chevron {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%   );
  width: 16px; height: 16px; color: var(--steel); pointer-events: none;
}

.phone-wrap { position: relative; }
.phone-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 14px; font-weight: 600; color: var(--steel);
  border-right: 1px solid var(--border); padding-right: 12px;
}
.phone-wrap input { padding-left: 72px; }

.form-note { text-align: center; font-size: 12px; color: rgba(139, 162, 216, 0.7); }
.form-error { font-size: 13px; color: #ff6b60; text-align: center; display: none; }
.form-error.show { display: block; }

/* toast */
.fs-toast {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-16px);
  background: var(--navy-light); border: 1px solid var(--blue); color: #fff;
  padding: 14px 24px; border-radius: 4px; font-size: 14px; z-index: 200;
  opacity: 0; transition: opacity .4s ease, transform .4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,.5); pointer-events: none;
}
.fs-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; overflow: hidden; background: rgba(4, 22, 70, 0.4); }
.marquee-track { display: flex; width: max-content; animation: marquee-x 45s linear infinite; }
.marquee-item {
  display: flex; align-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 26px; letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.2); padding: 0 32px; white-space: nowrap;
}
@media (min-width: 640px) { .marquee-item { font-size: 30px; } }
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-left: 64px; }
@keyframes marquee-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: 112px 0; }
@media (min-width: 640px) { .section { padding: 144px 0; } }
.section-alt { background: rgba(4, 22, 70, 0.3); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }

.section-head { position: relative; }
.chapter {
  position: absolute; top: -64px; left: 0; pointer-events: none; user-select: none;
  font-family: var(--font-head); font-weight: 800; font-size: 7rem; line-height: 1;
  color: rgba(2, 66, 181, 0.15);
}
@media (min-width: 640px) { .chapter { top: -96px; font-size: 11rem; } }

.overline {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .25em; color: var(--steel); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head); font-weight: 700; font-size: 32px;
  letter-spacing: -0.02em; line-height: 1.05; max-width: 42rem;
}
@media (min-width: 640px) { .section-title { font-size: 48px; } }
.section-lead { margin-top: 24px; font-size: 16px; font-weight: 300; color: var(--steel); max-width: 42rem; line-height: 1.7; }
@media (min-width: 640px) { .section-lead { font-size: 18px; } }

.grid-3 { margin-top: 80px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-12 { margin-top: 80px; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); }
  .span-7 { grid-column: span 7; }
  .span-5 { grid-column: span 5; }
  .span-4 { grid-column: span 4; }
}

/* steps */
.step-card {
  position: relative; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  background: rgba(4, 22, 70, 0.4);
  transition: transform .5s ease, border-color .5s ease;
}
.step-card:hover { transform: translateY(-8px); border-color: rgba(2, 66, 181, 0.6); }
.step-media { position: relative; height: 176px; overflow: hidden; }
.step-media img {
  width: 100%; height: 100%; object-fit: cover; opacity: .6;
  transition: opacity .7s ease, transform .7s ease;
}
.step-card:hover .step-media img { opacity: .9; transform: scale(1.05); }
.step-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-light), transparent);
}
.step-num {
  position: absolute; bottom: 12px; left: 24px; z-index: 1;
  font-family: var(--font-head); font-weight: 800; font-size: 48px; color: var(--blue-hover);
  text-shadow: 0 0 15px rgba(2, 66, 181, 0.5);
}
.step-body { padding: 28px; }
.step-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.step-body p { margin-top: 12px; font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.7; }

/* storage options */
.option-card {
  position: relative; display: block; height: 256px;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: transform .5s ease, border-color .5s ease;
}
@media (min-width: 768px) { .option-card { height: 288px; } }
.option-card:hover { transform: translateY(-8px); border-color: rgba(2, 66, 181, 0.7); }
.option-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4;
  transition: opacity .7s ease, transform .7s ease;
}
.option-card:hover img { opacity: .6; transform: scale(1.05); }
.option-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--navy) 0%, rgba(2,16,60,.6) 60%, transparent 100%); }
.option-body { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.option-icon { width: 24px; height: 24px; color: var(--blue-soft); margin-bottom: 16px; }
.option-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.option-title-row h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.option-arrow {
  width: 20px; height: 20px; color: var(--steel); flex-shrink: 0;
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity .5s ease, transform .5s ease;
}
.option-card:hover .option-arrow { opacity: 1; transform: translate(0, 0); }
.option-body p { margin-top: 8px; font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.6; max-width: 28rem; }

/* locations */
.locations { overflow: hidden; }
.locations-bg {
  position: absolute; inset: 0; opacity: .12;
  background-size: cover; background-position: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.locations-inner { position: relative; z-index: 1; }

.emirates-grid {
  margin-top: 80px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 640px) { .emirates-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .emirates-grid { grid-template-columns: repeat(7, 1fr); } }

.emirate-card {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  height: 224px; padding: 20px; text-align: left;
  border: 1px solid var(--border); border-radius: 4px; background: rgba(4, 22, 70, 0.4);
  transition: transform .5s ease, border-color .5s ease, background-color .5s ease;
}
@media (min-width: 1024px) { .emirate-card { height: 288px; } }
.emirate-card:hover { transform: translateY(-8px); border-color: rgba(2, 66, 181, 0.7); background: rgba(4, 22, 70, 0.8); }
.emirate-num {
  font-family: var(--font-head); font-weight: 800; font-size: 30px;
  color: rgba(2, 66, 181, 0.3); transition: color .5s ease;
}
.emirate-card:hover .emirate-num { color: var(--blue-hover); }
.emirate-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; line-height: 1.3; }
@media (min-width: 640px) { .emirate-name { font-size: 18px; } }
.emirate-bar {
  position: absolute; bottom: 0; left: 0; height: 3px; width: 0;
  background: var(--blue-hover); transition: width .5s ease;
}
.emirate-card:hover .emirate-bar { width: 100%; }

/* benefits */
.benefit-card {
  height: 100%; border: 1px solid var(--border); border-radius: 4px;
  background: rgba(2, 16, 60, 0.6); padding: 32px;
  transition: transform .5s ease, border-color .5s ease;
}
.benefit-card:hover { transform: translateY(-8px); border-color: rgba(2, 66, 181, 0.7); }
.benefit-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  border: 1px solid var(--border); border-radius: 4px; background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .5s ease, background-color .5s ease;
}
.benefit-card:hover .benefit-icon { border-color: var(--blue); background: rgba(2, 66, 181, 0.2); }
.benefit-icon svg { width: 20px; height: 20px; color: var(--blue-soft); }
.benefit-card h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.benefit-card p { margin-top: 12px; font-size: 14px; font-weight: 300; color: var(--steel); line-height: 1.7; }

/* CTA */
.cta { padding: 128px 0; overflow: hidden; }
@media (min-width: 640px) { .cta { padding: 176px 0; } }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .4;
  -webkit-mask-image: radial-gradient(90% 90% at 65% 50%, black 25%, transparent 80%);
  mask-image: radial-gradient(90% 90% at 65% 50%, black 25%, transparent 80%);
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 50%, var(--navy) 100%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-head); font-weight: 800; font-size: 36px;
  letter-spacing: -0.04em; line-height: 1.02; max-width: 48rem;
}
@media (min-width: 640px) { .cta-title { font-size: 60px; } }
.cta-actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 32px; }
.cta-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--steel); }
.cta-contact a { transition: color .3s ease; }
.cta-contact a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: #010B2B; }
.footer-grid {
  padding: 64px 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
@media (min-width: 1024px) {
  .footer-grid { padding: 64px 48px; grid-template-columns: 4fr 2fr 2fr 2fr 2fr; }
  .footer-brand { grid-column: span 1; }
}
.footer-brand { grid-column: span 2; }
@media (min-width: 1024px) { .footer-brand { grid-column: span 1; } }
.footer-desc { margin-top: 20px; font-size: 14px; font-weight: 300; color: #fff; line-height: 1.7; max-width: 20rem; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: #fff; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.7); transition: color .3s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
  padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 12px; color: rgba(139, 162, 216, 0.7);
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; padding: 24px 48px; } }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color .3s ease; }
.footer-legal a:hover { color: #fff; }
