* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  justify-content: space-between;
  background: #fff;
  position: relative;
}

/* LOGO LEFT */
.logo {
  font-size: 22px;
  color: #b36a4c;
}

/* CENTER CALL (IMPORTANT FIX) */
.call-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #b36a4c;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 2;
  font-size: 13px;
}
.logo {
  z-index: 2; /* Logo upar rakho */
  font-size: 20px;
}
.logo img {
  height: 60px; /* Yeh adjust karo apne hisaab se */
  width: auto;
  object-fit: contain;
}

/* RIGHT HAMBURGER */
.hamburger {
  z-index: 2;
  display: block;
  cursor: pointer;
  color: black;
  font-size: 28px;
}

/* MENU */
#mobileMenu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  flex-direction: column;
  text-align: center;
  z-index: 999;
}

#mobileMenu a {
  padding: 15px;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: #000;
}

#mobileMenu.active {
  display: flex !important;
}

/* DESKTOP */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  #mobileMenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    background: none;
    top: auto;
  }

  #mobileMenu a {
    border: none;
    margin: 0 10px;
    color: #000;
    font-weight: 600;
  }

  .call-btn {
    position: static;
    transform: none;
  }
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.logo {
  font-size: 28px;
  color: #b36a4c;
}

.call-btn {
  background: #b36a4c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url("IMG/banner_img.jpeg") center/cover no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}

/* LEFT CONTENT */
.hero-content {
  position: relative;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.location {
  background: #b36a4c;
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 10px;
}

.price {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
}

/* FORM */
.form-box {
  position: relative;
  width: 350px;
  background: #9c5a3e;
  padding: 25px;
  border-radius: 15px;
}

.form-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
}

.form-box button {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #9c5a3e;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.note {
  font-size: 12px;
  margin-top: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    min-height: 60px;
  }

  .navbar nav {
    margin: 10px 0;
  }

  .navbar nav a {
    display: block;
    margin: 5px 0;
  }

  .call-btn {
    margin-top: 10px;
  }
  .logo img {
    height: 40px;
    width: auto;
  }
  .hamburger {
    font-size: 34px;
  }

  /* HERO FIX */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .subtitle {
    font-size: 16px;
  }

  .features {
    font-size: 14px;
  }

  /* FORM MOBILE */
  .form-box {
    width: 100%;
    margin-top: 20px;
  }
}

/* ____________________________ */
/* ===== INFO BAR ===== */
.info-bar {
  background: #fff;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  margin: 20px 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  flex-wrap: wrap;
}

.info-left h2 {
  font-size: 22px;
  color: #222;
  margin-bottom: 4px;
}

.info-location {
  font-size: 13px;
  color: #b36a4c;
  margin-bottom: 14px;
}

.info-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 9px 20px;
  border: 1.5px solid #b36a4c;
  background: transparent;
  color: #b36a4c;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #b36a4c;
  color: #fff;
}

.btn-fill {
  padding: 9px 20px;
  background: #b36a4c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-fill:hover {
  background: #9c5a3e;
}

.info-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  min-width: 130px;
  text-align: center;
}

.info-card.brown {
  background: #9c5a3e;
  color: #fff;
}

.card-label {
  font-size: 11px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.card-value {
  font-size: 15px;
  font-weight: 700;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 30px;
  padding: 10px 60px 60px;
  align-items: start;
}

/* LEFT */
.content-left {
  background: transparent;
  border-radius: 10px;
  padding: 0 0 20px;
  overflow: hidden;
  box-shadow: none;
}

.building-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  object-position: center 10%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.content-left h3 {
  font-size: 20px;
  color: #222;
  padding: 0 20px;
  margin-bottom: 8px;
}

.content-subtitle {
  font-size: 14px;
  color: #b36a4c;
  font-weight: 600;
  padding: 0 20px;
  margin-bottom: 10px;
}

.content-text {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  padding: 0 20px;
  margin-bottom: 14px;
}

/* RIGHT */
.content-right {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-list li {
  background: #f0f0f0;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  color: #333;
  box-shadow: none;
  transition: background 0.2s;
}

.feature-list li:hover {
  background: #fdf0eb;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .info-bar {
    margin: 15px;
    padding: 20px 15px;
    flex-direction: column;
    align-items: flex-start;
  }

  .info-cards {
    width: 100%;
    justify-content: space-between;
  }

  .info-card {
    flex: 1;
    min-width: 90px;
    padding: 10px 8px;
  }

  .main-content {
    grid-template-columns: 1fr;
    padding: 10px 15px 30px;
  }

  .content-right {
    position: static;
  }

  .building-img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .info-cards {
    flex-direction: column;
  }

  .info-card {
    width: 100%;
  }

  .info-left h2 {
    font-size: 18px;
  }
}

/* ENQUIRE SECTION */
.enquire-section {
  padding: 40px;
  background: #f5f5f5;
}

.enquire-title {
  text-align: center;
  font-size: 20px;
  color: #222;
  margin-bottom: 25px;
  font-weight: 700;
}

.enquire-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT IMAGE */
.enquire-img-box {
  border-radius: 16px;
  overflow: hidden;
}

.enquire-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* RIGHT FORM */
.enquire-form-box {
  background: #7d3e22;
  padding: 30px 25px;
  border-radius: 16px;
  color: #fff;
}

.enquire-form-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
}

.input-group {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
  gap: 8px;
}

.input-group input {
  border: none;
  outline: none;
  font-size: 14px;
  color: #333;
  width: 100%;
  background: transparent;
}

.input-icon {
  font-size: 16px;
}
.input-group textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #333;
  width: 100%;
  resize: none;
  font-family: Arial, sans-serif;
}

.phone-prefix {
  font-size: 13px;
  color: #333;
  white-space: nowrap;
}

.divider {
  color: #ccc;
  font-size: 18px;
}

.enquire-btn {
  width: 100%;
  padding: 14px;
  background: #c1714f;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5px;
  transition: background 0.2s;
}

.enquire-btn:hover {
  background: #a85a3a;
}

/* Validation css  */

/* ===== VALIDATION STYLES ===== */
.field-error {
  color: #e53935;
  font-size: 12px;
  margin: -10px 0 8px 15px;
  font-weight: 500;
}

.input-error {
  border: 1.5px solid #e53935 !important;
  background: #fff5f5 !important;
}

/* SHAKE ANIMATION */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-8px);
  }
  30% {
    transform: translateX(8px);
  }
  45% {
    transform: translateX(-6px);
  }
  60% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-4px);
  }
  90% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.5s ease;
}

/* LOADER SPINNER */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

/* INPUT FOCUS SMOOTH */
.input-group,
.modal-input-group {
  transition:
    border 0.2s,
    background 0.2s;
}

/* MOBILE */
@media (max-width: 768px) {
  .enquire-section {
    padding: 20px 15px;
  }

  .enquire-wrapper {
    grid-template-columns: 1fr;
  }

  .enquire-img {
    height: 250px;
  }
}

/* Floor Plan  */
/* FLOOR PLAN SECTION */
.floorplan-section {
  padding: 40px;
  background: #f5f5f5;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.floorplan-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.floorplan-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.plan-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 20px 20px 0;
  background: #fff;
}

.plan-info {
  padding: 20px 25px 25px;
}

.plan-info h3 {
  font-size: 22px;
  color: #222;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-divider {
  border: none;
  border-top: 1.5px solid #c1884f;
  margin-bottom: 12px;
}

.plan-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

.plan-btn {
  width: 100%;
  padding: 14px;
  background: #9c5a3e;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.plan-btn:hover {
  background: #7d3e22;
}

/* MOBILE */
@media (max-width: 768px) {
  .floorplan-section {
    padding: 20px 15px;
  }

  .floorplan-grid {
    grid-template-columns: 1fr;
  }

  .plan-img {
    height: 200px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .floorplan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* AMENITIES SECTION */
.amenities-section {
  background: #7d3e22;
  padding: 50px 40px;
}

.amenities-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.amenities-img-box {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.amenities-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  min-height: 400px;
}

.amenities-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e8a87c;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.amenities-title {
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.amenities-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* AMENITIES GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.amenity-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s;
  cursor: default;
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ami-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .amenities-section {
    padding: 30px 15px;
  }

  .amenities-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .amenities-img {
    min-height: 250px;
  }

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

  .amenities-title {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* Enquire Model  */
/* MODAL OVERLAY */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 570px;
  overflow: hidden;
  padding-bottom: 30px;
}

/* HEADER */
.modal-header {
  background: #b36a4c;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-header h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.modal-close:hover {
  opacity: 1;
}

/* SUBINFO */
.modal-subinfo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 30px;
}

.modal-project p {
  font-size: 14px;
  color: #333;
  text-align: right;
  line-height: 1.6;
}

.modal-divider {
  width: 1px;
  height: 45px;
  background: #ccc;
}

.modal-launch {
  display: flex;
  flex-direction: column;
}

.launch-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.launch-city {
  font-size: 20px;
  font-weight: 700;
  color: #b36a4c;
}

/* INPUTS */
.modal-input-group {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 25px 15px;
  gap: 12px;
}

.modal-input-group input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #333;
  width: 100%;
}

.modal-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.modal-prefix {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid #ccc;
  padding-right: 12px;
}

/* CONSENT */
.modal-consent {
  font-size: 13px;
  color: #666;
  padding: 0 25px 20px;
  line-height: 1.6;
}

.modal-consent a {
  color: #2979ff;
  text-decoration: none;
}

.modal-consent a:hover {
  text-decoration: underline;
}

/* SUBMIT BTN */
.modal-submit-btn {
  width: calc(100% - 50px);
  margin: 0 25px;
  padding: 18px;
  background: #b36a4c;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-submit-btn:hover {
  background: #9c5a3e;
}

/* ===== FOOTER ===== */
.footer {
  background: #2c1810;
  color: #e8d5c4;
  padding: 60px 0 0;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 40px;
}

/* BRAND */
.footer-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: #b36a4c;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  color: #a89080;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(179, 106, 76, 0.2);
  border: 1px solid rgba(179, 106, 76, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.social-btn:hover {
  background: #b36a4c;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #b36a4c;
  display: inline-block;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #a89080;
  font-size: 13.5px;
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: #e8a87c;
  padding-left: 5px;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-item span {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item p {
  font-size: 13.5px;
  color: #a89080;
  line-height: 1.6;
}

.contact-item a {
  color: #a89080;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #e8a87c;
}

.footer-enquire-btn {
  margin-top: 8px;
  padding: 11px 28px;
  background: #b36a4c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-enquire-btn:hover {
  background: #9c5a3e;
}

/* DIVIDER */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(179, 106, 76, 0.25);
  margin-bottom: 25px;
}

/* DISCLAIMER */
.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  border-left: 3px solid #b36a4c;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: #7a6055;
  line-height: 1.7;
}

.footer-disclaimer strong {
  color: #a89080;
}

/* BOTTOM */
.footer-bottom {
  background: #1a0e08;
  margin: 0 -40px;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #6b5045;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  color: #6b5045;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom-links span {
  color: #4a3025;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-wrapper {
    padding: 0 15px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    margin: 0 -15px;
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Location advantages  */
/* ===== LOCATION SECTION ===== */
.location-section {
  background: #f9f5f2;
  padding: 60px 40px;
}

.location-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.location-header {
  text-align: center;
  margin-bottom: 40px;
}

.location-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b36a4c;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.location-header h2 {
  font-size: 32px;
  color: #2c1810;
  font-weight: 700;
  margin-bottom: 8px;
}

.location-subtitle {
  font-size: 15px;
  color: #888;
}

/* MAIN CONTENT */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  align-items: stretch;
}

/* MAP */
.location-map {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* CATEGORIES */
.location-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-category {
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #b36a4c;
}

.loc-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.loc-cat-icon {
  font-size: 20px;
}

.loc-cat-title h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2c1810;
}

.loc-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed #f0e8e2;
}

.loc-item:last-child {
  border-bottom: none;
}

.loc-name {
  font-size: 13px;
  color: #555;
}

.loc-dist {
  font-size: 12px;
  font-weight: 700;
  color: #b36a4c;
  background: #fdf0eb;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* HIGHLIGHT CARDS */
.loc-highlights {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.loc-highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid #b36a4c;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.loc-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(179, 106, 76, 0.15);
}

.highlight-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.highlight-val {
  font-size: 15px;
  font-weight: 700;
  color: #2c1810;
  line-height: 1.2;
}

.highlight-label {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .location-section {
    padding: 40px 15px;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 280px;
  }
  .location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
  }

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

  .location-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .loc-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery section  */

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: #fff;
  padding: 60px 40px;
}

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

/* HEADER */
.gallery-header {
  text-align: center;
  margin-bottom: 35px;
}

.gallery-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b36a4c;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-header h2 {
  font-size: 32px;
  color: #2c1810;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-subtitle {
  font-size: 15px;
  color: #999;
}

/* FILTER TABS */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  border: 1.5px solid #ddd;
  background: transparent;
  color: #555;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-btn:hover {
  border-color: #b36a4c;
  color: #b36a4c;
}

.filter-btn.active {
  background: #b36a4c;
  border-color: #b36a4c;
  color: #fff;
}

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 24, 16, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  font-size: 28px;
  transform: scale(0.7);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

.gallery-overlay p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* HIDDEN ITEM */
.gallery-item.hidden {
  display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 90vw;
  flex-direction: column;
}

#lightboxImg {
  max-width: 85vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#lightboxCaption {
  color: #e8d5c4;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: rgba(179, 106, 76, 0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 3;
}

.lightbox-close:hover {
  background: #b36a4c;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(179, 106, 76, 0.8);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 3;
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #b36a4c;
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .gallery-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}
