/* CSS Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Animation */
.background-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #ffffff;
  background: radial-gradient(
      at 0% 0%,
      rgba(0, 174, 239, 0.15) 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 0%, rgba(46, 49, 146, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 174, 239, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(46, 49, 146, 0.1) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Main Container */
.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  padding: 48px 32px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Floating Animation */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Logo Area */
.logo-container {
  margin-bottom: 32px;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-placeholder {
  max-width: 180px;
  height: auto;
  object-fit: contain;
  /* Styles for when no image is present to keep layout stability */
  min-width: 100px;
}
/* Fallback if user doesn't upload immediately, clear space */
.logo-placeholder[src=""] {
  display: none;
}

/* Typography */
.headline {
  font-size: 2.5rem; /* Large */
  font-weight: 700; /* Bold */
  color: #0d1b2a; /* Dark Navy Blue approximation */
  margin-bottom: 16px;
  line-height: 1.2;
}

.subheadline {
  font-size: 1.125rem;
  color: #666; /* Medium gray */
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}

/* Emergency Button */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #00aeef 0%, #2e3192 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
  margin-bottom: 32px;
  width: 100%;
  max-width: 320px;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 49, 146, 0.4);
}

.whatsapp-button:active {
  transform: translateY(0px);
}

/* Secondary Info */
.secondary-info {
  font-size: 0.875rem;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-link {
  color: #00aeef;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: #2e3192;
  text-decoration: underline;
}

.phone-text {
  font-weight: 500;
  color: #333;
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px;
  font-size: 0.75rem;
  color: #888;
  background: transparent;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .headline {
    font-size: 2rem;
  }

  .glass-card {
    padding: 32px 20px;
    margin: 0 16px;
  }
}
