header * { font-weight: 700; }
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f9fafb;
}

.section-accent {
  background: linear-gradient(135deg, #020617, #020617);
  color: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;

  font-weight:700;}

.section-header p {
  color: #6b7280;

  font-weight:700;}

.section-header.light h2,
.section-header.light p {
  color: #e5e7eb;
}

/* HEADER */
.site-header {
   position: sticky;
  top: 0;
  z-index: 50;
  /* background: rgba(255, 255, 255, 0.96); */
  /* backdrop-filter: blur(10px); */
  /* border-bottom: 3px solid #d4af37;  */
      background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.75rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
  color: #0f172a;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: #6b7280;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.93rem;
  color: #4b5563;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #d4af3722;
  color: #0b1f72;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.18rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #0f172a;
}

.header-cta {
  font-size: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0b1f72, #0b1f72);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: #ffffff;
  color: #0b1f72;
  border-color: #d4af37;
}

.btn-outline:hover {
  background: #eff6ff;
}

.full-width {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top left, #0b1f72 0, #020617 55%, #020617 100%);
  color: #f9fafb;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle at 10% 20%, #d4af37aa, transparent 55%),
    radial-gradient(circle at 80% 0%, #0b1f72aa, transparent 55%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  padding: 4rem 0 4.5rem;
}

.hero-text {
  max-width: 560px;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #e5e7eb;
  margin-bottom: 1.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
}

.hero-meta div {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-size: 0.9rem;
}

/* Hero card */
.hero-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.2rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.hero-form .form-group {
  margin-bottom: 0.75rem;
}

.mini-note {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Cards & grids */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.card-footer {
  margin-top: 1.4rem;
}

.card-highlight {
  border-color: #d4af37;
}

.card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #0b1f72;
  color: #f9fafb;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.price {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.price span {
  color: #0f172a;
  font-weight: 600;
}

.feature-list,
.bullet-list {
  list-style: none;
}

.feature-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}

.feature-list li::before,
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0b1f72;
}

/* Amenities */
.amenities-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amenity h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.amenity p {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  border-radius: 0.9rem;
  overflow: hidden;
  min-height: 150px;
}

.gallery-placeholder {
    position: relative;             
    overflow: hidden;               
    background: repeating-linear-gradient(
        -45deg,
        #e5e7eb,
        #e5e7eb 10px,
        #f3f4f6 10px,
        #f3f4f6 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 0.9rem;
    max-height: 190px;
    text-align: center;
}

/* Image inside container */
.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: filter 0.4s ease;
}

/* Overlay styling */
.overlay {
    position: absolute;
    left: 0;
    bottom: -100%;              /* hidden initially */
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    transition: bottom 0.4s ease;
}

/* Hover Effects */
.gallery-placeholder:hover img {
    filter: blur(2px);
}

.gallery-placeholder:hover .overlay {
    bottom: 0; /* slides up */
}
.title-border{
  border-bottom: 3px solid #d7b56d;
  margin: 8px;
}

/* Location */
.location-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  align-items: flex-start;
}

.map-placeholder {
  border-radius: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.85);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #6b7280;
  background: #ffffff;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  align-items: flex-start;
}

.contact-form {
  background: #020617;
  padding: 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #e5e7eb;
}

input,
select,
textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 0.55rem 0.7rem;
  background: rgba(15, 23, 42, 0.95);
  color: #f9fafb;
  font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0b1f72;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.6);
}

.contact-details {
  padding: 1.5rem;
  border-radius: 1.1rem;
  background: rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.contact-details h3 {
  margin-bottom: 0.75rem;
}

.contact-list {
  list-style: none;
  font-size: 0.9rem;
}

.contact-list li + li {
  margin-top: 0.6rem;
}

.contact-list strong {
  font-weight: 600;
}

.note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.note.light {
  color: #9ca3af;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
  color: #9ca3af;
}

.footer-inner {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }
  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .header-inner {
    justify-content: space-between;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 3px solid #d4af37;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 4.25rem;
  }
  .hero-card {
    order: -1;
  }
  .card-grid.three,
  .card-grid.two,
  .amenities-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 80px;
  }
  .logo-title {
    font-size: 0.92rem;
  }
}

.map-iframe {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.9rem;
}


/* Location section background with user image */
.location-grid {
  background: url('assets/location_bg.png') center/cover no-repeat;
  border-radius: 1rem;
  padding: 2rem;
}

.map-placeholder {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}


/* Reframed Location styles for clarity and responsiveness */

/* Reframed Location styles for clarity and responsiveness */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.location-text { padding-right: 0.5rem; }
.section-header.left h2 { font-size: 2.25rem; line-height:1.05; margin-bottom:0.4rem; text-shadow:none; }
.map-placeholder { min-height: 300px; padding: 1rem; background: #fff; border-radius: 0.75rem; border: 1px dashed rgba(148,163,184,0.35); box-shadow:none; }
.map-iframe { width:100%; height:320px; border:0; border-radius:0.6rem; display:block; }
@media (max-width:900px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-iframe { height:260px; }
}




/* Map-only Location section */
.section-location-maponly { padding: 40px 0; }
.map-only-wrap { width: 100%; max-width: 920px; margin: 0 auto; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(15,23,42,0.06); border:1px solid rgba(0,0,0,0.04); }
.map-iframe { width:100%; height:460px; border:0; display:block; }
@media (max-width:800px) {
  .map-iframe { height:300px; }
}


/* Bold enhancements for plan framing */
.plan-card h3 { 
    font-weight: 800 !important;
    color: #0a1a3a;
}

.plan-card .price { 
    font-weight: 800 !important;
    color: #000;
}

.plan-card ul li { 
    font-weight: 600 !important;
}

.plan-card p {
    font-weight: 600 !important;
}
