* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* HEADER */
.header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo img {
  height: 60px;
}

.navbar ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.navbar a {
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #0047ab;
}

.btn-nav {
  background: #0047ab;
  color: white !important;
  padding: 10px 18px;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* HERO */
.hero {
  padding: 70px 0;
  background: linear-gradient(to right, #f9fbff, #ffffff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
  color: #0a0a0a;
}

.hero-content p {
  margin: 18px 0;
  font-size: 16px;
  color: #444;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #0047ab;
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #00317a;
}

.btn-secondary {
  border: 2px solid #0047ab;
  color: #0047ab;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  background: #0047ab;
  color: white;
}

.hero-highlights {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.highlight-box {
  background: white;
  border: 1px solid #e6e6e6;
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #333;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.04);
}

.highlight-box i {
  color: #0047ab;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
}

/* SECTIONS */
.section {
  padding: 70px 0;
}

.bg-light {
  background: #f9fbff;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.section-title p {
  margin-top: 10px;
  color: #555;
  font-size: 15px;
}

/* GRID */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  background: white;
  border: 1px solid #eaeaea;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

.card i {
  font-size: 40px;
  color: #0047ab;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* PRICING */
.pricing-card {
  background: white;
  border: 1px solid #eaeaea;
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: #0047ab;
}

.price span {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.pricing-card ul {
  margin-top: 20px;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 14px;
  color: #444;
}

.pricing-card ul li i {
  color: #0047ab;
  margin-right: 8px;
}

.full-btn {
  width: 100%;
  text-align: center;
}

.featured {
  border: 2px solid #0047ab;
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #0047ab;
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* AMENITIES */
.amenity-card {
  background: white;
  border: 1px solid #eaeaea;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.07);
}

.amenity-card i {
  font-size: 28px;
  color: #0047ab;
  margin-bottom: 10px;
}

.amenity-card h4 {
  font-size: 14px;
  font-weight: 600;
}

/* CTA */
.cta {
  padding: 70px 0;
  background: #0047ab;
  color: white;
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
}

.cta-box p {
  margin: 12px 0 25px;
  font-size: 15px;
  opacity: 0.9;
}

/* FOOTER */
.footer {
  background: #0d1b2a;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact i {
  margin-right: 8px;
  color: #4ea1ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 13px;
  color: #cbd5e1;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 75px;
    right: 0;
    background: white;
    width: 100%;
    display: none;
    padding: 20px;
    border-top: 1px solid #eaeaea;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

  .navbar.active {
    display: block;
  }
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  background: white;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive Gallery */
@media(max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 200px;
  }
}

/* ============================= */
/* CONTACT PAGE FINAL CSS */
/* ============================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT SIDE CONTACT INFO */
.contact-info {
  background: #f9fbff;
  border: 1px solid #eaeaea;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  margin-top: 0;
}

.contact-info p {
  color: #555;
  margin-bottom: 25px;
  font-size: 14px;
}

/* INFO BOXES */
.info-box {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #eaeaea;
  background: white;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.04);
}

.info-box i {
  font-size: 22px;
  color: #0047ab;
  margin-top: 4px;
}

.info-box h4 {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #111;
}

.info-box p {
  font-size: 14px;
  margin: 0;
  color: #444;
  line-height: 1.5;
}


/* RIGHT SIDE FORM */
.contact-form {
  background: white;
  border: 1px solid #eaeaea;
  padding: 30px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.06);
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #111;
}

/* FORM GRID */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0047ab;
  box-shadow: 0px 0px 0px 3px rgba(0, 71, 171, 0.12);
}

/* SUCCESS + ERROR MSG */
.success-msg {
  background: #e8fff1;
  border: 1px solid #8ce0b0;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 15px;
  color: #157347;
  font-weight: 600;
  font-size: 14px;
}

.error-msg {
  background: #ffecec;
  border: 1px solid #ffb3b3;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 15px;
  color: #b02a37;
  font-weight: 600;
  font-size: 14px;
}

/* MAP */
.map-box iframe {
  width: 100%;
  border-radius: 16px;
  border: 0;
}

/* RESPONSIVE CONTACT */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 22px;
  }
}
