/* =========================================================
   EL MALLAH — Premium Light Mode Coming Soon Page
   Pure HTML5 + CSS3
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --color-navy: #2B3080;
  /* Logo primary navy */
  --color-navy-soft: #3D44A0;
  /* Lighter navy for hover/glow */
  --color-navy-glow: rgba(43, 48, 128, 0.15);
  --color-silver: #A9ADBE;
  /* Logo shadow/silver */
  --color-white: #ffffff;
  --color-bg: #F3F4F9;
  /* Warm blue-tinted white */
  --color-bg-card: #ffffff;
  --color-text: #1A1D4E;
  /* Deep navy for headings */
  --color-gray: #5C6080;
  /* Muted navy-gray for body */
  --color-gray-dark: #9094B0;
  /* Lighter for subtle elements */
  --color-line: rgba(43, 48, 128, 0.10);
  --color-line-hover: rgba(43, 48, 128, 0.30);

  --font-en: 'Montserrat', system-ui, sans-serif;
  --font-ar: 'Cairo', system-ui, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-en);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Fade-in animation ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeUp 1.4s var(--ease) both;
}

.delay-1 {
  animation-delay: .15s;
}

.delay-2 {
  animation-delay: .3s;
}

.delay-3 {
  animation-delay: .45s;
}

.delay-4 {
  animation-delay: .6s;
}

/* ============================================================
   NAVIGATION HEADER
   ============================================================ */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 100;
  background: transparent;
}

.header-container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-header .logo img {
  height: 110px;
  padding:20px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  color: var(--color-gray);
  transition: color 0.4s var(--ease);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 120px;
  margin-top: -100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(0%) contrast(1.0) brightness(0.65);
  transform: scale(1.02);
  animation: slowZoom 24s ease-in-out infinite alternate;
  z-index: -2;
}

@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 244, 249, 0.60) 0%, rgba(243, 244, 249, 0.78) 60%, rgba(243, 244, 249, 0.92) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  padding: 20px 20px 100px;
  max-width: 900px;
}

.hero-logo {
  display: inline-block;
  background: var(--color-white);
  padding: 16px 28px;
  border-radius: 4px;
  box-shadow: 0 20px 60px var(--color-blue-glow);
  margin-bottom: 24px;
}

.hero-logo img {
  width: 120px;
  height: auto;
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--color-line);
  margin: 24px auto;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--color-navy);
  font-weight: 600;
}

.hero-title {
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--color-gray);
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.5;
}

.hero-arabic {
  direction: rtl;
  font-family: var(--font-ar);
  margin-top: 36px;
  max-width: 760px;
  margin-inline: auto;
}

.ar-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 20px;
}

.ar-body {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.9;
  color: var(--color-text);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.ar-highlight {
  color: var(--color-navy);
  font-weight: 700;
  margin-top: 30px;
  display: block;
}

/* ---------- Image Showcase Grid ---------- */
.image-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 50px auto 0;
}

.showcase-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-charcoal-card);
  border-radius: 2px;
  transition: border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) contrast(1.1) brightness(04);
  transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
}

.showcase-card:hover {
  border-color: var(--color-line-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.showcase-card:hover img {
  transform: scale(1.05);
  filter: grayscale(10%) brightness(0.85);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 24px;
  border: 1px solid var(--color-line-hover);
  border-radius: 100px;
  background: rgba(43, 48, 128, 0.05);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-navy);
  transition: all 0.4s var(--ease);
}

.coming-soon-badge:hover {
  border-color: var(--color-navy);
  box-shadow: 0 0 25px rgba(43, 48, 128, 0.12);
}

.coming-soon-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-navy);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gray-dark);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gray-dark), transparent);
  animation: lineDrop 2.2s ease-in-out infinite;
}

@keyframes lineDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.section {
  padding: 120px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
}

.contact {
  position: relative;
  overflow: hidden;
}

/* Split Heading Layout */
.contact-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-left {
  flex: 1;
}

.contact-large-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 200;
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.05;
}

.contact-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contact-small-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-gray);
  font-weight: 300;
}

.contact-hotline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 4px;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-hotline:hover {
  opacity: 0.8;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--color-bg-card);
  padding: 44px 24px;
  text-align: center;
  border: 1px solid var(--color-line);
  border-radius: 2px;
  box-shadow: 0 2px 16px var(--color-navy-glow);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.contact-card:hover {
  border-color: var(--color-line-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--color-navy-glow);
}

.contact-card i {
  font-size: 18px;
  color: var(--color-navy);
  margin-bottom: 16px;
  opacity: 0.9;
}

.contact-card h5 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

/* Social Links */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--color-line-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 16px;
  transition: all 0.4s var(--ease);
  background: var(--color-bg-card);
}

.socials a:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER & WATERMARK
   ============================================================ */
.footer {
  position: relative;
  background: #EAECF5;
  padding: 30px 0;
  border-top: 1px solid var(--color-line-hover);
  overflow: hidden;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  width: 64px;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray);
  line-height: 2;
  font-weight: 500;
  text-align: right;
}

/* Huge Watermark Background Styling */
.watermark-bg {
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-size: clamp(6rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: 12px;
  color: rgba(43, 48, 128, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 0.8;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .contact-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-header {
    height: 80px;
  }

  .hero-content {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 24px;
  }

  .header-container {
    padding: 0 24px;
  }

  .section {
    padding: 70px 0;
  }

  .image-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .hero-logo {
    padding: 12px 20px;
  }

  .hero-logo img {
    width: 90px;
  }

  .coming-soon-badge {
    margin-top: 36px;
    padding: 10px 20px;
    letter-spacing: 3px;
  }

  .socials a {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}