@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --font-primary: 'Nunito', sans-serif;
  
  /* Color Palette */
  --color-bg-deep: #0d0f11;
  --color-bg-card: #15181c;
  --color-bg-elevated: #1e2227;
  --color-primary: #d4af37;      /* Bright gold */
  --color-primary-light: #e5c158;
  --color-accent: #c5a880;       /* Champagne gold */
  --color-text-bright: #f5f6f7;
  --color-text-normal: #d1d5db;
  --color-text-muted: #8e98a5;
  --color-border: rgba(197, 168, 128, 0.15);
  --color-border-hover: rgba(212, 175, 55, 0.4);
  --color-success: #10b981;
  --color-error: #ef4444;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #c5a880 0%, #d4af37 100%);
  --gradient-dark: linear-gradient(180deg, rgba(21, 24, 28, 0.8) 0%, rgba(13, 15, 17, 0.95) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(13, 15, 17, 0.2) 0%, rgba(13, 15, 17, 0.85) 100%);

  /* Shadows */
  --shadow-gold-subtle: 0 4px 20px rgba(197, 168, 128, 0.1);
  --shadow-gold-bright: 0 8px 30px rgba(212, 175, 55, 0.2);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Borders */
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-deep);
  color: var(--color-text-normal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button, input, select, textarea {
  font-family: var(--font-primary);
  font-size: 1rem;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-bright);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
}

h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
}

h2.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
}

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

.text-muted {
  color: var(--color-text-muted);
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-dark {
  background-color: #0b0c0e;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #000;
  box-shadow: var(--shadow-gold-subtle);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-text-bright);
  border: 1px solid var(--color-accent);
}

.btn-outline:hover {
  background: rgba(197, 168, 128, 0.1);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* --- HEADER / NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 15, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(13, 15, 17, 0.96);
  padding: 8px 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-text-bright);
}

.logo-main span {
  font-weight: 300;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-normal);
  padding: 8px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links li.active a {
  color: var(--color-primary);
}

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

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-bright);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.hero-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: 50px;
}

.hero h1 {
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-normal);
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-weight: 300;
}

/* --- PARTNERSHIP BADGE & SECTION --- */
.partnership-badge-home {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
  padding: 15px 30px;
  background: rgba(21, 24, 28, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-card);
}

.badge-text {
  text-align: left;
}

.badge-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 700;
}

.badge-name {
  font-size: 0.95rem;
  color: var(--color-text-bright);
  font-weight: 600;
}

/* --- DESTINATION CARD GATEWAYS --- */
.destination-section {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding-bottom: 80px;
}

.destination-card {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.destination-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-gold-subtle);
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.destination-card:hover .destination-img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(13, 15, 17, 0.95) 0%, rgba(13, 15, 17, 0.5) 50%, rgba(13, 15, 17, 0) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.destination-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.destination-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.destination-card p {
  font-size: 0.9rem;
  color: var(--color-text-normal);
  margin-bottom: 20px;
  font-weight: 300;
  opacity: 0.9;
}

/* --- FILTERS SECTION --- */
.filter-bar {
  background: var(--color-bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 700;
}

.filter-control {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-bright);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  width: 100%;
}

.filter-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* --- PROPERTY CARDS --- */
.property-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.property-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

/* Image Carousel Premium */
.property-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow controls */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 15, 17, 0.70);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
  backdrop-filter: blur(4px);
  user-select: none;
  padding: 0;
}

.carousel-arrow:hover {
  background: var(--color-primary);
  color: #0d0f11;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.carousel-arrow.prev-arrow {
  left: 10px;
}

.carousel-arrow.next-arrow {
  right: 10px;
}

/* Pagination indicators */
.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(13, 15, 17, 0.5);
  padding: 4px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
  box-shadow: 0 0 6px var(--color-primary);
}


.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(13, 15, 17, 0.85);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(5px);
}

.property-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-location {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
}

.property-details h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.property-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.property-specs {
  display: flex;
  gap: 15px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.property-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-specs i {
  color: var(--color-accent);
}

/* --- INFRASTRUCTURE & PARTNERSHIP COLLABORATION (ABOUT) --- */
.info-banner {
  background: var(--gradient-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-card);
}

.info-content {
  flex: 1;
}

.info-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.info-content p {
  margin-bottom: 24px;
  font-weight: 300;
  color: var(--color-text-normal);
}

.info-stats {
  display: flex;
  gap: 40px;
}

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

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

/* --- LEAD CAPTURE FORM SECTION --- */
.form-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
}

.form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
}

.form-card p {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  color: var(--color-text-bright);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.12);
}

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

.form-feedback {
  margin-top: 15px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

.form-feedback.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: block;
}

.form-feedback.error {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
  border: 1px solid rgba(239, 68, 68, 0.3);
  display: block;
}

/* --- FOOTER --- */
footer {
  background-color: #08090a;
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--color-text-bright);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.creci-badge {
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid var(--color-border);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-top: 10px;
}

.creci-badge strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-normal);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--gradient-gold);
  color: #000;
  border-color: transparent;
  transform: translateY(-3px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .info-banner {
    flex-direction: column;
    padding: 30px;
  }
  .info-stats {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-bg-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 1px solid var(--color-border);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
  }
  
  .header-cta {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- LOGIN MODAL (GLASSMORPHIC) --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 9, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-card {
  background: rgba(21, 24, 28, 0.95);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-gold-bright);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  position: relative;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* --- ADMIN AI CONSOLE WORKSPACE --- */
.admin-body {
  height: 100vh;
  display: flex;
  overflow: hidden;
  background-color: #08090a;
}

.admin-sidebar {
  width: 300px;
  background: #0d0f11;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  flex-shrink: 0;
}

.admin-logo-container {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 30px;
  text-align: center;
}

.admin-ai-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulse-glow 2s infinite;
  margin-right: 8px;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.admin-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-menu-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: var(--color-text-normal);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.admin-menu-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-primary);
  border-color: rgba(197, 168, 128, 0.1);
}

.admin-menu-item.active {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.1);
}

.admin-menu-item-coming-soon {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.admin-menu-item-coming-soon span {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
}

.admin-sidebar-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.admin-workspace {
  flex-grow: 1;
  padding: 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 80% 20%, #15181c 0%, #0d0f11 100%);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
}

.admin-actions {
  display: flex;
  gap: 15px;
}

/* --- ADMIN WORKSPACE PANELS --- */
.admin-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.admin-card-panel {
  background: rgba(21, 24, 28, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}

/* List UI */
.admin-table-container {
  overflow-x: auto;
}

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

.admin-table th {
  padding: 12px 16px;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.admin-prop-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-prop-mini-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.admin-prop-mini-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-bright);
}

.admin-prop-mini-loc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.admin-actions-cell {
  display: flex;
  gap: 8px;
}

.btn-admin-icon {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text-normal);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-admin-icon:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-admin-icon.danger:hover {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-error);
  border-color: var(--color-error);
}

.admin-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-muted);
}

/* Coming soon overlay for Lisbon */
.admin-coming-soon-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  background: rgba(21, 24, 28, 0.3);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
}

