/* Base Reset and Core */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #f5f8ff, #e1ecfb);
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout Containers */
header, footer {
  background: #0b1f4b;
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}

main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease-in-out;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 4rem;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd700;
}

/* Headings */
h1, h2, h3 {
  color: #0b1f4b;
  margin-bottom: 1rem;
}

/* Call to Action Box */
.cta {
  background: linear-gradient(135deg, #ffe259, #ffa751);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #111;
  margin-top: 2rem;
}

.cta a {
  color: #0b1f4b;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta a:hover {
  text-decoration: underline;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea, button {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  background: #0b1f4b;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #142a6c;
}

/* Location Cards */
.location-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

/* Footer Icons */
footer .social-icons {
  margin-top: 1rem;
}

footer .social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

footer .social-icons a:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  main {
    padding: 1.5rem;
  }
}
