:root {
  --primary: #23254e;
  --secondary: #3b3f7a;
  --accent: #5566ff;
  --light: #f0f0f8;
}

/* Light Theme Variables */
:root,
[data-theme=light] {
  --bg-gradient-start: rgba(35, 37, 78, 0.78);
  --bg-gradient-mid: rgba(59, 63, 122, 0.78);
  --bg-gradient-end: rgba(40, 42, 90, 0.85);
  --text-color: #ffffff;
  --modal-color: #23254e;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.85);
  --card-bg-top: linear-gradient(to bottom, #f0f0f8, #e8e8f0);
  --card-bg-bottom: linear-gradient(to bottom, #e0e0f0, #d8d8e8);
  --card-text: #23254e;
  --input-bg: rgba(255, 255, 255, 0.1);
  --input-border: rgba(35, 37, 78, 0.2);
  --input-focus-bg: rgba(255, 255, 255, 0.15);
  --btn-gradient: linear-gradient(135deg, #23254e, #3b3f7a);
  --control-bg: rgba(255, 255, 255, 0.15);
  --control-hover-bg: rgba(255, 255, 255, 0.25);
  --dropdown-bg: rgba(255, 255, 255, 0.95);
  --dropdown-text: #23254e;
  --dropdown-hover: rgba(85, 102, 255, 0.1);
}

/* Dark Theme Variables */
[data-theme=dark] {
  --bg-gradient-start: rgba(20, 20, 40, 0.808);
  --bg-gradient-mid: rgba(35, 37, 78, 0.833);
  --bg-gradient-end: rgba(25, 25, 50, 0.732);
  --text-color: #ffffff;
  --modal-color: #fff;
  --text-secondary: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
  --card-bg-top: linear-gradient(to bottom, #23254e, #1f2145);
  --card-bg-bottom: linear-gradient(to bottom, #1d1f3f, #191c36);
  --card-text: #ffffff;
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(35, 37, 78, 0.15);
  --input-focus-bg: rgba(255, 255, 255, 0.1);
  --btn-gradient: linear-gradient(135deg, #23254e, #3b3f7a);
  --control-bg: rgba(255, 255, 255, 0.08);
  --control-hover-bg: rgba(255, 255, 255, 0.15);
  --dropdown-bg: rgba(35, 37, 78, 0.98);
  --dropdown-text: #ffffff;
  --dropdown-hover: rgba(85, 102, 255, 0.2);
}

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

body {
  font-family: Cairo, sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease;
}

/* Controls Bar */
.controls-bar {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  gap: 10px;
  align-items: center;
}
.controls-bar .control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--control-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--text-color);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.controls-bar .control-btn:hover {
  background: var(--control-hover-bg);
  transform: translateY(-2px);
}
.controls-bar .control-btn svg {
  flex-shrink: 0;
}
.controls-bar .theme-toggle {
  position: relative;
  padding: 20px;
}
.controls-bar .theme-toggle .sun-icon,
.controls-bar .theme-toggle .moon-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.controls-bar .theme-toggle .moon-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(180deg);
}
[data-theme=dark] .controls-bar .theme-toggle .sun-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-180deg);
}
[data-theme=dark] .controls-bar .theme-toggle .moon-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}
.controls-bar .language-selector {
  position: relative;
}
.controls-bar .language-selector .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 150px;
  background: var(--dropdown-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.controls-bar .language-selector .dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.controls-bar .language-selector .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--dropdown-text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  cursor: pointer;
  transition: background 0.2s ease;
}
.controls-bar .language-selector .dropdown-menu .dropdown-item:hover {
  background: var(--dropdown-hover);
}
.controls-bar .language-selector .dropdown-menu .dropdown-item.active {
  background: rgba(129, 65, 151, 0.2);
  font-weight: 600;
  margin-block: 3px;
}
@media (max-width: 768px) {
  .controls-bar {
    top: 15px;
    left: 15px;
    gap: 8px;
  }
  .controls-bar .control-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  .controls-bar .control-btn.theme-toggle {
    padding: 16px 20px;
  }
  .controls-bar .control-btn svg {
    width: 18px;
    height: 18px;
  }
  .controls-bar #currentLang {
    display: none;
  }
}

.comming-soon {
  position: relative;
  min-height: 100vh;
  background: url("./../images/map.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.comming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
  transition: background 0.3s ease;
}
.comming-soon .container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  /* Logo section */
}
.comming-soon .container .logo-section {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease;
}
@media screen and (max-width: 768px) {
  .comming-soon .container .logo-section {
    margin-top: 45px;
  }
}
.comming-soon .container .logo-section img {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
  object-fit: contain;
  /* box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3); */
  padding: 5px;
}
@media (max-width: 968px) {
  .comming-soon .container .logo-section img {
    width: 130px;
    height: 130px;
  }
}
.comming-soon .container .brand-info {
  text-align: right;
}
.comming-soon .container .brand-info .brand-name {
  font-weight: 800;
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 968px) {
  .comming-soon .container .brand-info .brand-name {
    font-size: 16px;
  }
}
.comming-soon .container .brand-tagline {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}
.comming-soon .container {
  /* Main content */
}
.comming-soon .container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.comming-soon .container .main-content .left-section {
  animation: fadeInUp 1s ease 0.3s both;
  max-width: 900px;
  width: 100%;
}
.comming-soon .container .main-content .left-section h1 {
  font-size: 42px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.comming-soon .container .main-content .left-section .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}
.comming-soon .container .main-content .left-section {
  /* Flip Clock Countdown */
}
.comming-soon .container .main-content .left-section .countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 50px auto 30px;
  max-width: 750px;
  justify-content: center;
}
.comming-soon .container .main-content .left-section .countdown .countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.comming-soon .container .main-content .left-section .countdown .flip {
  display: block;
  position: relative;
  width: 150px;
  height: 90px;
  perspective: 800px;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}
.comming-soon .container .main-content .left-section .countdown .flip li {
  list-style: none;
  position: absolute;
  width: 100%;
  height: 100%;
}
.comming-soon .container .main-content .left-section .countdown .flip li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  perspective: 800px;
}
.comming-soon .container .main-content .left-section .countdown .flip .up,
.comming-soon .container .main-content .left-section .countdown .flip .down {
  position: absolute;
  width: 100%;
  height: 50%;
  overflow: hidden;
  background: var(--card-bg-top);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}
.comming-soon .container .main-content .left-section .countdown .flip .up {
  top: 0;
  border-radius: 8px 8px 2px 2px;
  transform-origin: bottom;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8), 0 2px 5px rgba(0, 0, 0, 0.15);
}
.comming-soon .container .main-content .left-section .countdown .flip .down {
  bottom: 0;
  background: var(--card-bg-bottom);
  border-radius: 2px 2px 8px 8px;
  transform-origin: top;
  border-top: none;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.08), 0 3px 8px rgba(0, 0, 0, 0.2);
}
.comming-soon .container .main-content .left-section .countdown .flip .inn {
  position: absolute;
  width: 100%;
  height: 200%;
  left: 0;
  font-size: 72px;
  font-weight: 800;
  color: var(--card-text);
  text-align: center;
  line-height: 90px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 1px rgba(255, 255, 255, 0.8);
  font-family: "Cairo", sans-serif;
  transition: color 0.3s ease;
}
.comming-soon .container .main-content .left-section .countdown .flip .up .inn {
  top: 0;
}
.comming-soon .container .main-content .left-section .countdown .flip .down .inn {
  bottom: 0;
}
.comming-soon .container .main-content .left-section .countdown .flip .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.comming-soon .container .main-content .left-section .countdown .flip .up .shadow {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.08) 100%);
}
.comming-soon .container .main-content .left-section .countdown .flip .down .shadow {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
}
.comming-soon .container .main-content .left-section .countdown .flip {
  /* Flip Animation */
}
.comming-soon .container .main-content .left-section .countdown .flip.play .flip-clock-before {
  z-index: 3;
}
.comming-soon .container .main-content .left-section .countdown .flip.play .flip-clock-active {
  animation: asd 0.5s 0.25s linear both;
  z-index: 2;
}
.comming-soon .container .main-content .left-section .countdown .flip.play .flip-clock-before .up {
  z-index: 2;
  animation: turn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.comming-soon .container .main-content .left-section .countdown .flip.play .flip-clock-active .down {
  z-index: 2;
  animation: turn2 0.5s 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.comming-soon .container .main-content .left-section .countdown .flip {
  /* Small screws/dots on sides */
}
.comming-soon .container .main-content .left-section .countdown .flip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #999, #666);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 6;
  box-shadow: 144px 0 0 0 radial-gradient(circle, #999, #666), 0 0 2px rgba(0, 0, 0, 0.3), 144px 0 2px rgba(0, 0, 0, 0.3);
}
.comming-soon .container .main-content .left-section .countdown .countdown-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.comming-soon .container .main-content .left-section {
  /* Email form */
}
.comming-soon .container .main-content .left-section .email-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.comming-soon .container .main-content .left-section .email-form .email-input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--input-border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: var(--input-bg);
  color: var(--text-color);
  transition: all 0.3s;
}
.comming-soon .container .main-content .left-section .email-form .email-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.comming-soon .container .main-content .left-section .email-form .email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.comming-soon .container .main-content .left-section .email-form .email-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--input-focus-bg);
  box-shadow: 0 0 0 3px rgba(129, 65, 151, 0.2);
}
.comming-soon .container .main-content .left-section .email-form .submit-btn {
  padding: 15px 30px;
  background: var(--btn-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  font-family: inherit;
}
.comming-soon .container .main-content .left-section .email-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--dropdown-hover);
}
.comming-soon .container .main-content .left-section .success-msg {
  display: none;
  color: #10b981;
  font-size: 14px;
  margin-top: 10px;
  background: rgba(16, 185, 129, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
@media (max-width: 968px) {
  .comming-soon .container .main-content .left-section h1 {
    font-size: 32px;
  }
  .comming-soon .container .main-content .left-section .countdown {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .comming-soon .container .main-content .left-section .countdown .flip {
    width: 115px;
    height: 70px;
    perspective: 600px;
  }
  .comming-soon .container .main-content .left-section .countdown .flip .inn {
    font-size: 54px;
    line-height: 70px;
  }
  .comming-soon .container .main-content .left-section .countdown .flip::before {
    left: 6px;
    width: 5px;
    height: 5px;
    box-shadow: 98px 0 0 0 radial-gradient(circle, #555, #222), 0 0 2px rgba(0, 0, 0, 0.5), 98px 0 2px rgba(0, 0, 0, 0.5);
  }
  .comming-soon .container .main-content .left-section .countdown .countdown-label {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .comming-soon .container .main-content .left-section .flip {
    width: 70px !important;
  }
  .comming-soon .container .main-content .left-section .flip .inn {
    font-size: 35px;
  }
  .comming-soon .container .main-content .left-section .email-form {
    flex-direction: column;
  }
  .comming-soon .container .main-content .left-section .email-form .email-input {
    margin-bottom: 10px;
  }
  .comming-soon .container .main-content .left-section .email-form .submit-btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes turn {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
    opacity: 0.8;
  }
}
@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes turn2 {
  0% {
    transform: rotateX(90deg);
    opacity: 0.8;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay .modal-content {
  position: relative;
  background: var(--dropdown-bg);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.modal-overlay .modal-content .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 28px;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-overlay .modal-content .modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.modal-overlay .modal-content .modal-icon {
  font-size: 60px;
  margin-bottom: 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay .modal-content h2 {
  color: var(--modal-color);
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}
.modal-overlay .modal-content p {
  color: var(--modal-color);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}
.modal-overlay .modal-content .modal-btn {
  padding: 12px 30px;
  background: var(--btn-gradient);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}
.modal-overlay .modal-content .modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--dropdown-hover);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */