@import 'tailwindcss';

@theme {
  --color-primary: #1E3A8A;
  --color-primary-light: #1E3A8A;
  --color-primary-dark: #0F172A;
  --color-gold: #D4AF37;
  --color-gold-light: #F0D060;
  --color-gold-dark: #B8941E;
  --color-navy: #0F172A;
  --color-navy-light: #1E293B;
  --color-gray-soft: #F8FAFC;

  --font-sans: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ===========================
   GLOBAL RESETS & BASE
   =========================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background-color: #ffffff;
  color: #0F172A;
  overflow-x: hidden;
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 3px;
}

/* ===========================
   NAVBAR
   =========================== */
#navbar {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(15, 23, 42, 0.12);
}
#navbar.scrolled .nav-link {
  color: #0F172A;
}
#navbar.scrolled .nav-logo-text {
  color: #1E3A8A;
}
.nav-logo-img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.scrolled .nav-logo-img {
  filter: none;
}
.nav-link {
  position: relative;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.btn-cta {
  background: linear-gradient(135deg, #D4AF37 0%, #F0D060 50%, #D4AF37 100%);
  color: #0F172A;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #F0D060 0%, #D4AF37 50%, #F0D060 100%);
}

/* ===========================
   HERO SECTION
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
#hero-bg {
  transform-origin: center;
  transition: transform 0.1s linear;
}
.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.98) 0%,
    rgba(15, 23, 42, 0.92) 35%,
    rgba(15, 23, 42, 0.78) 70%,
    rgba(15, 23, 42, 0.58) 100%
  );
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  color: #D4AF37;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.hero-title span {
  color: #D4AF37;
  position: relative;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1E3A8A;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}
.btn-primary:hover {
  background: #0F172A;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.5);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-3px);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #D4AF37;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #D4AF37;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title span {
  color: #1E3A8A;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F0D060);
  border-radius: 2px;
  margin: 1.25rem 0;
}

/* ===========================
   STAT CARDS
   =========================== */
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: white;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.08);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: #1E3A8A;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.stat-suffix {
  font-size: 1.5rem;
  color: #D4AF37;
}

/* ===========================
   TOWER CARDS
   =========================== */
.tower-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.tower-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}
.tower-card-img {
  height: 260px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s ease;
}
.tower-card:hover .tower-card-img {
  transform: scale(1.07);
}
.tower-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, transparent 60%);
  pointer-events: none;
}
.tower-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #D4AF37, #F0D060);
  color: #0F172A;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.tower-card-body {
  padding: 1.5rem;
}
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1E3A8A;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.25rem;
  border: 2px solid #1E3A8A;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.btn-detail:hover {
  background: #1E3A8A;
  color: white;
}

/* ===========================
   FEATURE CARDS
   =========================== */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(30, 58, 138, 0.08);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1E3A8A, #D4AF37);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  border-color: rgba(30, 58, 138, 0.2);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(212, 175, 55, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.feature-icon svg {
  transition: color 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: #1E3A8A;
}
.feature-card:hover .feature-icon svg {
  color: white !important;
}

/* ===========================
   FACILITY CARDS
   =========================== */
.facility-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(30, 58, 138, 0.07);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  transition: all 0.35s ease;
  cursor: default;
}
.facility-card:hover {
  background: linear-gradient(135deg, #1E3A8A, #1e3a8a);
  color: white;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(30, 58, 138, 0.3);
  border-color: transparent;
}
.facility-card:hover .facility-icon-wrap {
  background: rgba(255,255,255,0.15);
}
.facility-card:hover .facility-name {
  color: white;
}
.facility-card:hover .facility-desc {
  color: rgba(255,255,255,0.8);
}
.facility-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.facility-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  transition: color 0.3s ease;
}
.facility-desc {
  font-size: 0.78rem;
  color: #64748B;
  transition: color 0.3s ease;
}

/* ===========================
   LOCATION SECTION
   =========================== */
#location {
  position: relative;
  overflow: hidden;
}
.location-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}
.location-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-4px);
}

/* ===========================
   OFFICE SPACE CARDS
   =========================== */
.space-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.space-card:hover {
  transform: translateY(-8px);
}
.space-card-blue {
  background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
  color: white;
}
.space-card-gold {
  background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
  color: #0F172A;
}
.space-card-navy {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
}
.space-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn-proposal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #1E3A8A;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.btn-proposal:hover {
  background: #D4AF37;
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===========================
   SPACE LISTING CARDS (NEW)
   =========================== */
.space-filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid #D1D5DB;
  background: white;
  color: #374151;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.01em;
}
.space-filter-btn:hover {
  border-color: #1E3A8A;
  color: #1E3A8A;
}
.space-filter-btn.active {
  background: #1E3A8A;
  border-color: #1E3A8A;
  color: white;
  box-shadow: 0 4px 14px rgba(30,58,138,0.25);
}

.space-listing-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 2px 12px rgba(15,23,42,0.07);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.space-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.14);
  border-color: rgba(30,58,138,0.2);
}
.space-listing-card.hidden {
  display: none;
}

.space-listing-img {
  transition: transform 0.5s ease;
}
.space-listing-card:hover .space-listing-img {
  transform: scale(1.06);
}

.space-status-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #16A34A;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(22,163,74,0.4);
}
.space-status-dot {
  width: 7px;
  height: 7px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.85); }
}

.space-listing-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.space-btn-outline {
  padding: 0.65rem 1rem;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid #D1D5DB;
  background: white;
  color: #1E3A8A;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.space-btn-outline:hover {
  border-color: #1E3A8A;
  background: rgba(30,58,138,0.05);
}

.space-btn-solid {
  padding: 0.65rem 1rem;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  background: #1E3A8A;
  color: white;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
}
.space-btn-solid:hover {
  background: #0F172A;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.35);
  transform: translateY(-1px);
}

/* ===========================
   GALLERY
   =========================== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===========================
   TENANT CAROUSEL
   =========================== */
.tenant-track {
  display: flex;
  gap: 2rem;
  animation: scroll-left 25s linear infinite;
  width: max-content;
}
.tenant-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tenant-logo-card {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
  border: 1px solid rgba(30,58,138,0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 800;
  font-size: 0.95rem;
  color: #1E3A8A;
  letter-spacing: 0.02em;
  opacity: 0.75;
  filter: brightness(0.95);
}
.tenant-logo-card:hover {
  box-shadow: 0 12px 24px rgba(30,58,138,0.15);
  border-color: rgba(212,175,55,0.4);
  transform: scale(1.05);
  opacity: 1;
  filter: brightness(1.1);
}

/* ===========================
   TENANT MARQUEE
   =========================== */
.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  height: 100%;
  width: 120px;
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  top: 0;
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0));
}
.marquee-container::after {
  right: 0;
  top: 0;
  background: linear-gradient(to left, #ffffff 10%, rgba(255, 255, 255, 0));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* ===========================
   NEWS CARDS
   =========================== */
.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15,23,42,0.08);
  border: 1px solid rgba(30,58,138,0.06);
  transition: all 0.4s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.15);
}
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background-color: #f8fafc;
  transition: transform 0.5s ease;
}
.news-card:hover img {
  transform: scale(1.05);
}
.news-category {
  display: inline-block;
  background: rgba(30,58,138,0.1);
  color: #1E3A8A;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1E3A8A;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.btn-read-more:hover {
  color: #D4AF37;
  gap: 0.6rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(15,23,42,0.06);
  border: 1px solid rgba(30,58,138,0.07);
  transition: all 0.3s ease;
}
.contact-info-item:hover {
  box-shadow: 0 8px 24px rgba(30,58,138,0.12);
  border-color: rgba(30,58,138,0.2);
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,58,138,0.1), rgba(212,175,55,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(30,58,138,0.15);
  border-radius: 12px;
  font-size: 0.9rem;
  color: #0F172A;
  background: white;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}
.form-input:focus {
  border-color: #1E3A8A;
  box-shadow: 0 0 0 4px rgba(30,58,138,0.08);
}
.form-input::placeholder {
  color: #94A3B8;
}
.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: #1E3A8A;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit:hover {
  background: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.4);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #0F172A;
  color: rgba(255,255,255,0.8);
}
.footer-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-link:hover {
  color: #D4AF37;
  padding-left: 4px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
  color: rgba(255,255,255,0.7);
}
.social-btn:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #0F172A;
  transform: translateY(-3px);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.animated {
  opacity: 1 !important;
  transform: translate(0) !important;
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* ===========================
   LIGHTBOX
   =========================== */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
#lightbox.active {
  display: flex;
}
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid white;
}
#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #0f172a;
  background: rgba(15,23,42,0.08);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.2s;
}
#lightbox-close:hover {
  background: rgba(15,23,42,0.18);
}

/* ===========================
   MOBILE MENU
   =========================== */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#mobile-menu.open {
  display: flex;
}
.mobile-nav-link {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: #D4AF37;
}

/* ===========================
   MISC UTILITIES
   =========================== */
.gold-text { color: #D4AF37; }
.primary-text { color: #1E3A8A; }
.navy-text { color: #0F172A; }
.bg-section-alt { background-color: #F8FAFC; }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.success-alert {
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.3);
  border-left: 4px solid #22c55e;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.error-msg {
  color: #dc2626;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===========================
   ADMIN MODE UTILITIES
   =========================== */
body.admin-mode {
  padding-top: 36px;
}
body.admin-mode #navbar {
  top: 36px;
}
