/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #002855;
  --navy-light: #003d7a;
  --navy-dark: #001a3a;
  --gold: #ffb92e;
  --gold-light: #ffc94d;
  --gold-dark: #e5a200;
  --blue: #0077c8;
  --blue-light: #def2ff;
  --blue-medium: #61abff;
  --white: #ffffff;
  --off-white: #f5f8fa;
  --gray-100: #eef0f2;
  --gray-200: #d1d3d4;
  --gray-300: #b0b2b4;
  --gray-500: #6d6e71;
  --gray-700: #414042;
  --text-dark: #414042;
  --text-body: #414042;
  --shadow: 0 2px 16px rgba(0, 40, 85, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 40, 85, 0.12);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 185, 46, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav .container {
  max-width: 100%;
  padding: 0 24px 0 20px;
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  width: 280px;
  height: auto;
  display: block;
}

.footer-logo-img {
  width: 250px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 185, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #004080 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255, 185, 46, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 185, 46, 0.04) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 185, 46, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-decoration {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 185, 46, 0.08);
  border-radius: 50%;
}

.hero-decoration::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border: 1px solid rgba(255, 185, 46, 0.05);
  border-radius: 50%;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--off-white);
}

.section-dark {
  background: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
}

.about-preview-image::after {
  content: 'JE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  color: rgba(255, 185, 46, 0.12);
  font-weight: 700;
}

.about-preview-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-preview-text p {
  margin-bottom: 16px;
  color: var(--text-body);
}

.about-preview-text .btn {
  margin-top: 12px;
}

.credentials {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.credential-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 119, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 119, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 1.25rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== FEATURED PROPERTIES ===== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.property-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  position: relative;
  overflow: hidden;
}

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-lease {
  background: var(--gold);
  color: var(--navy);
}

.badge-sale {
  background: var(--navy);
  color: var(--white);
}

.property-info {
  padding: 20px;
}

.property-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.property-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.property-details {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--gray-700);
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.property-details span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== STATS ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  font-weight: 600;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 96px;
}

.about-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.about-photo::after {
  content: 'JE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 6rem;
  color: rgba(255, 185, 46, 0.12);
  font-weight: 700;
}

.about-contact-card {
  background: var(--off-white);
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.about-contact-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--navy);
}

.about-contact-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-body);
}

.about-contact-card a {
  color: var(--blue);
  font-weight: 600;
}

.about-contact-card a:hover {
  color: var(--blue-medium);
}

.about-main h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  margin-top: 40px;
}

.about-main h2:first-child {
  margin-top: 0;
}

.about-main p {
  margin-bottom: 16px;
  color: var(--text-body);
}

.about-main ul {
  margin: 12px 0 24px 20px;
  list-style: disc;
}

.about-main ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.timeline {
  margin: 24px 0;
  border-left: 2px solid var(--blue);
  padding-left: 24px;
}

.timeline-item {
  margin-bottom: 24px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.timeline-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.timeline-item .timeline-date {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== PROPERTIES PAGE ===== */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-right: 4px;
}

.filter-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  margin: 0 8px;
}

.property-count {
  text-align: center;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.properties-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card-full {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

.property-card-full:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.property-card-full .property-image {
  height: 180px;
}

.property-card-full .property-info {
  padding: 20px;
}

.property-card-full .property-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
}

.property-card-full .property-info .property-address {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.property-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.property-tag {
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gray-100);
  color: var(--gray-700);
}

.tag-retail { background: rgba(255, 185, 46, 0.15); color: var(--gold-dark); }
.tag-office { background: rgba(0, 40, 85, 0.08); color: var(--navy); }
.tag-land { background: rgba(76, 145, 83, 0.1); color: #3d7a42; }
.tag-lease { background: var(--gold); color: var(--navy); }
.tag-sale { background: var(--navy); color: var(--white); }

/* ===== EXPANDABLE SPACES ===== */
.spaces-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding: 8px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid rgba(0, 119, 200, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.spaces-toggle:hover {
  background: rgba(0, 119, 200, 0.12);
}

.toggle-icon {
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition);
}

.spaces-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.spaces-panel {
  display: none;
  margin-top: 10px;
  overflow: hidden;
}

.spaces-panel.open {
  display: block;
}

.spaces-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.spaces-table th {
  text-align: left;
  padding: 6px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-200);
}

.spaces-table td {
  padding: 6px 8px;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-100);
}

.spaces-table tr:last-child td {
  border-bottom: none;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-body);
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 119, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.contact-detail-text a {
  color: var(--blue);
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--blue-medium);
}

.contact-form {
  background: var(--off-white);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.footer-disclaimer {
  font-style: italic;
}

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

  .services-grid,
  .properties-grid,
  .properties-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-sidebar {
    position: static;
    max-width: 400px;
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--gray-200);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-top: 1px solid rgba(255, 185, 46, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

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

  .hero-decoration {
    display: none;
  }

  .hero-content {
    padding: 40px 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-preview-image {
    aspect-ratio: 16/9;
  }

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

  .properties-grid,
  .properties-full-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 24px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .page-header {
    padding: 120px 0 48px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .filters {
    gap: 8px;
  }

  .filter-divider {
    display: none;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .credentials {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

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