/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #042c36;
  color: #ffffff;
  min-height: 100vh;
}

/* Navigation */
header {
  background-color: #09343e;
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
}

nav a {
  margin-left: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

nav a.active,
nav a:hover {
  color: #1de9b6;
  border-bottom-color: #1de9b6;
}

/* Hero Section (Home Page) */
.hero-section {
  text-align: center;
  padding: 1.5rem 1rem 1.5rem; /* Reduce vertical spacing */
  margin-top: 2rem; /* Pull section closer to top */
}

.logo-image {
  width: 180px;
  height: auto;
  margin-top: 0.5rem;
  margin-bottom: -2rem; /* Reduce spacing below logo */
}


h1 {
  font-size: 2.3rem;
  margin: 0.25rem 0;
}

.tagline {
  margin-top: 0;
  margin-bottom: 1rem;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  background-color: #1eb6a6;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.store-btn:hover {
  background-color: #25c1b7;
}

/* About Section (Home Page) */
.about-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #093f4a;
  border-radius: 8px;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.about-section p {
  font-size: 1rem;
  color: #c7e5eb;
  line-height: 1.5;
}

/* Contact Page */
.contact-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 1rem 3rem;
  background: linear-gradient(135deg, #042c36 40%, #062e38 100%);
  position: relative;
}


.floating-blur-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00ffe54f;
  filter: blur(180px);
  top: 10%;
  left: 5%;
  border-radius: 50%;
  z-index: 0;
}

.contact-card {
  background-color: #083946;
  padding: 3rem 4rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 720px;
  z-index: 1;
}

.contact-card h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #b8d8e2;
}

.contact-card form {
  display: flex;
  flex-direction: column;
}

.contact-card input,
.contact-card textarea {
  background-color: #ffffff;
  color: #000;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-card textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-card button {
  background-color: #1eb6a6;
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-card button:hover {
  background-color: #25c1b7;
}

/* Footer */
footer,
.fixed-footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #ccc;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a {
    margin: 0 0.5rem;
  }

  .logo-image {
    width: 120px;
  }

  .contact-card {
    padding: 2rem;
    max-width: 95%;
  }

  .contact-card h2 {
    font-size: 1.5rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .contact-card input,
  .contact-card textarea,
  .contact-card button {
    font-size: 1rem;
  }

  /* Force full-height layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Success Message */
.success-message {
  background-color: #164b4b;
  color: #a8f4e5;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  border: 1px solid #30d5c8;
  border-radius: 6px;
  font-size: 1rem;
  text-align: center;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

}
