/* === RESET DEFAULTS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
  max-width: 100%;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #D9D9D9;
  color: #333;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

/* === HEADER === */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #00005C;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: top 0.3s ease; /* Smooth hide/show */
}

header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  height: 250px;
  width: auto;
}

header nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header nav a {
  color: #1C4CC7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover,
header nav a.active {
  color: #1e1e1e; /* Accent */
}

.contact-email a {
  color: #ff6f61;
  font-weight: bold;
}

/* === MOBILE BURGER MENU === */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Toggle animation */
.burger.toggle div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.toggle div:nth-child(2) {
  opacity: 0;
}
.burger.toggle div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION (HOME PAGE) === */
#hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0E256E, #1A43C4);
  color: #fff;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
}

/* === SERVICES SECTION === */
#services {
  padding: 3rem 2rem;
  text-align: center;
}

#services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1e1e1e;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card i {
  font-size: 2rem;
  color: #ff6f61;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: #1e1e1e;
}

.service-card p {
  font-size: 0.95rem;
}

/* === FOOTER === */
footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* === BOOKING FORM === */
.booking-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form label {
  font-weight: bold;
  color: #00005C;
}

.booking-form input {
  padding: 0.8rem;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1rem;
}

.booking-form input:focus {
  outline: none;
  border-color: #1C4CC7;
  box-shadow: 0 0 4px rgba(28, 76, 199, 0.5);
}

.btn {
  padding: 0.9rem;
  border: none;
  background-color: #00005C;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-align: center;
}

.btn:hover {
  background-color: #1C4CC7;
}

/* === THANK YOU PAGE === */
main {
  text-align: center;
  padding: 4rem 1rem;
}

main h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00005C;
}

main p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  header nav {
    position: absolute;
    right: 0;
    top: 70px;
    background-color: #1e1e1e;
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: center;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  header nav.nav-active {
    transform: translateX(0);
  }

  .burger {
    display: flex;
  }

  .booking-form {
    margin: 1.5rem;
    padding: 1.5rem;
  }

  header .logo img {
    height: 180px;
  }
}
