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

body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #e0f7ff 0%,
    #ffffff 30%,
    #f0fdf4 70%,
    #e0f7ff 100%
  );
  position: relative;
  overflow-x: hidden;
}

.font-arabic {
  font-family: "Noto Sans Arabic", sans-serif;
  direction: rtl;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

/* Enhanced background decorative elements */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #17a2b8, #8bc34a);
  opacity: 0.08;
  filter: blur(1px);
}

.bg-decoration-1 {
  top: -8rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  animation: float 4s ease-in-out infinite;
}

.bg-decoration-2 {
  bottom: -10rem;
  left: -10rem;
  width: 25rem;
  height: 25rem;
  animation: float 4s ease-in-out infinite 1.5s;
}

.bg-decoration-3 {
  top: 60%;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(
    135deg,
    rgba(139, 195, 74, 0.1),
    rgba(23, 162, 184, 0.1)
  );
  animation: float 5s ease-in-out infinite 0.8s;
}

.bg-decoration-4 {
  top: 20%;
  left: -3rem;
  width: 15rem;
  height: 15rem;
  background: linear-gradient(
    135deg,
    rgba(23, 162, 184, 0.05),
    rgba(139, 195, 74, 0.05)
  );
  animation: float 6s ease-in-out infinite 2s;
}

/* Enhanced animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(23, 162, 184, 0.3);
  }
  50% {
    box-shadow:
      0 0 30px rgba(23, 162, 184, 0.5),
      0 0 40px rgba(139, 195, 74, 0.3);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.7s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.7s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Header styles */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo-bg {
  background: linear-gradient(135deg, #17a2b8, #8bc34a);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.08);
  transform: perspective(1000px) rotateX(5deg);
}

.logo-icon {
  width: 4rem;
  height: 4rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.main-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-best {
  background: linear-gradient(135deg, #17a2b8, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-med {
  color: #17a2b8;
}

.subtitle-arabic {
  color: #4a5568;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.subtitle-english {
  color: #2d3748;
  font-size: 1.125rem;
  font-weight: 400;
}

/* Exhibition Section */
.exhibition-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.exhibition-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 162, 184, 0.1),
    transparent
  );
  animation: shimmer 3s infinite;
}

.exhibition-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.exhibition-main-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #17a2b8, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.exhibition-subtitle {
  font-size: 1.5rem;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.exhibition-description {
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.exhibition-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .exhibition-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .exhibition-details {
    grid-template-columns: repeat(4, 1fr);
  }
}

.detail-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(23, 162, 184, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 162, 184, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.detail-card:hover::before {
  left: 100%;
}

.detail-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #17a2b8;
  box-shadow: 0 20px 40px rgba(23, 162, 184, 0.2);
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.detail-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.detail-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a202c;
  position: relative;
  z-index: 2;
}

.detail-content {
  color: #4a5568;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.detail-content-arabic {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.detail-content-english {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Transportation Section */
.transportation-section {
  background: linear-gradient(
    135deg,
    rgba(139, 195, 74, 0.1),
    rgba(23, 162, 184, 0.05)
  );
  border-radius: 1.5rem;
  padding: 2rem;
  margin: 2rem 0;
  border: 2px solid rgba(139, 195, 74, 0.2);
  position: relative;
  z-index: 2;
}

.transportation-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.transportation-content {
  text-align: center;
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.1rem;
}

.transportation-highlight {
  background: rgba(139, 195, 74, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #2d3748;
}

/* Coming Soon Section */
.coming-soon-section {
  text-align: center;
  margin: 3rem 0;
}

.coming-soon-arabic {
  font-size: 3.5rem;
  font-weight: bold;
  color: #8bc34a;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
}

.coming-soon-english {
  font-size: 2.5rem;
  font-weight: bold;
  color: #17a2b8;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 3px;
}

.heart-activity-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.heart-icon,
.activity-icon {
  width: 2.5rem;
  height: 2.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.heart-icon {
  color: #ef4444;
}

.activity-icon {
  color: #17a2b8;
}

.description-text {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.12),
    0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon-bg {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
}

.feature-title {
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-subtitle {
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact section */
.contact-section {
  margin-top: auto;
}

.contact-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.contact-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(23, 162, 184, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #17a2b8, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: start;
  }
}

.contact-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-icon-container {
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 2rem;
  height: 2rem;
}

/* Phone number layout */
.phone-section {
  position: relative;
}

.phone-numbers-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .phone-numbers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .phone-item:first-child {
    grid-column: 1 / -1;
    transform: scale(1.05);
  }
}

.phone-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1rem;
  border: 2px solid rgba(23, 162, 184, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.phone-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 162, 184, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.phone-item:hover::before {
  left: 100%;
}

.phone-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #17a2b8;
  box-shadow: 0 15px 30px rgba(23, 162, 184, 0.2);
}

.contact-link {
  display: block;
  color: #17a2b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.contact-link:hover {
  color: #138496;
  transform: scale(1.05);
}

.contact-type {
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.email-contact .contact-item {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(139, 195, 74, 0.2);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.email-contact .contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 195, 74, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.email-contact .contact-item:hover::before {
  left: 100%;
}

.email-contact .contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #8bc34a;
  box-shadow: 0 15px 30px rgba(139, 195, 74, 0.2);
}

.email-contact .contact-link {
  color: #8bc34a;
  font-size: 1.1rem;
}

.email-contact .contact-link:hover {
  color: #689f38;
}

.website-contact .contact-item {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(23, 162, 184, 0.2);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.website-contact .contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 162, 184, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.website-contact .contact-item:hover::before {
  left: 100%;
}

.website-contact .contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #17a2b8;
  box-shadow: 0 15px 30px rgba(23, 162, 184, 0.2);
}

.company-description {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(23, 162, 184, 0.1);
  position: relative;
  z-index: 2;
}

.company-text {
  color: #4a5568;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 500;
}

/* Responsive design */
@media (min-width: 768px) {
  .main-title {
    font-size: 5rem;
  }
  .coming-soon-arabic {
    font-size: 4.5rem;
  }
  .coming-soon-english {
    font-size: 3rem;
  }
  .description-text {
    font-size: 1.25rem;
  }
  .exhibition-main-title {
    font-size: 3rem;
  }
  .exhibition-subtitle {
    font-size: 1.75rem;
  }
}

/* Animation delays */
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}
.delay-800 {
  animation-delay: 0.8s;
}
.delay-1000 {
  animation-delay: 1s;
}
.delay-1500 {
  animation-delay: 1.5s;
}
