:root {
  --primary-blue: #001f54;
  --primary-red: #e31e24;
  --light-blue: #0a4d8c;
  --dark-blue: #000d1f;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --bg-overlay: rgba(0, 13, 31, 0.85);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--light-blue) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(227, 30, 36, 0.03) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(227, 30, 36, 0.03) 50%, transparent 52%);
  background-size: 100px 100px;
  opacity: 0.5;
  z-index: 0;
}

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

.logo-container {
  text-align: center;
  padding: 2rem 0;
  animation: fadeInDown 1s ease-out;
}

.logo {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  padding: 3rem 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(227, 30, 36, 0.3);
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  min-width: 120px;
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  background: rgba(227, 30, 36, 0.1);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.about-section,
.contact-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  margin: 3rem 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
  border-radius: 2px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  background: rgba(227, 30, 36, 0.1);
  border: 1px solid rgba(227, 30, 36, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(227, 30, 36, 0.3);
  border-color: var(--primary-red);
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.contact-content {
  text-align: center;
}

.contact-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-numbers {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.contact-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.contact-btn svg {
  width: 24px;
  height: 24px;
}

.footer {
  text-align: center;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  animation: fadeIn 1s ease-out 0.9s both;
}

.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.floating-plane {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  color: var(--primary-red);
  animation: floatAcross 20s linear infinite;
}

.plane-1 {
  top: 20%;
  animation-duration: 25s;
  animation-delay: 0s;
}

.plane-2 {
  top: 50%;
  animation-duration: 30s;
  animation-delay: 5s;
}

.plane-3 {
  top: 70%;
  animation-duration: 35s;
  animation-delay: 10s;
}

@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 fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatAcross {
  0% {
    left: -5%;
    transform: translateX(0) rotate(45deg);
  }
  100% {
    left: 105%;
    transform: translateX(0) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .logo {
    max-width: 200px;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 80px;
    padding: 1rem 1.5rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .about-section,
  .contact-section {
    padding: 2rem 1.5rem;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .contact-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .floating-plane {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .countdown-item {
    min-width: 70px;
    padding: 0.8rem 1rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }
}
