/*
  TRD Group - Luxury Real Estate Stylesheet
  Custom Vanilla CSS for Premium, High-End Aesthetic
*/

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

:root {
  /* Color Palette */
  --bg-dark: #0A0B0D;
  --bg-dark-card: #121418;
  --bg-dark-glass: rgba(18, 20, 24, 0.75);
  
  --bg-light: #FBFBFA;
  --bg-light-card: #FFFFFF;
  --bg-light-glass: rgba(255, 255, 255, 0.8);
  
  --accent-gold: #D4AF37; /* Metallic Gold */
  --accent-gold-hover: #AA7C11;
  --accent-gold-light: rgba(212, 175, 55, 0.15);
  
  --text-dark-primary: #111827;
  --text-dark-secondary: #4B5563;
  --text-dark-muted: #9CA3AF;
  
  --text-light-primary: #F9FAFB;
  --text-light-secondary: #D1D5DB;
  --text-light-muted: #9CA3AF;
  
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.06);
  
  --success: #10B981;
  --danger: #EF4444;
  
  /* Fonts */
  --font-heading: 'Outfit', 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Shadows */
  --shadow-light: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) var(--bg-dark);
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

*::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 3px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-location {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-dark-primary);
  border: none;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(10, 11, 13, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-right: 12px;
}

.logo span {
  color: var(--accent-gold);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  color: var(--text-light-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 8px 0;
}

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

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

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

.nav-btn {
  background: linear-gradient(135deg, var(--accent-gold), #B59023);
  color: #000000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -5px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #E5C158, var(--accent-gold));
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light-primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
  padding-top: 100px;
  background-image: linear-gradient(rgba(10, 11, 13, 0.4), rgba(10, 11, 13, 0.8)), url('bg_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 10;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  font-weight: 300;
  font-size: 2.8rem;
  color: var(--text-light-secondary);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #B59023);
  color: #000000;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light-primary);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 4px;
}

.stat-item h3 span {
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Filter Controls */
.filter-wrapper {
  background-color: var(--bg-light-card);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 20;
  border: 1px solid var(--border-light);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

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

.filter-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-secondary);
  margin-bottom: 8px;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--text-dark-primary);
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.filter-select:focus {
  border-color: var(--accent-gold);
}

.filter-btn {
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.filter-btn:hover {
  background-color: var(--accent-gold);
  color: #000;
}

/* Listings Section */
.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
}

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

.section-header.text-center {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-center p {
  color: var(--text-dark-secondary);
  margin-top: 12px;
}

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

.property-card {
  background-color: var(--bg-light-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  aspect-ratio: 1 / 1;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-img-wrapper {
  position: relative;
  flex: 1.1;
  overflow: hidden;
  background-color: var(--bg-light-card);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-smooth);
}

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

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.card-badge-featured {
  background-color: var(--accent-gold);
  color: #000;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-badge-loc {
  background-color: rgba(10, 11, 13, 0.75);
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.6rem;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1.2;
  justify-content: space-between;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-gold-hover);
  margin-bottom: 8px;
}

.card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  margin-bottom: 10px;
}

.spec-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.spec-item i {
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.spec-item span {
  display: none;
}

.spec-item strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
}

.card-btn {
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-btn-view {
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
}

.card-btn-view:hover {
  background-color: var(--accent-gold);
  color: #000;
}

.view-all-container {
  margin-top: 50px;
}

/* Category grid (Alt styles) */
.category-section {
  background-color: #F3F4F6;
}

/* Calculator Section */
.calc-card {
  background-color: var(--bg-light-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

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

.calc-form {
  padding: 40px;
  border-right: 1px solid var(--border-light);
}

.calc-results {
  padding: 40px;
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-results h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.result-row span {
  color: var(--text-light-secondary);
}

.result-row strong {
  color: var(--text-light-primary);
  font-weight: 600;
}

.result-row.total {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 10px;
  font-size: 1.15rem;
}

.result-row.total strong {
  color: var(--accent-gold);
  font-size: 1.6rem;
  font-weight: 800;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  color: var(--text-dark-primary);
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--accent-gold);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent-gold);
}

.calc-submit {
  width: 100%;
  margin-top: 24px;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-left p {
  font-size: 1.05rem;
  color: var(--text-dark-secondary);
  margin-bottom: 30px;
  font-weight: 300;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feat-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feat-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.about-feat-content p {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  margin-bottom: 0;
}

.about-right {
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.about-stat-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.about-stat-box h4 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.about-stat-box p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-right-footer {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.about-right-footer p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  margin-bottom: 20px;
  font-weight: 300;
}

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

.service-card {
  background-color: var(--bg-light-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

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

.service-list li {
  font-size: 0.9rem;
  color: var(--text-dark-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li i {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-light-card);
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--text-dark-primary);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.testimonial-author-title {
  font-size: 0.85rem;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-nav-btn:hover {
  background-color: var(--accent-gold);
  color: #000;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--text-dark-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--accent-gold);
  width: 20px;
  border-radius: 4px;
}

/* Contact Us Section */
.contact-section {
  background-color: var(--bg-dark);
  color: var(--text-light-primary);
}

.contact-section .section-title {
  color: var(--text-light-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  gap: 60px;
}

.contact-form-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-card .form-group label {
  color: var(--text-light-secondary);
}

.contact-form-card .form-control {
  background-color: rgba(255, 255, 255, 0.03);
  border-color: var(--border-dark);
  color: var(--text-light-primary);
}

.contact-form-card .form-control:focus {
  border-color: var(--accent-gold);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.contact-info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-info-content p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
}

.contact-info-content a:hover {
  color: var(--accent-gold);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--text-light-primary);
}

/* Footer Section */
.footer {
  background-color: #050608;
  color: var(--text-light-secondary);
  border-top: 1px solid var(--border-dark);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-light-primary);
  display: flex;
  align-items: center;
}
.footer-col h3 span {
  color: var(--accent-gold);
  margin-left: 2px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-light-primary);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-secondary);
}

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

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

.footer-links a {
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* Detail Card Styles (Shared template styling for property pages) */
.detail-page-body {
  background-color: var(--bg-light);
  color: var(--text-dark-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.detail-header {
  height: 80px;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
}

.detail-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  flex-grow: 1;
}

.detail-card-premium {
  background-color: var(--bg-light-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.detail-hero-wrapper {
  position: relative;
  height: 480px;
  overflow: hidden;
  background-color: #000;
}

.detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 40px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.detail-title-block h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.detail-price-badge {
  background-color: var(--accent-gold);
  color: #000;
  font-weight: 750;
  padding: 10px 24px;
  font-size: 1.3rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-top: 10px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  padding: 40px;
}

.detail-left-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.detail-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-gold);
}

.detail-desc {
  font-size: 1.05rem;
  color: var(--text-dark-secondary);
  line-height: 1.8;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-spec-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-spec-box i {
  font-size: 1.6rem;
  color: var(--accent-gold);
  width: 40px;
  text-align: center;
}

.detail-spec-box-content p {
  font-size: 0.75rem;
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.detail-spec-box-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark-primary);
}

.detail-right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background-color: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-light);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero h1 span {
    font-size: 2.2rem;
  }
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    background-color: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 11, 13, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-link {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
  .nav-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  .menu-toggle {
    display: block;
    cursor: pointer;
  }
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero h1 span {
    font-size: 1.8rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  .filter-grid {
    grid-template-columns: 1fr;
  }
  .listings-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .detail-content-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
