@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #0f172a;
  --bg-secondary: #0b1120;
  --bg-tertiary: #1e293b;
  --bg-footer: #080d19;
  
  --accent-light: #fbbf24;
  --accent-primary: #f59e0b;
  --accent-dark: #d97706;
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #020617;
  
  /* Typography */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Utilities */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-glass: 1px solid rgba(248, 250, 252, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

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

/* Base Styles */
html {
  scroll-behavior: smooth;
}

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

::selection {
  background-color: var(--accent-primary);
  color: var(--text-inverse);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.glass-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
}

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

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

body.scrolled .nav {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.nav-logo img {
  height: 50px;
  width: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
  transform-origin: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 17, 32, 0.55) 0%,
    rgba(15, 23, 42, 0.75) 50%,
    rgba(15, 23, 42, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--accent-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.08);
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  stroke: var(--accent-light);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-primary);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.35);
  background: var(--accent-light);
}

.btn-primary svg {
  stroke: var(--text-inverse);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(245, 158, 11, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: var(--text-inverse);
  border-color: var(--accent-primary);
}

.btn-outline:hover svg {
  stroke: var(--text-inverse);
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

/* ===========================
   SECTIONS COMMON
   =========================== */
.section {
  padding: 7rem 0;
}

.section-alt {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-text strong {
  color: var(--text-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.value-card {
  padding: 1.5rem;
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  stroke: var(--text-inverse);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===========================
   PROPERTIES SECTION
   =========================== */
.property-card {
  display: flex;
  overflow: hidden;
  padding: 0;
}

.property-image {
  width: 42%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.property-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent-primary);
  color: var(--text-inverse);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.property-details {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.property-header {
  margin-bottom: 1.25rem;
}

.property-header h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
}

.property-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.property-location:hover {
  color: var(--accent-primary);
}

.property-location svg {
  stroke: var(--accent-primary);
}

.property-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.property-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(245, 158, 11, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.meta-item svg {
  stroke: var(--accent-primary);
  flex-shrink: 0;
}

.amenities-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  padding-left: 0.75rem;
  border-left: 2px solid var(--accent-primary);
}

.amenity-item svg {
  stroke: var(--accent-primary);
  flex-shrink: 0;
}

.property-cta {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  flex-wrap: wrap;
}

/* ===========================
   TENANT PORTAL SECTION
   =========================== */
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.portal-card {
  padding: 2.25rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.portal-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-icon svg {
  stroke: var(--text-inverse);
}

.portal-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.portal-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.portal-steps {
  text-align: left;
  counter-reset: step;
}

.portal-step {
  counter-increment: step;
  position: relative;
  padding: 0.75rem 0 0.75rem 2.5rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(248, 250, 252, 0.05);
}

.portal-step:last-child {
  border-bottom: none;
}

.portal-step::before {
  content: counter(step);
  position: absolute;
  top: 0.75rem;
  left: 0;
  width: 28px;
  height: 28px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
}

.portal-step strong {
  color: var(--text-primary);
}

/* Property Info Items */
.info-items {
  text-align: left;
}

.info-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.05);
}

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

.info-item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-item-header svg {
  stroke: var(--accent-primary);
  flex-shrink: 0;
}

.info-item p {
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
}

.parking-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--accent-primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.parking-link:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.parking-link svg {
  stroke: var(--accent-primary);
  transition: var(--transition-smooth);
}

.parking-link:hover svg {
  stroke: var(--accent-light);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem;
}

.contact-items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(248, 250, 252, 0.05);
}

.contact-item:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
  background: rgba(245, 158, 11, 0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--text-inverse);
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.15rem;
}

.contact-item strong {
  font-size: 1rem;
  color: var(--text-primary);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: var(--bg-footer);
  padding: 5rem 0 2rem;
  border-top: var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 45px;
  width: 45px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
  font-weight: 600;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact svg {
  stroke: var(--accent-primary);
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-contact a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: var(--border-glass);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .property-card {
    flex-direction: column;
  }

  .property-image {
    width: 100%;
    height: 300px;
  }

  .property-details {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  /* Mobile Nav */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: var(--border-glass);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  body.nav-open .nav-links {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
  }

  body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Properties */
  .property-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

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

  .property-cta {
    flex-direction: column;
  }

  .property-cta .btn-primary,
  .property-cta .btn-outline {
    text-align: center;
    justify-content: center;
  }

  /* Portal */
  .portal-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-items {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-card {
    padding: 2.5rem 1.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

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

  .btn-primary,
  .btn-outline {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
  }

  .nav-logo span {
    font-size: 1rem;
  }
}
