:root {
  --bg-navy-darker: #040a14;
  --bg-navy: #0a1a2f;
  --bg-navy-card: rgba(15, 35, 61, 0.82);
  --bg-navy-card-hover: rgba(21, 48, 82, 0.92);

  --gold-primary: #c9a227;
  --gold-light: #e5c158;
  --gold-dark: #997816;
  --gold-gradient: linear-gradient(135deg, #e5c158 0%, #c9a227 50%, #997816 100%);
  --gold-glow: 0 0 20px rgba(201, 162, 39, 0.35);

  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;

  --border-gold: rgba(201, 162, 39, 0.3);
  --border-gold-strong: rgba(201, 162, 39, 0.8);
  --border-glass: rgba(255, 255, 255, 0.1);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --transition-fast: 0.25s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-luxury: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(10, 26, 47, 0.6);
}

/* Global Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-navy-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: 0.3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* Container & Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-darker {
  background-color: var(--bg-navy-darker);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-icon {
  color: var(--gold-primary);
}

.text-center {
  text-align: center;
}

/* Section Header Styling */
.section-header {
  margin-bottom: 3.5rem;
}

.sub-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.gold-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--gold-primary);
}

.gold-ornament::before,
.gold-ornament::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 0 12px;
}

/* Preloader Screen */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.16) 0%, rgba(4, 10, 20, 0.98) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
  backdrop-filter: blur(16px);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
}

.preloader-logo-ring {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 6px;
  background: var(--gold-gradient);
  box-shadow: 0 0 45px rgba(201, 162, 39, 0.5), 0 0 15px rgba(201, 162, 39, 0.3);
  margin-bottom: 1.8rem;
  animation: logoGlowPulse 2.5s ease-in-out infinite alternate;
}

.preloader-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #040a14;
  background: #0a1a2f;
}

.logo-fallback-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0a1a2f;
  border: 3px solid #040a14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gold-primary);
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 3px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.preloader-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 4px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.preloader-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.6rem;
  letter-spacing: 1px;
}

.preloader-bar-wrapper {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.preloader-bar-fill {
  width: 100%;
  height: 100%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px var(--gold-primary);
  border-radius: 10px;
  animation: loadingBarPulse 1.8s ease-in-out infinite;
}

.preloader-loading-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes logoGlowPulse {
  0% {
    transform: scale(0.96);
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.35);
  }

  100% {
    transform: scale(1.04);
    box-shadow: 0 0 55px rgba(201, 162, 39, 0.65);
  }
}

@keyframes loadingBarPulse {
  0% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Top Announcement Bar */
.top-bar {
  background: #030810;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.55rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.divider-dot {
  color: var(--gold-primary);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-contact a:hover {
  color: var(--gold-light);
}

.top-wa {
  color: #25D366 !important;
  font-weight: 600;
}

/* Header & Sticky Navigation */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 26, 47, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(4, 10, 20, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
  line-height: 1;
}

.brand-subname {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1.8px;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.7rem;
  font-style: italic;
  color: var(--text-muted);
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.3rem;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #040a14;
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(10, 26, 47, 0.6);
  color: var(--text-white);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-wa {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #1ebd5a;
}

.btn-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-wa-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 4px;
}

.btn-wa-sm:hover {
  background: #25D366;
  color: #fff;
}

.btn-gold-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}

.btn-gold-sm:hover {
  background: var(--gold-primary);
  color: #040a14;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transform: scale(1.03);
  transition: transform 10s ease;
}

.hero-section:hover .hero-bg-img {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(4, 10, 20, 0.82) 0%,
      rgba(10, 26, 47, 0.92) 60%,
      rgba(4, 10, 20, 0.98) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Quick Property Search Card */
.hero-search-card {
  background: var(--bg-navy-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--shadow-luxury);
  margin-bottom: 2.5rem;
  text-align: left;
}

.search-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: end;
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group select,
.form-group input,
.form-group textarea {
  background: rgba(4, 10, 20, 0.75);
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group select option {
  background: #0a1a2f;
  color: #fff;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.35);
}

/* Stats Counter Bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.2rem;
  background: rgba(4, 10, 20, 0.75);
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-gold);
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
}

.about-card-featured {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.about-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold-gradient);
  color: #040a14;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.about-card-featured h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--gold-light);
}

.about-card-featured p {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

.highlight-box {
  display: flex;
  gap: 0.9rem;
  background: rgba(4, 10, 20, 0.6);
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
}

.highlight-box i {
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.highlight-box h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--text-white);
}

.highlight-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.about-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.about-locations-box {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.locations-title {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sector-tag-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.sector-tag-list li {
  font-size: 0.92rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(4, 10, 20, 0.5);
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.18);
}

.location-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(10, 26, 47, 0.8) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 8px;
  padding: 1.2rem;
}

.location-banner i {
  font-size: 2rem;
  color: var(--gold-primary);
}

.location-banner strong {
  color: var(--gold-light);
  font-size: 0.92rem;
  display: block;
}

.location-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury);
  background: var(--bg-navy-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.highlight-gold-card {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, rgba(15, 35, 61, 0.9) 0%, rgba(201, 162, 39, 0.12) 100%);
}

.service-icon {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.service-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  color: var(--gold-primary);
  gap: 0.7rem;
}

/* Listings & Property Grid */
.filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: rgba(10, 26, 47, 0.6);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-gradient);
  color: #040a14;
  border-color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.property-card.is-sold .property-img {
  filter: grayscale(70%) brightness(0.7);
}

.property-card.is-sold .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.property-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-light);
}

.property-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-img {
  transform: scale(1.08);
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Property Status Badges */
.badge-sale {
  background: var(--gold-gradient);
  color: #040a14;
}

.badge-hot {
  background: #e74c3c;
  color: #fff;
}

.badge-rent {
  background: #27ae60;
  color: #fff;
}

.badge-auction {
  background: #8e44ad;
  color: #fff;
}

.badge-sold {
  background: #c0392b;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.6);
  font-weight: 800;
  letter-spacing: 1px;
}

.property-card.property-sold-out {
  opacity: 0.82;
  border-color: rgba(192, 57, 43, 0.4);
}

.property-card.property-sold-out .property-img {
  filter: grayscale(40%);
}

/* ==========================================================================
   Admin Portal Styling (admin.html)
   ========================================================================== */
.admin-body {
  background-color: var(--bg-navy-darker);
  min-height: 100vh;
}

.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.14) 0%, rgba(4, 10, 20, 0.96) 75%);
}

.admin-login-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-luxury);
}

.admin-login-logo {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0 auto 1.2rem auto;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--gold-glow);
}

.admin-login-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.admin-login-card h2 {
  font-size: 1.6rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.admin-login-sub {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}

.admin-login-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
}

.admin-back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 1rem;
}

/* Admin Dashboard Header & Controls */
.admin-header {
  background: rgba(4, 10, 20, 0.98);
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 900;
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.admin-logo-sm {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}

.admin-brand-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.admin-brand-sub {
  font-size: 0.7rem;
  color: var(--gold-primary);
}

.admin-actions-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Admin Metrics Grid */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-metric-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.metric-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Admin Inventory Table */
.admin-table-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--shadow-luxury);
}

.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-table-header h3 {
  font-size: 1.3rem;
  color: var(--text-white);
}

.admin-table-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.admin-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: rgba(4, 10, 20, 0.7);
  color: var(--gold-light);
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-gold);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.9rem;
  color: var(--text-light);
  vertical-align: middle;
}

.admin-prop-thumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.admin-prop-thumb img {
  width: 55px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.admin-prop-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.admin-price-edit-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-input-sm {
  background: rgba(4, 10, 20, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  font-size: 0.88rem;
  width: 130px;
  outline: none;
}

.admin-status-select {
  background: rgba(4, 10, 20, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
}

.admin-status-select.select-sold {
  border-color: #e74c3c;
  color: #e74c3c;
  font-weight: 700;
}

.property-tag {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(4, 10, 20, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.property-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-type {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.property-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.property-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.property-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.property-features span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.property-features i {
  color: var(--gold-primary);
}

.property-footer {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

/* Featured Infrastructure & Projects Section (NEW) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-light);
}

.project-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(4, 10, 20, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-weight: 600;
}

.project-body {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.project-tag {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Why Choose Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold-light);
}

.why-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin: 0 auto 1.2rem auto;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--text-white);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Team / Partners Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
}

.team-avatar-box {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.2rem auto;
}

.avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #040a14;
  box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
}

.team-role-badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #040a14;
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 10px;
  text-transform: uppercase;
}

.team-name {
  font-size: 1.4rem;
  color: var(--text-white);
  margin-bottom: 0.2rem;
}

.team-title {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.team-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-luxury);
}

.testimonial-stars {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.author-name {
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.1rem;
}

.author-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion Section (NEW) */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.faq-question i {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active {
  border-color: var(--gold-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0.5rem 1.5rem 1.5rem 1.5rem;
}

/* Contact & Inquiry Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-info-card,
.contact-form-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2.2rem;
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.c-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.c-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.c-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-white);
}

.c-item p,
.c-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.c-item a:hover {
  color: var(--gold-light);
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Footer */
.main-footer {
  background: #030810;
  border-top: 1px solid var(--border-gold);
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.footer-logo {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  object-fit: cover;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.footer-brand-sub {
  font-size: 0.65rem;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
  display: block;
}

.footer-tagline {
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-partners p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.footer-partners a {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Floating Widgets */
.floating-widget-wrapper {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  position: relative;
  transition: transform 0.3s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #040a14;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
}

.floating-call-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #040a14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
  transition: transform 0.3s ease;
}

.floating-call-btn:hover {
  transform: scale(1.1);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(3, 8, 16, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #0a1a2f;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  max-width: 550px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-luxury);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold-light);
}

.modal-header h3 {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  color: var(--text-white);
}

.modal-badge {
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.modal-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.modal-price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(4, 10, 20, 0.6);
  padding: 1rem;
  border-radius: 6px;
  margin: 1.2rem 0;
  border: 1px solid var(--border-glass);
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.modal-area {
  font-size: 0.9rem;
  color: var(--text-light);
}

.modal-description {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-contact-box {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.2rem;
}

.modal-contact-box h4 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.modal-contact-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .search-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .listings-grid,
  .projects-grid,
  .team-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #040a14;
    border-bottom: 1px solid var(--border-gold);
    padding: 1.5rem;
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .mobile-toggle {
    display: block;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .listings-grid,
  .projects-grid,
  .team-grid,
  .testimonials-grid,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }
}