/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fb;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 32px;
  gap: 20px;
}

.logo img {
  height: 58px;
  display: block;
}

/* ================= NAVIGATION ================= */
nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

nav a {
  color: #1f2f86;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #144a9a, #8b0000);
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ================= BUTTON ================= */
.btn-header {
  background: linear-gradient(135deg, #8b0000, #d32222);
  color: white;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(139, 0, 0, 0.28);
  transition: 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 0, 0, 0.38);
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
  display: none;
}


/* ================= BANNER ================= */
/* ================= BANNER ================= */
.about-banner {
  position: relative;
  width: 100%;
  height: 1000px;
  min-height: 1000px;
  overflow: hidden;
}

.about-banner .banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-video {
  display: block;
  z-index: 0;
}

.mobile-video {
  display: none;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
}

/* ================= COMMERCIAL LAND DETAILS ================= */
.land-details-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f8f6f2 0%, #f1ece5 100%);
}

.land-details-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.land-intro-card {
  background: #ffffff;
  padding: 42px 38px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(140, 0, 1, 0.08);
}

.land-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8c0001;
  margin-bottom: 16px;
}

.land-intro-card h2 {
  font-size: 66px;
  line-height: 1;
  color: #1f1f1f;
  margin-bottom: 20px;
  font-weight: 700;
}

.land-intro-card h2 span {
  display: block;
  font-size: 84px;
  color: #8c0001;
}

.land-intro-text {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  max-width: 580px;
}

.land-quote-card {
  background: linear-gradient(135deg, #111111 0%, #1d1d1d 100%);
  color: #ffffff;
  padding: 42px 38px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.land-quote-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.quote-number {
  font-size: 72px;
  font-weight: 800;
  color: #ffcf70;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.land-quote-card p {
  font-size: 28px;
  line-height: 1.45;
  font-weight: 500;
  color: #f4f4f4;
  position: relative;
  z-index: 1;
}

.info-card {
  background: #ffffff;
  padding: 34px 32px;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  font-size: 28px;
  color: #8c0001;
  margin-bottom: 22px;
  font-weight: 700;
  position: relative;
}

.info-card h3::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  background: #8c0001;
  margin-top: 10px;
  border-radius: 3px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card ul li {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.info-card p {
  font-size: 17px;
  line-height: 1.95;
  color: #444;
}

.why-card {
  background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
  border: 1px solid rgba(140, 0, 1, 0.08);
}

/* ================= GALLERY ================= */
.land-gallery-section {
  padding: 20px 20px 100px;
  background: linear-gradient(180deg, #f1ece5 0%, #f8f9fb 100%);
}

.land-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-heading {
  margin-bottom: 28px;
}

.gallery-mini-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8c0001;
  margin-bottom: 10px;
}

.gallery-heading h2,
.map-heading h2 {
  font-size: 42px;
  color: #1c1c1c;
  font-weight: 700;
}

.land-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 250px;
  gap: 18px;
  margin-bottom: 55px;
}

.gallery-large {
  grid-row: span 2;
}

.land-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

/* ================= MAP + FORM LAYOUT ================= */
.map-form-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

/* MAP */
.map-embed-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.map-embed-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

/* BUTTON */
.map-open-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #ffffff;
  color: #1a73e8;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* FORM CARD */
.enquiry-form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-form-card h3 {
  font-size: 26px;
  color: #8c0001;
  margin-bottom: 10px;
}

.enquiry-form-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* FORM INPUTS */
.enquiry-form-card input,
.enquiry-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.enquiry-form-card textarea {
  resize: none;
  height: 90px;
}

/* BUTTON */
.enquiry-form-card button {
  background: linear-gradient(135deg, #8c0001, #c62828);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.enquiry-form-card button:hover {
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .map-form-wrapper {
    grid-template-columns: 1fr;
  }

  .map-embed-card iframe {
    min-height: 400px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .land-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: auto;
    height: 300px;
  }

  .gallery-heading h2,
  .map-heading h2 {
    font-size: 34px;
  }

  .map-embed-card iframe {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .land-gallery-section {
    padding: 20px 15px 70px;
  }

  .land-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-large {
    grid-column: auto;
    height: 220px;
  }

  .gallery-heading h2,
  .map-heading h2 {
    font-size: 28px;
  }

  .map-open-btn {
    top: 12px;
    left: 12px;
    font-size: 15px;
    padding: 10px 14px;
  }

  .map-open-btn span {
    font-size: 15px;
  }

  .map-embed-card {
    border-radius: 18px;
  }

  .map-embed-card iframe {
    height: 380px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #292929;
  color: #ffffff;
  padding-top: 55px;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 20px 45px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff7c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff7c5;
  padding-left: 4px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-info li {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.15);
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {
  header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9999;
  }

  .header-flex {
    height: 65px;
    padding: 0 12px;
  }

  .logo img {
    height: 45px;
  }

  nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  nav a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 16px;
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav.show {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    color: #8b0000;
    cursor: pointer;
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .about-banner {
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .land-details-container {
    grid-template-columns: 1fr;
  }

  .land-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-large {
    grid-row: auto;
    grid-column: auto;
  }

  .gallery-large,
  .gallery-small {
    height: 260px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {
  header {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  .header-flex {
    height: 60px;
  }

  .logo img {
    height: 40px;
  }

  .menu-toggle {
    font-size: 24px;
  }

  .about-banner {
    aspect-ratio: 4 / 5;
  }

  .land-details-section {
    padding: 60px 15px;
  }

  .land-intro-card,
  .land-quote-card,
  .info-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .land-intro-card h2 {
    font-size: 40px;
  }

  .land-intro-card h2 span {
    font-size: 54px;
  }

  .land-intro-text,
  .info-card ul li,
  .info-card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .land-quote-card p {
    font-size: 18px;
    line-height: 1.6;
  }

  .quote-number {
    font-size: 46px;
  }

  .info-card h3 {
    font-size: 22px;
  }

  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-large,
  .gallery-small {
    height: 220px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
