*{box-sizing:border-box}
:root{
  --primary:#0B4F8C;
  --secondary:#2AA7D6;
  --accent:#7ED6F5;
  --donate:#F39C12;
  --white:#fff;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:'Cairo','Poppins',sans-serif;
  background:#061b33;
  color:#fff;
  overflow:hidden;
}
html[dir="ltr"] body{font-family:'Poppins','Cairo',sans-serif}
.coming-page{
  min-height:100vh;
  position:relative;
  display:grid;
  place-items:center;
  padding:24px;
  overflow:hidden;
  background:linear-gradient(135deg,#061b33,#0B4F8C 55%,#2AA7D6);
}
.water-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,rgba(6,27,51,.88),rgba(11,79,140,.52)),
    url('https://images.unsplash.com/photo-1548839140-29a749e1cf4d?auto=format&fit=crop&w=1800&q=85') center/cover;
  opacity:.35;
  animation:bgZoom 18s ease-in-out infinite alternate;
}
@keyframes bgZoom{to{transform:scale(1.08)}}
.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(35px);
  opacity:.55;
  animation:glowFloat 7s ease-in-out infinite;
}
.glow-1{width:360px;height:360px;background:#7ED6F5;top:8%;left:10%}
.glow-2{width:300px;height:300px;background:#2AA7D6;bottom:10%;right:12%;animation-delay:2s}
@keyframes glowFloat{50%{transform:translateY(-22px) scale(1.08)}}
.bubble{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle at 30% 25%,rgba(255,255,255,.9),rgba(126,214,245,.24));
  box-shadow:0 0 28px rgba(126,214,245,.3);
  animation:bubbleFloat 7s ease-in-out infinite;
}
.b1{width:18px;height:18px;top:14%;left:14%}
.b2{width:42px;height:42px;top:22%;right:16%;animation-delay:1s}
.b3{width:28px;height:28px;bottom:28%;left:10%;animation-delay:2s}
.b4{width:60px;height:60px;bottom:18%;right:16%;animation-delay:3s}
.b5{width:22px;height:22px;top:60%;right:28%;animation-delay:4s}
@keyframes bubbleFloat{50%{transform:translateY(-28px) translateX(10px)}}
.lang-btn{
  position:absolute;
  top:24px;
  inset-inline-end:24px;
  z-index:10;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.12);
  color:#fff;
  border-radius:999px;
  padding:10px 18px;
  font-weight:900;
  backdrop-filter:blur(14px);
  cursor:pointer;
  transition:.3s;
}
.lang-btn:hover{transform:translateY(-3px);background:rgba(255,255,255,.2)}
.center-card{
  position:relative;
  z-index:5;
  width:min(920px,100%);
  padding:46px 34px;
  border-radius:36px;
  text-align:center;
  background:rgba(255,255,255,.105);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px) saturate(150%);
  box-shadow:0 30px 90px rgba(0,0,0,.28), inset 1px 1px 6px rgba(255,255,255,.18);
}
.water-orbit{
  position:relative;
  width:170px;
  height:170px;
  margin:0 auto 22px;
}
.water-core{
  position:absolute;
  top:50%;
  left:50%;
  width:92px;
  height:92px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:44px;
  background:radial-gradient(circle at 30% 20%,rgba(255,255,255,.85),rgba(126,214,245,.42),rgba(42,167,214,.16));
  box-shadow:0 0 55px rgba(126,214,245,.55), inset 10px 10px 25px rgba(255,255,255,.24);
  animation:coreFloat 5s ease-in-out infinite;
}
@keyframes coreFloat{50%{transform:translate(-50%,-50%) translateY(-9px)}}
.ring{
  position:absolute;
  top:50%;
  left:50%;
  border:2px solid rgba(126,214,245,.45);
  border-radius:50%;
  box-shadow:0 0 25px rgba(126,214,245,.28);
}
.ring-1{width:150px;height:56px;margin:-28px 0 0 -75px;animation:spin 9s linear infinite}
.ring-2{width:92px;height:150px;margin:-75px 0 0 -46px;animation:spin 11s linear infinite reverse}
@keyframes spin{to{rotate:360deg}}
h1{
  margin:0 0 10px;
  font-size:clamp(1.55rem,3.8vw,3.1rem);
  font-weight:900;
  line-height:1.25;
}
h2{
  margin:0;
  font-size:clamp(3.1rem,8vw,7rem);
  font-weight:900;
  color:var(--accent);
  line-height:1;
  text-shadow:0 0 35px rgba(126,214,245,.55);
  animation:soonGlow 2.4s ease-in-out infinite alternate;
}
@keyframes soonGlow{to{text-shadow:0 0 55px rgba(126,214,245,.9),0 0 22px rgba(255,255,255,.45)}}
.tagline{
  margin:16px auto 28px;
  font-size:clamp(1rem,2vw,1.25rem);
  opacity:.9;
}
.countdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  max-width:680px;
  margin:0 auto 26px;
}
.countdown div{
  padding:16px 10px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 14px 35px rgba(0,0,0,.15);
}
.countdown strong{
  display:block;
  font-size:clamp(1.45rem,4vw,2.55rem);
  font-weight:900;
}
.countdown span{
  display:block;
  color:var(--accent);
  font-weight:800;
}
.contact{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.contact a{
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.20);
  backdrop-filter:blur(10px);
  font-weight:700;
}
.actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  position:relative;
  min-width:155px;
  min-height:50px;
  padding:0 26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
  overflow:hidden;
  transition:.3s;
}
.donate{background:var(--donate);box-shadow:0 14px 35px rgba(243,156,18,.34)}
.contact-btn{background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.30);backdrop-filter:blur(12px)}
.btn:hover{color:#fff;transform:translateY(-4px) scale(1.04)}
.wave{
  position:absolute;
  left:-10%;
  width:120%;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  animation:waveMove 9s linear infinite;
}
.wave-1{bottom:4%;transform:rotate(-2deg)}
.wave-2{bottom:11%;background:rgba(126,214,245,.07);animation-delay:2s}
@keyframes waveMove{to{translate:-120px 0}}
@media(max-width:767px){
  body{overflow:auto}
  .coming-page{padding:85px 16px 50px}
  .center-card{padding:34px 18px;border-radius:28px}
  .countdown{grid-template-columns:repeat(2,1fr)}
  .contact a,.btn{width:100%}
  .water-orbit{width:135px;height:135px}
  .water-core{width:78px;height:78px;font-size:36px}
  .ring-1{width:125px;height:46px;margin:-23px 0 0 -62px}
  .ring-2{width:76px;height:125px;margin:-62px 0 0 -38px}
}


/* Clear Contact Cards */
.contact-cards{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
  margin:24px auto 28px;
}
.contact-card{
  min-width:285px;
  padding:16px 22px;
  border-radius:22px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(16px) saturate(145%);
  -webkit-backdrop-filter:blur(16px) saturate(145%);
  border:1px solid rgba(255,255,255,.24);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-weight:800;
  box-shadow:0 14px 38px rgba(0,0,0,.18), inset 1px 1px 5px rgba(255,255,255,.16);
  transition:.32s ease;
}
.contact-card:hover{
  color:#fff;
  transform:translateY(-6px) scale(1.02);
  background:rgba(126,214,245,.18);
  box-shadow:0 18px 48px rgba(126,214,245,.28), inset 1px 1px 8px rgba(255,255,255,.24);
}
.contact-card i{
  font-size:22px;
  color:#7ED6F5;
  filter:drop-shadow(0 0 10px rgba(126,214,245,.55));
}
@media(max-width:767px){
  .contact-card{
    width:100%;
    min-width:auto;
  }
}
