body {
  margin: 0;
  font-family: Arial;
  background: #f5f5f5;
}

header {
  background: #0b2c4d;
  color: white;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  background: url("https://picsum.photos/1200/500") center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
  background-size: cover;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}
  .hero::before {
content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at left center,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}
.header-bg {
  background: rgba(0,0,0,0.40);
  padding: 5px 0;
  height: auto;
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 40px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
.hero p {
  padding: 0 0 10px 0;
  font-size: 18px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.45);
}
.banner-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
   filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}
@media (min-width: 950px) {
  /* main desktop styles */
  .hero {
    color: white;
    padding: 120px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 -203px;
  }

}
.btn {
  background: #ffb703;
  padding: 12px 25px;
  color: black;
  text-decoration: none;
  border-radius: 5px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px;
  background: white;
  text-align: center;
  font-size: 18px;
}

.properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 40px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px #ccc;
}

.card img {
  width: 100%;
  border-radius: 6px;
}

.page-title {
  text-align: center;
  margin: 30px;
}

.contact-form {
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, textarea {
  padding: 10px;
}

.contact-form button {
  background: #0b2c4d;
  color: white;
  border: none;
  padding: 12px;
}

footer {
  background: #0b2c4d;
  color: white;
  text-align: center;
  padding: 20px;
}
/* WHY CHOOSE US */
.why-choose {
  padding: 50px 40px;
  text-align: center;
  background: #fff;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.choose-grid div {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

/* FEATURED SUITES */
.featured {
  padding: 50px 40px;
}

.featured .properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 50px 40px;
  background: #fafafa;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.testi-grid div {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 6px #ddd;
}

.testi-grid p {
  font-style: italic;
  color: #555;
}

.cta {
  text-align: center;
  padding: 40px;
  background: #0b2c4d;
  color: white;
}

.thankyou {
  text-align: center;
  padding: 100px 20px;
  background: #f5f5f5;
}

.thankyou h1 {
  font-size: 48px;
  color: #0b2c4d;
}

.thankyou p {
  font-size: 18px;
  margin: 15px 0;
}
.about, .details, .gallery, .location, .faq {
  padding: 40px;
  text-align: center;
  background: white;
  margin-top: 10px;
}

.details ul {
  list-style: none;
  padding: 0;
}

.details li {
  padding: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
}

.location iframe {
  margin-top: 15px;
}

.faq p {
  text-align: left;
  max-width: 700px;
  margin: 10px auto;
}

.about-modern {
  padding: 60px 40px;
  background: #f8f9fb;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.about-text h2 {
  color: #0b2c4d;
}

.about-text p {
  line-height: 1.7;
  color: #444;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

.accommodation {
  padding: 60px 40px;
  background: white;
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.amenity-card {
  background: #f1f5f9;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.gallery {
  padding: 50px 40px;
  background: #fafafa;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 6px;
}

.location {
  padding: 50px 40px;
  text-align: center;
}

.faq {
  padding: 40px;
  background: white;
}

.faq p {
  max-width: 800px;
  margin: 10px auto;
  text-align: left;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.features {
  background: #0b2c4d;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.features div {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.features div:hover {
  background: #ffb703;
  color: #000;
  transform: translateY(-5px);
}

.features-section {
  padding: 60px 40px;
  background: #f8f9fb;
}

.features-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0b2c4d;
}

.feature-category {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 8px #ddd;
}

.feature-category h3 {
  margin-bottom: 10px;
  color: #0b2c4d;
}

.feature-category ul {
  list-style: none;
  padding-left: 0;
}

.feature-category li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.feature-category li:last-child {
  border-bottom: none;
}

/* TOWNHOUSE FEATURES CARDS */

.townhouse-features {
  padding: 60px 40px;
  background: #f1f5f9;
  text-align: center;
}

.townhouse-features h2 {
  margin-bottom: 30px;
  color: #0b2c4d;
}

.features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ddd;
  text-align: left;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #ccc;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #0b2c4d;
  border-bottom: 2px solid #ffb703;
  padding-bottom: 8px;
}

.feature-card ul {
  list-style: none;
  padding-left: 0;
}

.feature-card li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.feature-card li:last-child {
  border-bottom: none;
}

/* Responsive */

@media (max-width: 1000px) {
  .features-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .features-cards {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  padding: 60px 40px;
  background: #f8f9fb;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-text h2 {
  color: #0b2c4d;
  margin-bottom: 15px;
}

.contact-text p {
  line-height: 1.7;
  color: #444;
}

.email-box {
  margin-top: 15px;
  font-size: 18px;
  background: white;
  padding: 12px;
  border-radius: 8px;
  display: inline-block;
}

.contact-form-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form-box button {
  background: #0b2c4d;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form-box button:hover {
  background: #ffb703;
  color: black;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
.contact-map {
  padding: 50px 40px;
  background: #f1f5f9;
  text-align: center;
}

.map-container {
  max-width: 1100px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #ccc;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 40px;
}

/* Floating logo */
.logo-wrapper {
  position: absolute;
  top: 16px;
  left: 30px;
  z-index: 10;
}

.site-logo {
  background: #ffffff;
  padding: 6px 10px;    /* tighter container */
  border-radius: 5px;   /* less bulky */
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
   width: 180px;
  padding: 4px 8px;
}

/* Nav right */
.header-inner nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
}

/* Nav links */
.header-inner nav a {
  text-decoration: none;
  color: inherit;   /* keep your original color */
  font-weight: 500;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-wrapper {
    top: 10px;
    left: 12px;
  }

  .site-logo {
    width: 160px;
  }

  .header-inner nav {
    gap: 15px;
  }
}


.d-none{
  display: none;
}

.fa-solid {
  margin-right: 8px;
  color: #ffb703;
  font-size: 14px;
}
div:hover .fa-solid {
  color: #0a3a6a;   /* hover color */
}

@media (max-width: 768px) {
  header {
    padding: 15px 15px;   /* height (top/bottom) = 20px */
  }
}