* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 100;
}
/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
}
/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.nav-links a:hover {
  color: #0073e6;
  transform: translateY(-2px);
}
/* Book button */
.book-btn {
  padding: 10px 20px;
  background-color: #0073e6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}
.book-btn a{
  color: white;
}
.book-btn:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 65px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 220px;
    border-left: 1px solid #e0e0e0;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.08);
    display: none;
    border-radius: 0 0 8px 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Transform hamburger into X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
/* Smooth transition for navbar */
.navbar, .nav-links, .book-btn, .nav-links a {
  transition: all 0.3s ease;
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("./assets/310b938a7c552b968798e04010e4d219.jpg") center/cover no-repeat;
  height: 50vh;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
}
/* Hero content */
.contact-hero .hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
}
/* Typography */
.contact-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact-hero p {
  font-size: 1rem;
  color: #f0f0f0;
  line-height: 1.5;
  margin-bottom: 0;
}
/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 30px 15px;
  }

  .contact-hero h1 {
    font-size: 1.6rem;
  }

  .contact-hero p {
    font-size: 0.95rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 80px 2%;
  background-color: #f9f9f9;
  font-family: 'Poppins', Arial, sans-serif;
}
.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr; 
  gap: 40px;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1px;
}
.contact-cards-grid .card.card-map {
  grid-column: 1 / -1;
  margin-top: 20px;
}
.contact-cards-grid .card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.contact-cards-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.card-icon {
  font-size: 28px;
  color: #0073e6;
  margin-bottom: 10px;
}
.contact-cards-grid .card h4 {
  font-size: 1.25rem;
  color: #0073e6;
  margin-bottom: 5px;
}
.contact-cards-grid .card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}
.card.card-map iframe {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  padding: 1px;
}
.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  min-height: 50px;
}
.contact-form button {
  padding: 12px;
  background-color: #0073e6;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form button:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,91,181,0.3);
}
/* Responsive */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-cards-grid .card.card-map {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-section {
    padding: 60px 15px;
  }
}
.footer {
  background: linear-gradient(180deg, #222, #111);
  color: #fff;
  padding: 60px 8% 20px 8%;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 12px;
}
.footer p, .footer a, .footer li {
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a:hover {
  color: #0073e6;
  transition: color 0.3s ease;
}
.footer-social .social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 24px; /* increase size for visibility */
  color: #ccc;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social .social-icons a:hover {
  transform: scale(1.3);
  color: #0073e6;
}
.footer-social .social-icons a.facebook:hover {
  color: #3b5998;
}
.footer-social .social-icons a.twitter:hover {
  color: #1da1f2;
}
.footer-social .social-icons a.linkedin:hover {
  color: #0077b5;
}
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #444;
  margin-top: 30px;
  color: #aaa;
}
.footer-bottom .footer-credit {
  color: #aaa;
  font-size: 0.85rem;
  margin-top: 6px;
}
/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    justify-content: space-around;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 15px 20px 15px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}