/* --- Event Gallery Section Responsive Styles --- */
.event-gallery-section {
  margin: 40px 0 32px 0;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(42, 78, 126, 0.08);
  padding: 28px 18px 18px 18px;
}
.event-gallery-section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: #1c1e27;
  letter-spacing: 0.02em;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.event-gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(42, 78, 126, 0.10);
  background: #f4f8ff;
  transition: transform 0.18s, box-shadow 0.18s;
}
.event-gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(42, 78, 126, 0.18);
}
@media (max-width: 600px) {
  .event-gallery-section {
    padding: 16px 4vw 12px 4vw;
  }
  .event-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .event-gallery-grid img {
    height: 110px;
  }
}
/* --- Property Info & Agent Fees Icon Row --- */
.property-info-card-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.icon-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.property-info-icon, .agent-fees-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.property-info-card-flex h3 {
  margin: 0;
  font-size: 1.25rem;
}
/* --- Featured Projects Image Sizing --- */
.featured-property-img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto 12px auto;
  background: #f4f8ff;
  box-shadow: 0 2px 8px rgba(42, 78, 126, 0.08);
}
/* Ensure overlay is always above thumbnail image */
.gallery-thumb {
  position: relative;
}
.gallery-thumb img {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.gallery-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  pointer-events: none;
  letter-spacing: 0.04em;
  z-index: 2;
}
/* Animated spinner for property loading */
/* Custom blue image loading spinner */
/* Centered loading spinner and text */
.property-loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  width: 100%;
  padding: 24px 0;
  position: relative;
  z-index: 10;
}
.property-loading-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 100%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.property-loading-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px #00bfffcc);
  margin: 0 auto;
  align-content: center;;
}
.property-loading-text {
  color: #00bfff;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 12px #001a33cc;
  text-align: center;
}
* {
  box-sizing: border-box;
}

:root {
  --brand-dark: rgba(11, 29, 58, 0.95);
  --brand-light: rgba(11, 29, 58, 0.95);
  --page-bg: rgba(242, 245, 251, 0.85);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1c1e27;
  background: linear-gradient(120deg, var(--brand-dark) 0%, var(--page-bg) 35%, var(--page-bg) 65%, var(--brand-light) 100%);
  background-attachment: fixed;
  line-height: 1.5;
}


.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 16px 40px;
}

.navbar {
  background-color: #0b1d3a;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.logo img {
  height: 120px;
  width: 200px;
  max-width: 180px;
  object-fit: contain;
}

.menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.menu li a,
.dropdown-label {
  color: #f7f8fc;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.04em;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.menu > li > a,
.menu > li > .dropdown-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.dropdown-label {
  padding: 0 4px;
}

.menu li {
  position: relative;
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b1d3a;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  z-index: 1000;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content li a {
  display: block;
  color: #f7f8fc;
  padding: 10px 14px;
  font-weight: 500;
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.dropdown-content li a:hover,
.dropdown-content li a:focus-visible {
  background: rgba(242, 178, 0, 0.2);
  color: #fff;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}

.menu li a:hover,
.menu li a:focus-visible {
  color: #f2b200;
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: #f7f8fc;
  font-size: 28px;
  cursor: pointer;
  padding: 6px;
}

.headerClass {
  background: linear-gradient(135deg, #0b363a 0%, #162b61 58%, #2b4a98 100%);
  border-radius: 14px;
  margin: 22px 0;
  padding: 48px 30px;
  color: #fff;
  min-height: 300px;
  display: grid;
  place-content: center;
  box-shadow: 0 8px 24px rgba(15, 28, 58, 0.35);
}

.headerClass h1 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
}

.headerClass-subtitle {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #dbe6ff;
  opacity: 0.95;
}

.headerClass p {
  margin: 0 0 18px;
  max-width: 700px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.headerClass {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  align-items: stretch;
  gap: 22px;
}

.headerClass-copy {
  align-self: center;
}

.slider {
  border: 1px solid rgba(219, 230, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.2), rgba(207, 220, 255, 0.15));
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(3px);
}

.slides {
  position: relative;
  min-height: 220px;
}

.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}

.dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dot.active {
  background: #f4b400;
  transform: scale(1.2);
}

.btn-primary {
  display: inline-block;
  background: #f4b400;
  color: #0b1d3a;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(244, 180, 0, 0.35);
}

.features,
.panel {
  background: rgba(255, 255, 255, 0.77);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 3px 12px rgba(20, 34, 58, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.project {
  background: transparent;
  box-shadow: none;
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.card,
.project-item {
  border: 1px solid #e2e8f2;
  border-radius: 10px;
  padding: 16px;
  background: #fbfdff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.project-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(42, 78, 126, 0.14);
}

.card h3,
.project-item h4 {
  margin: 0 0 8px;
}

.project-item h4 {
  min-height: 2.7em;
  line-height: 1.35;
}


/* Horizontal layout for index.html featured projects */
.project-grid.index-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
  align-items: stretch;
  min-height: unset;
}

.project-grid.loaded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  align-items: stretch;
  min-height: unset;
}

.project-grid-paged {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.project-toolbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.project-toolbar input,
.project-toolbar select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d3dbeb;
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #fff;
}

.project-toolbar .btn-primary {
  border: 0;
  cursor: pointer;
  padding: 0.68rem 1rem;
}

.project-results {
  margin: 0 0 12px;
  font-weight: 600;
  color: #1f3657;
}

.property-page-nav {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.property-page-button {
  min-width: 34px;
  height: 34px;
  border: 1px solid #c2cfe3;
  border-radius: 18px;
  background: #edf2fb;
  color: #1f3657;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.property-page-button:hover,
.property-page-button:focus-visible {
  transform: translateY(-1px);
}

.property-page-button.active {
  background: #0b1d3a;
  border-color: #0b1d3a;
  color: #ffffff;
}

.service-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-card-title h3 {
  margin: 0;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.inventory {
  background: #e8f8f0;
  color: #118450;
}

.service-icon.custom {
  background: #edf2ff;
  color: #3455b8;
}

.service-icon.website {
  background: #fff2e8;
  color: #c56a24;
}

.service-card p {
  margin: 0 0 12px;
  line-height: 1.75;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.service-card li {
  line-height: 1.65;
}

.service-features {
  grid-template-columns: 1fr;
  gap: 14px;
}

.partner-portfolio-dropdown {
  margin: 16px 0 20px;
  padding: 12px 14px;
  border: 1px solid #d7e0ef;
  border-radius: 10px;
  background: #f9fbff;
}

.partner-portfolio-dropdown summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b1d3a;
}

.partner-portfolio-dropdown p {
  margin: 10px 0;
}

.partner-portfolio-dropdown ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.partner-portfolio-dropdown li {
  line-height: 1.6;
}

.partner-portfolio-gallery {
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.partner-portfolio-image-card {
  margin: 0;
  border: 1px solid #dbe4f2;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(19, 41, 74, 0.08);
}

.partner-portfolio-image-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.partner-portfolio-image-card figcaption {
  padding: 9px 11px;
  font-weight: 600;
  color: #1f3657;
}

.project-spec {
  margin-top: 10px;
  padding: 10px;
  background: #f7faff;
  border: 1px solid #dbe6f2;
  border-radius: 8px;
}

.project-spec h5 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.project-spec p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #475c7a;
}

.project-spec ul {
  margin: 0;
  padding-left: 18px;
  color: #2a3b57;
}

.project-spec li {
  line-height: 1.5;
  margin-bottom: 3px;
}

.project-spec li:last-child {
  margin-bottom: 0;
}

.image-watermark {
  position: relative;
  overflow: hidden;
}

.image-watermark::after {
  content: attr(data-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}

.copy-protected-image {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.lightbox.image-watermark::after {
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.35);
}

.project-carousel .carousel {
  position: relative;
  border: 1px solid #c9d4e7;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.project-carousel .carousel-slide {
  text-align: center;
  padding: 8px;
}

.project-carousel .carousel-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin: 0 auto 8px;
}

.project-carousel .carousel-slide {
  min-height: 320px;
}

.project-carousel .carousel-desc {
  margin: 0;
  color: #1f2e4a;
  font-weight: 600;
  font-size: 0.95rem;
}

.project-carousel .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(11, 29, 58, 0.8);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: background 0.2s ease;
}

.project-carousel .carousel-control:hover {
  background: rgba(11, 29, 58, 1);
}

.project-carousel .carousel-control.prev {
  left: 8px;
}

.project-carousel .carousel-control.next {
  right: 8px;
}

.project-carousel .carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.project-carousel .carousel-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a7b7d2;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.project-carousel .carousel-pagination span.active {
  background: #0b1d3a;
  transform: scale(1.2);
}

.about h2,
.project h2,
.contact h2 {
  margin-top: 0;
}

.about p,
.project p,
.contact p {
  margin: 0 0 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
  margin: 0;
}

.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d3dbeb;
  border-radius: 8px;
  font-size: 0.95rem;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23919dac'%3E%3Cpath d='M7 8l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 1rem 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d3dbeb;
  border-radius: 8px;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #5d7cd7;
  box-shadow: 0 0 0 3px rgba(92, 140, 223, 0.2);
}

.status {
  min-height: 22px;
  margin: 0;
  color: #0a5e2b;
  font-weight: 600;
}

.footer {
  text-align: center;
  color: #59677c;
  margin-top: 24px;
  font-size: 0.9rem;
}

.footer-partners {
  margin-bottom: 10px;
}

.footer-partners-title {
  display: block;
  font-weight: 700;
  color: #1f3657;
  margin-bottom: 6px;
}

.footer-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-partner-logos img {
  height: 90px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  border: 1px solid #dbe3f1;
}

.property-detail {
  padding-top: 24px;
}

.property-info-card {
  background: #ffffff;
  border: 1px solid #dce4f2;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 20px rgba(20, 34, 58, 0.12);
}

.property-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.property-info-card h1 {
  margin: 0 0 12px;
  color: #0b1d3a;
}

.property-back-button {
  border: 0;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 0.9rem;
  padding: 0.62rem 1.1rem;
}

.property-whatsapp-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-whatsapp-link:hover,
.property-whatsapp-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(37, 211, 102, 0.35);
}

.property-whatsapp-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

#details {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #223654;
  display: grid;
  gap: 8px;
}

#details .detail-row {
  display: grid;
  grid-template-columns: minmax(110px, 165px) 12px 1fr;
  align-items: baseline;
  gap: 4px;
}

#details .detail-label {
  font-weight: 600;
}

#details .detail-colon {
  text-align: center;
  font-weight: 600;
}

#details .detail-value {
  min-width: 0;
}

#details .detail-note {
  font-style: italic;
  color: #35517a;
}

#details .detail-description {
  font-style: normal;
  color: #000000;
}

.property-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #dce4f2;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(20, 34, 58, 0.12);
  margin-bottom: 20px;
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e3e8f4;
  background: #f8fbff;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 540px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 2px;
}

.gallery-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: #7b93c2;
  transform: translateY(-1px);
}

.gallery-thumb.active {
  border-color: #0b1d3a;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 16, 30, 0.88);
  z-index: 1100;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: min(92vw, 1080px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
}

.lightbox-nav,
.lightbox-close {
  border: none;
  color: #fff;
  cursor: pointer;
  background: rgba(11, 29, 58, 0.85);
  transition: background 0.2s ease;
}

.lightbox-nav:hover,
.lightbox-close:hover,
.lightbox-nav:focus-visible,
.lightbox-close:focus-visible {
  background: rgba(11, 29, 58, 1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .headerClass {
    padding: 32px 20px;
    grid-template-columns: 1fr;
  }

  .slider,
  .slides,
  .slide-image {
    min-height: 200px;
  }

  .project-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .property-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbnails {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    padding-right: 0;
  }

  .gallery-thumb {
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .project-toolbar {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0b1d3a;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 20;
  }

  .menu.open {
    display: flex;
  }

  .menu li {
    width: 100%;
    margin: 0;
    padding: 12px 0;
    text-align: center;
  }

  .menu-btn {
    display: block;
  }

  .navbar {
    position: relative;
  }

  .gallery-main img {
    min-height: 280px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  .slider,
  .slides,
  .slide-image {
    min-height: 170px;
  }
}

/* --- About Us Page Modern Styles --- */
.aboutus-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.aboutus-hero {
  background: linear-gradient(90deg, #3ea5ff 0%, #78c2ff 100%);
  padding: 48px 0 32px 0;
  text-align: center;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px rgba(244, 180, 0, 0.08);
  margin-bottom: 32px;
}

.aboutus-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.brand-highlight {
  color: #050402;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.aboutus-taglines {
  margin: 18px 0 24px 0;
}
.aboutus-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b1d3a;
  background: #fffbe6;
  border-radius: 8px;
  padding: 8px 18px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(244,180,0,0.08);
}

.aboutus-mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.aboutus-mission-block, .aboutus-vision-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(20,34,58,0.08);
  padding: 22px 28px;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center;
}
.aboutus-mission-block h3, .aboutus-vision-block h3 {
  color: #000000;
  margin-bottom: 10px;
}

.aboutus-timeline-section {
  margin: 40px 0 32px 0;
  text-align: center;
}
.aboutus-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
}
.timeline-year {
  font-weight: 700;
  color: #000000;
  font-size: 1.15rem;
  min-width: 56px;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  background: #000000;
  border-radius: 50%;
  display: inline-block;
}
.timeline-content {
  background: #fffbe6;
  border-radius: 8px;
  padding: 8px 18px;
  color: #0b1d3a;
  box-shadow: 0 2px 8px rgba(244,180,0,0.08);
}

.aboutus-section {
  margin: 40px 0 32px 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(20,34,58,0.08);
  padding: 32px 24px;
}

.aboutus-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.aboutus-value {
  text-align: center;
  max-width: 220px;
}
.aboutus-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 8px;
}

.aboutus-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.aboutus-service {
  text-align: center;
  max-width: 220px;
}

.aboutus-property-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 24px;
}
.aboutus-property-flex > div {
  min-width: 220px;
  max-width: 340px;
}

.aboutus-event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}
.aboutus-event-item {
  background: #fffbe6;
  color: #0b1d3a;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(244,180,0,0.08);
}

.aboutus-cta {
  text-align: center;
  background: linear-gradient(90deg, #3ea5ff 0%, #78c2ff 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(244,180,0,0.08);
  padding: 36px 24px;
  margin: 48px 0 0 0;
}

@media (max-width: 800px) {
  .aboutus-mission-vision {
    flex-direction: column;
    gap: 18px;
  }
  .aboutus-section, .aboutus-cta {
    padding: 18px 8px;
  }
  .aboutus-property-flex {
    flex-direction: column;
    gap: 18px;
  }
  .aboutus-values-grid, .aboutus-services-list {
    flex-direction: column;
    gap: 18px;
  }
}
/* --- End About Us Page Modern Styles --- */

/* Mobile-friendly dropdown open state */
@media (max-width: 900px) {
  .dropdown-content.open {
    display: block !important;
    position: static;
    box-shadow: none;
    background: #0b1d3a;
    border-radius: 0 0 12px 12px;
    min-width: 100%;
    z-index: 1001;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #0b1d3a;
    border-radius: 0 0 12px 12px;
    min-width: 100%;
    z-index: 1001;
  }
  .dropdown-label {
    width: 100%;
    display: block;
    padding: 12px 0;
    text-align: center;
  }
}

/* --- Deposit Section: 1 card per row --- */
.deposit-section-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.deposit-section-cards .card {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .deposit-section-cards .card {
    max-width: 100%;
  }
}

/* Force 2 cards per row for info-cards-row */
.info-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 18px;
}
@media (max-width: 900px) {
  .info-cards-row {
    grid-template-columns: 1fr;
  }
}