/* ═══════════════════════════════════════════════
   ARCTIC ICE DUBAI — STYLES.CSS
   Full 3D · Responsive · Production-Grade
════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────── */
:root {
  --ice:       #c8f0ff;
  --ice-mid:   #7dd8f7;
  --ice-deep:  #0a9fd4;
  --arctic:    #003f5e;
  --midnight:  #00131f;
  --white:     #f5fbff;
  --gold:      #f0c040;
  --text:      #cce8f4;

  /* 3-D depth tokens */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.45);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(125,216,247,0.25);
  --shadow-gold: 0 0 30px rgba(240,192,64,0.3);

  --perspective: 1200px;
}

/* ─── RESET & BASE ──────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: linear-gradient(to bottom, rgba(0,19,31,0.95), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--ice);
  text-decoration: none;
  /* 3D letter-press effect */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.15),
    0 -1px 0 rgba(0,0,0,0.5),
    0 4px 12px rgba(10,159,212,0.4);
  transition: text-shadow 0.3s;
}
.nav-logo:hover {
  text-shadow:
    0 1px 0 rgba(255,255,255,0.2),
    0 -1px 0 rgba(0,0,0,0.5),
    0 6px 20px rgba(10,159,212,0.6);
}
.nav-logo span { color: var(--gold); }

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav ul a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--ice-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
nav ul a:hover { color: var(--ice); }
nav ul a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ice-deep) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s !important;
  box-shadow: 0 4px 16px rgba(10,159,212,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--ice-mid) !important;
  color: var(--midnight) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(125,216,247,0.4), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,19,31,0.97);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 4px;
  color: var(--ice);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(13,100,160,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,63,94,0.5) 0%, transparent 60%),
    linear-gradient(135deg, #00131f 0%, #001a2c 50%, #001e35 100%);
}

/* Falling crystals */
.crystals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.crystal {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(200,240,255,0.7), transparent);
  animation: fall linear infinite;
  border-radius: 1px;
}
@keyframes fall {
  0%   { transform: translateY(-100px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(360deg);  opacity: 0; }
}

/* ── 3-D Rotating Ice Block Visual ── */
.ice-block-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 520px);
  height: clamp(280px, 38vw, 520px);
  perspective: var(--perspective);
  pointer-events: none;
}
.ice-block-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spin-block 18s linear infinite;
}
@keyframes spin-block {
  0%   { transform: rotateX(15deg) rotateY(0deg);   }
  100% { transform: rotateX(15deg) rotateY(360deg); }
}

/* Six faces of the 3-D cube */
.ice-face {
  position: absolute;
  border-radius: 6px;
  background: linear-gradient(135deg,
    rgba(200,240,255,0.18) 0%,
    rgba(0,159,212,0.12) 60%,
    rgba(0,40,80,0.08) 100%);
  border: 1px solid rgba(200,240,255,0.25);
  box-shadow:
    inset 0 0 40px rgba(200,240,255,0.08),
    0 0 60px rgba(10,159,212,0.1);
  backdrop-filter: blur(2px);
}

/* Size helper — cube side = 50% of container */
.ice-block-inner { --s: 50%; }

.face-front  { width: var(--s); height: var(--s); top:25%; left:25%; transform: translateZ(calc(var(--s) / 2)); }
.face-back   { width: var(--s); height: var(--s); top:25%; left:25%; transform: rotateY(180deg) translateZ(calc(var(--s) / 2)); }
.face-left   { width: var(--s); height: var(--s); top:25%; left:25%; transform: rotateY(-90deg) translateZ(calc(var(--s) / 2)); }
.face-right  { width: var(--s); height: var(--s); top:25%; left:25%; transform: rotateY(90deg)  translateZ(calc(var(--s) / 2)); }
.face-top    { width: var(--s); height: var(--s); top:25%; left:25%; transform: rotateX(90deg)  translateZ(calc(var(--s) / 2)); }
.face-bottom { width: var(--s); height: var(--s); top:25%; left:25%; transform: rotateX(-90deg) translateZ(calc(var(--s) / 2)); }

/* Caustic light shimmer on each face */
.ice-face::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(200,240,255,0.2) 50%, transparent 70%);
  border-radius: inherit;
  animation: shimmer 4s ease-in-out infinite alternate;
}
@keyframes shimmer {
  from { opacity: 0.3; transform: translateX(-20%); }
  to   { opacity: 1;   transform: translateX(20%);  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 680px;
  animation: hero-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,240,255,0.08);
  border: 1px solid rgba(200,240,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice-mid);
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(125,216,247,0.1);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--ice-mid);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 6px var(--ice-mid);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
  /* 3-D extruded text */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.1),
    1px 2px 0 rgba(0,63,94,0.6),
    2px 4px 0 rgba(0,40,65,0.5),
    3px 6px 0 rgba(0,20,35,0.4),
    4px 8px 0 rgba(0,10,20,0.3),
    0 12px 30px rgba(0,0,0,0.5);
}
.hero h1 .accent {
  color: var(--ice-mid);
  display: block;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.1),
    1px 2px 0 rgba(0,100,150,0.6),
    2px 4px 0 rgba(0,63,94,0.5),
    3px 6px 0 rgba(0,30,50,0.4),
    0 12px 30px rgba(10,159,212,0.4);
}
.hero h1 .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.75em;
  color: var(--ice);
  opacity: 0.7;
  display: block;
  letter-spacing: 4px;
  text-shadow: 0 4px 16px rgba(10,159,212,0.3);
}

.hero-sub {
  margin: 28px 0 40px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 460px;
  font-weight: 300;
}

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

/* Primary button — 3-D press effect */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ice-deep);
  color: white;
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  border: 2px solid var(--ice-deep);
  box-shadow:
    0 6px 0 rgba(0,50,80,0.7),
    0 8px 24px rgba(10,159,212,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  top: 0;
}
.btn-primary:hover {
  background: var(--ice-mid);
  border-color: var(--ice-mid);
  color: var(--midnight);
  top: 3px;
  box-shadow:
    0 3px 0 rgba(0,50,80,0.7),
    0 6px 16px rgba(125,216,247,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: none;
}
.btn-primary:active {
  top: 6px;
  box-shadow:
    0 0 0 rgba(0,50,80,0.7),
    0 2px 8px rgba(125,216,247,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ice);
  padding: 16px 32px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 1px solid rgba(200,240,255,0.3);
  box-shadow: inset 0 0 20px rgba(200,240,255,0.03);
}
.btn-outline:hover {
  background: rgba(200,240,255,0.07);
  border-color: var(--ice);
  box-shadow: 0 0 20px rgba(200,240,255,0.12), inset 0 0 20px rgba(200,240,255,0.05);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(200,240,255,0.1);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--ice);
  line-height: 1;
  letter-spacing: 1px;
  text-shadow:
    1px 2px 0 rgba(0,63,94,0.6),
    2px 4px 0 rgba(0,40,65,0.4),
    0 6px 16px rgba(10,159,212,0.3);
}
.stat-label {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(200,240,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(200,240,255,0.4), transparent);
}

/* ─── VAN SECTION ────────────────────────────── */
.van-section {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--midnight), #001525);
}
.van-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* 3-D card tilt on image */
.van-image-wrap {
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.5s ease;
}
.van-image-wrap:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) scale(1.01);
}
.van-image-wrap img {
  width: 100%;
  border-radius: 4px;
  filter: saturate(0.8) brightness(0.9);
  position: relative;
  z-index: 1;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(200,240,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow 0.4s, filter 0.4s;
}
.van-image-wrap:hover img {
  filter: saturate(1) brightness(1);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(10,159,212,0.15),
    0 0 0 1px rgba(200,240,255,0.12);
}
.van-image-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  background: linear-gradient(135deg, rgba(13,100,160,0.3), transparent);
  border-radius: 8px;
  z-index: 0;
}
.van-image-wrap::after {
  content: 'DELIVERY';
  position: absolute;
  bottom: -16px; right: -16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(200,240,255,0.04);
  letter-spacing: 4px;
  z-index: 0;
  white-space: nowrap;
}

.van-badge {
  position: absolute;
  top: 24px; left: -16px;
  background: var(--ice-deep);
  color: white;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  border-radius: 2px;
  box-shadow:
    0 8px 24px rgba(10,159,212,0.4),
    0 2px 0 rgba(0,50,80,0.6),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ice-mid);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-shadow:
    1px 2px 0 rgba(0,40,65,0.5),
    2px 4px 0 rgba(0,20,35,0.3),
    0 8px 20px rgba(0,0,0,0.4);
}
.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.85;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
  padding: 10px 16px;
  background: rgba(0,159,212,0.05);
  border-left: 2px solid rgba(125,216,247,0.25);
  border-radius: 0 2px 2px 0;
  transition: background 0.3s, border-color 0.3s;
}
.check-list li:hover {
  background: rgba(0,159,212,0.1);
  border-left-color: var(--ice-mid);
}
.check-list li::before { content: '❄'; font-size: 16px; color: var(--ice-mid); flex-shrink: 0; }

/* ─── PRODUCTS ───────────────────────────────── */
.products {
  padding: 120px 48px;
  background: #001525;
  position: relative;
}
.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,240,255,0.2), transparent);
}

.section-header { text-align: center; margin-bottom: 72px; }

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* 3-D product card */
.product-card {
  position: relative;
  background: rgba(0,40,65,0.6);
  padding: 48px 36px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34,1.2,0.64,1);
  cursor: default;
  border: 1px solid rgba(200,240,255,0.06);
  transform-style: preserve-3d;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.product-card:hover {
  background: rgba(10,80,120,0.4);
  border-color: rgba(200,240,255,0.15);
  transform: translateY(-8px) perspective(600px) rotateX(2deg);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(10,159,212,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--ice-deep), var(--ice-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.product-card:hover::before { transform: scaleX(1); }

/* Glossy glare overlay */
.product-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(200,240,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}
.product-card:hover::after { opacity: 1; }

.product-icon {
  width: 60px; height: 60px;
  background: rgba(0,159,212,0.12);
  border: 1px solid rgba(125,216,247,0.2);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 28px;
  transition: all 0.3s;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.product-card:hover .product-icon {
  background: rgba(0,159,212,0.25);
  box-shadow:
    0 0 30px rgba(125,216,247,0.2),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.08);
}
.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.product-desc { font-size: 14px; line-height: 1.7; color: var(--text); opacity: 0.75; font-weight: 300; margin-bottom: 24px; }
.product-detail { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ice-mid); font-weight: 500; }

/* ─── HOW IT WORKS ───────────────────────────── */
.how {
  padding: 120px 48px;
  position: relative;
  background: var(--midnight);
}
.how-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 44px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--ice-deep), rgba(125,216,247,0.4), var(--ice-deep));
}
.how-step { padding: 0 24px; text-align: center; position: relative; }

/* 3-D step circle */
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(0,40,65,0.8);
  border: 2px solid var(--ice-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--ice-mid);
  position: relative; z-index: 1;
  transition: all 0.35s cubic-bezier(0.34,1.4,0.64,1);
  box-shadow:
    0 6px 0 rgba(0,20,40,0.7),
    0 12px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.how-step:hover .step-num {
  background: var(--ice-deep);
  color: white;
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 10px 0 rgba(0,20,40,0.6),
    0 0 30px rgba(10,159,212,0.5),
    0 16px 32px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; }
.step-desc { font-size: 13px; line-height: 1.7; color: var(--text); opacity: 0.7; font-weight: 300; }

/* ─── AREA ───────────────────────────────────── */
.area {
  padding: 100px 48px;
  background: linear-gradient(135deg, #001525, #002035);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.area::before {
  content: 'DUBAI';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 20vw, 240px);
  color: rgba(200,240,255,0.025);
  letter-spacing: 12px;
  white-space: nowrap;
  pointer-events: none;
}
.area-content { position: relative; z-index: 1; }

.zones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* 3-D zone tags */
.zone-tag {
  background: rgba(0,159,212,0.12);
  border: 1px solid rgba(125,216,247,0.2);
  color: var(--ice);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.34,1.4,0.64,1);
  box-shadow: 0 3px 0 rgba(0,20,40,0.5), 0 4px 10px rgba(0,0,0,0.3);
  position: relative; top: 0;
}
.zone-tag:hover {
  background: rgba(0,159,212,0.25);
  border-color: var(--ice-mid);
  top: -3px;
  box-shadow:
    0 6px 0 rgba(0,20,40,0.4),
    0 8px 20px rgba(10,159,212,0.2),
    0 0 16px rgba(125,216,247,0.1);
}

/* ─── FAQ ────────────────────────────────────── */
#faq {
  padding: 100px 48px;
  background: linear-gradient(to bottom, #001525, var(--midnight));
  position: relative;
}

.faq-item {
  background: rgba(0,40,65,0.5);
  border: 1px solid rgba(200,240,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), 0 2px 0 rgba(0,0,0,0.3);
}
.faq-item:hover {
  border-color: rgba(125,216,247,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(10,159,212,0.08);
  transform: translateY(-1px);
}
.faq-item[open] {
  border-color: rgba(125,216,247,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 30px rgba(10,159,212,0.1);
}

.faq-item summary {
  padding: 24px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--ice-mid);
  transition: transform 0.3s, text-shadow 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  text-shadow: 0 0 10px rgba(125,216,247,0.4);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  text-shadow: 0 0 16px rgba(125,216,247,0.7);
}
.faq-item p { padding: 0 28px 24px; font-size: 14px; line-height: 1.8; color: var(--text); opacity: 0.8; font-weight: 300; }

/* ─── CONTACT ────────────────────────────────── */
.contact {
  padding: 120px 48px;
  background: var(--midnight);
  position: relative;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-shadow:
    1px 2px 0 rgba(0,40,65,0.6),
    2px 4px 0 rgba(0,20,35,0.4),
    0 8px 24px rgba(0,0,0,0.4);
}
.contact-info h2 span { color: var(--ice-mid); }
.contact-info p { font-size: 15px; line-height: 1.8; color: var(--text); opacity: 0.8; font-weight: 300; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }

/* 3-D contact method card */
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0,40,65,0.5);
  border: 1px solid rgba(200,240,255,0.08);
  border-radius: 2px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s;
  box-shadow:
    4px 4px 0 rgba(0,10,20,0.6),
    0 8px 24px rgba(0,0,0,0.3);
  position: relative; left: 0;
}
.contact-method:hover {
  background: rgba(10,100,150,0.3);
  border-color: rgba(125,216,247,0.25);
  left: 4px;
  box-shadow:
    0 0 0 rgba(0,10,20,0.6),
    0 4px 16px rgba(10,159,212,0.2),
    0 0 20px rgba(10,159,212,0.08);
}
.method-icon {
  width: 44px; height: 44px;
  background: rgba(0,159,212,0.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 2px 6px rgba(0,0,0,0.3);
}
.method-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ice-mid); margin-bottom: 2px; font-weight: 500; }
.method-value { font-size: 15px; font-weight: 500; }

/* ─── ORDER FORM ─────────────────────────────── */
.order-form {
  background: rgba(0,30,50,0.6);
  border: 1px solid rgba(200,240,255,0.1);
  padding: 44px;
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(200,240,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}
.order-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: var(--ice);
  text-shadow:
    1px 2px 0 rgba(0,63,94,0.6),
    2px 4px 0 rgba(0,40,65,0.4),
    0 4px 16px rgba(10,159,212,0.3);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0,40,65,0.6);
  border: 1px solid rgba(200,240,255,0.12);
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice-deep);
  box-shadow: 0 0 0 3px rgba(10,159,212,0.12), inset 0 2px 8px rgba(0,0,0,0.2);
}
.form-group select option { background: #001525; }
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%;
  background: var(--ice-deep);
  color: white;
  border: none;
  padding: 18px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
  margin-top: 8px;
  box-shadow:
    0 6px 0 rgba(0,50,80,0.7),
    0 10px 24px rgba(10,159,212,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative; top: 0;
}
.btn-submit:hover {
  background: var(--ice-mid);
  color: var(--midnight);
  top: 3px;
  box-shadow:
    0 3px 0 rgba(0,50,80,0.7),
    0 6px 16px rgba(125,216,247,0.35);
}
.btn-submit:active { top: 6px; box-shadow: 0 0 0 rgba(0,50,80,0.7); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; top: 0; }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: #000c14;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200,240,255,0.06);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--ice);
  text-shadow:
    1px 2px 0 rgba(0,40,65,0.5),
    0 4px 12px rgba(10,159,212,0.2);
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--text); opacity: 0.4; letter-spacing: 1px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 12px;
  color: var(--text);
  opacity: 0.5;
  text-decoration: none;
  letter-spacing: 1px;
  transition: opacity 0.3s, color 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--ice); }

/* ─── FLOATING BUTTONS ───────────────────────── */
.float-btns {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 100px;
  padding: 0 20px 0 0;
  height: 56px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
  animation: float-pop 0.6s cubic-bezier(0.16,1,0.3,1) both;
  box-shadow:
    0 6px 0 rgba(0,0,0,0.35),
    0 10px 28px rgba(0,0,0,0.4);
  position: relative; top: 0;
}
.float-btn:nth-child(1) { animation-delay: 1.2s; }
.float-btn:nth-child(2) { animation-delay: 1.5s; }

@keyframes float-pop {
  from { transform: scale(0) translateX(40px); opacity: 0; }
  to   { transform: scale(1) translateX(0);    opacity: 1; }
}
.float-btn:hover {
  top: -3px;
  box-shadow:
    0 9px 0 rgba(0,0,0,0.3),
    0 16px 40px rgba(0,0,0,0.45);
}
.float-btn:active { top: 3px; box-shadow: 0 3px 0 rgba(0,0,0,0.3); }

.float-btn-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-right: 2px;
}

.float-wa { background: linear-gradient(135deg, #1ebe5d, #25d366); }
.float-wa .float-btn-icon { background: rgba(0,0,0,0.15); }

.float-call { background: linear-gradient(135deg, #0a9fd4, #0076a8); }
.float-call .float-btn-icon { background: rgba(0,0,0,0.15); }

/* WhatsApp pulse ring */
.float-wa::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  left: 0;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FORM SUCCESS ───────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 4px;
  color: #25d366;
  margin-top: 16px;
  box-shadow: 0 0 30px rgba(37,211,102,0.1);
}
.form-success.show { display: block; animation: fade-in 0.5s ease; }
@keyframes fade-in { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.form-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.form-success p { font-size: 14px; opacity: 0.8; }

/* ─── RESPONSIVE — TABLET (≤1024px) ─────────── */
@media (max-width: 1024px) {
  nav { padding: 16px 32px; }
  .hero-content { max-width: 580px; }
  .ice-block-visual { right: -60px; opacity: 0.08; }
  .van-section { padding: 80px 32px; }
  .van-section-inner { gap: 48px; }
  .products { padding: 80px 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .how { padding: 80px 32px; }
  .area { padding: 80px 32px; }
  .contact { padding: 80px 32px; }
  .contact-inner { gap: 48px; }
  #faq { padding: 80px 32px; }
  footer { padding: 36px 32px; }
}

/* ─── RESPONSIVE — MOBILE (≤768px) ──────────── */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 16px 20px; }
  nav ul { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-content { padding: 0 20px; padding-top: 96px; max-width: 100%; }
  .hero h1 { font-size: clamp(52px, 14vw, 80px); }
  .hero-stats { gap: 24px; margin-top: 40px; }
  .ice-block-visual { right: -80px; top: 60%; opacity: 0.06; width: 240px; height: 240px; }

  /* Sections */
  .van-section { padding: 0; }
  .van-section-inner { grid-template-columns: 1fr; gap: 36px; padding: 72px 20px; }
  .van-image-wrap:hover { transform: none; }

  .products { padding: 72px 20px; }
  .products-grid { grid-template-columns: 1fr; gap: 2px; }

  .how { padding: 72px 20px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-grid::before { display: none; }

  .area { padding: 72px 20px; }

  #faq { padding: 72px 20px; }

  .contact { padding: 72px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 28px 20px; }

  footer { flex-direction: column; text-align: center; padding: 32px 20px; }
  .footer-links { justify-content: center; }

  /* Floating buttons */
  .float-btns { bottom: 20px; right: 14px; }
  .float-btn { font-size: 12px; padding: 0 14px 0 0; height: 50px; }
  .float-btn-icon { width: 50px; height: 50px; font-size: 20px; }
  .float-wa::before { width: 50px; height: 50px; }
}

/* ─── RESPONSIVE — SMALL MOBILE (≤420px) ────── */
@media (max-width: 420px) {
  .hero h1 { font-size: 48px; }
  .how-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .van-badge { left: 0; }
  .nav-drawer a { font-size: 34px; }
}

/* ─── ACCESSIBILITY ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
