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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #000;
}

/* Header */
.header {
  background: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  overflow: visible;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
  overflow: visible;
}
.logo { color: #F0D182; font-size: 1.8rem; font-weight: bold; text-decoration: none; }
.logo img { 
  height: 120px; 
  width: auto; 
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  display: inline-block;
}
.nav-menu a:hover {
  color: #F0D182;
  transform: scale(1.12);
  text-shadow: 0 0 12px rgba(240, 209, 130, 0.5);
  background: rgba(240, 209, 130, 0.08);
  box-shadow: 0 0 15px rgba(240, 209, 130, 0.2);
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #F0D182;
  font-size: 0.9rem;
  position: relative;
  overflow: visible;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 209, 130, 0.1);
  border: 1px solid #F0D182;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #F0D182;
  font-size: 0.9rem;
  font-weight: 500;
}

.language-toggle:hover {
  background: rgba(240, 209, 130, 0.2);
  transform: translateY(-1px);
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #F0D182;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid #F0D182;
  border-radius: 8px;
  padding: 0.5rem;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10000;
  pointer-events: none;
  min-width: 150px;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  color: #F0D182;
  font-size: 0.9rem;
  white-space: nowrap;
}

.language-option:hover {
  background: rgba(240, 209, 130, 0.1);
}

.language-option.active {
  background: rgba(240, 209, 130, 0.2);
}

.phone-link {
  color: #F0D182;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-link:hover {
  color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F0D182;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1001;
}
.menu-toggle:hover {
  background-color: rgba(240, 209, 130, 0.1);
}

/* Hamburger icon animation */
.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 18px;
  margin: auto;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #F0D182;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 8px;
}

.hamburger span:nth-child(4) {
  top: 16px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.menu-toggle.active .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-toggle.active .hamburger span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

/* Remove horizontal scroll */
body {
  overflow-x: hidden;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('/assets/images/herobackgroundAJL.jpg');
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.hero-content { max-width: 800px; padding: 0 2rem; }
.hero h1 { 
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem; 
  color: #F0D182; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8); 
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero p { 
  font-size: 1.3rem; 
  margin-bottom: 2rem; 
  color: #fff; 
  font-weight: 300;
  font-family: 'Playfair Display', serif;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }

.btn-hero {
  position: relative; padding: 16px 32px; font-size: 16px; font-weight: 600;
  border: none; border-radius: 50px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; overflow: hidden; min-width: 180px;
}
.btn-primary { background: linear-gradient(135deg, #F0D182, #F0D182); color: #000; box-shadow: 0 4px 15px rgba(240, 209, 130, 0.3); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #F0D182; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(240, 209, 130, 0.4); }
.btn-secondary:hover { background: rgba(240, 209, 130, 0.1); }
.btn-hero::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s;
}
.btn-hero.glisten::before { left: 100%; }

/* Scroll animations */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Sections */
.services { padding: 5rem 0; background: #111; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-title { 
  text-align: center; 
  font-size: 2.5rem; 
  color: #F0D182; 
  margin-bottom: 3rem; 
  font-weight: 600;
}

.services-grid {
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: #000; padding: 2rem; border-radius: 10px; text-align: center;
  border: 2px solid #F0D182; transition: transform 0.3s ease; cursor: pointer;
  position: relative; overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(240, 209, 130, 0.3); }
.service-card .icon-container {
  font-size: 3rem; color: #F0D182; margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}
.service-card h3 { color: #F0D182; margin-bottom: 1rem; font-size: 1.3rem; font-weight: 600; }
.service-card p { color: #ccc; line-height: 1.5; font-size: 0.95rem; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Properties Section (Full-Width Conveyor Carousel) */
.properties { padding: 5rem 0; background: #000; }
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex; gap: 2rem; padding: 1rem 2rem;
  will-change: transform;
}

/* Card as a link */
.property-card {
  flex: 0 0 350px;
  background: #111; border-radius: 10px; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent; cursor: pointer; scroll-snap-align: start;
  display: block; text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent;
}
.property-card:hover { transform: translateY(-8px); border-color: #F0D182; box-shadow: 0 15px 40px rgba(240, 209, 130, 0.2); }
.property-image { width: 100%; height: 220px; object-fit: cover; display: block; }
.property-info { padding: 1.25rem; }
.property-price { color: #F0D182; font-size: 1.4rem; font-weight: bold; margin-bottom: 0.4rem; }
.property-title { color: #fff; font-size: 1.1rem; margin-bottom: 0.8rem; }
.property-details { display: flex; gap: 1rem; margin-bottom: 0.8rem; color: #ccc; font-size: 0.9rem; }
.property-details span { display: flex; align-items: center; gap: 0.3rem; }
.property-location { color: #F0D182; font-size: 0.9rem; display: flex; align-items: center; gap: 0.3rem; }

/* Carousel controls */
.carousel-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin: 1rem 2rem 0; gap: 1rem;
}
.carousel-btn {
  background: rgba(255,255,255,0.06); border: 1px solid #333; color: #fff;
  padding: 0.6rem 1rem; border-radius: 999px; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  user-select: none;
}
.carousel-btn:hover { background: rgba(240,209,130,0.12); border-color: #F0D182; transform: translateY(-1px); }
.carousel-progress { flex: 1; height: 4px; background: #1a1a1a; border-radius: 999px; overflow: hidden; }
.carousel-progress > span { display: block; height: 100%; width: 0%; background: #F0D182; transition: width 0.2s linear; }

/* About */
.about { padding: 5rem 0; background: #111; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-text { color: #ccc; }
.about-text h2 { color: #F0D182; font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 600; }
.about-text p { margin-bottom: 1.5rem; line-height: 1.8; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.stat-item { text-align: center; padding: 1rem; background: #000; border-radius: 10px; border: 2px solid #F0D182; }
.stat-number { font-size: 2rem; font-weight: bold; color: #F0D182; }
.stat-label { color: #ccc; font-size: 0.9rem; }
.about-image { width: 100%; height: 400px; object-fit: cover; border-radius: 10px; border: 3px solid #F0D182; }

/* Contact */
.contact { padding: 5rem 0; background: #000; }
.contact-content { 
  display: grid; 
  grid-template-columns: 1fr 2fr; 
  gap: 3rem; 
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info { 
  display: flex;
  flex-direction: column;
}
.contact-info h3 { 
  color: #F0D182; 
  font-size: 1.8rem; 
  margin-bottom: 2rem; 
  font-weight: 600; 
}
.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item { 
  display: flex; 
  align-items: flex-start; 
  gap: 1rem; 
  color: #ccc;
  padding: 0;
  background: none;
  border: none;
}
.contact-item i { color: #F0D182; font-size: 1.5rem; width: 24px; margin-top: 0.2rem; }
.contact-item-content {
  flex: 1;
}
.contact-item-content strong {
  color: #F0D182;
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-form { 
  background: #111; 
  padding: 2.5rem; 
  border-radius: 15px; 
  border: 2px solid #F0D182;
  box-shadow: 0 10px 30px rgba(240, 209, 130, 0.1);
  width: 100%;
}
.contact-form h3 {
  color: #F0D182;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}
.form-group { margin-bottom: 2rem; }
.form-group label { 
  display: block; 
  color: #F0D182; 
  margin-bottom: 0.8rem; 
  font-weight: 600;
  font-size: 1.1rem;
}
.form-group input, .form-group textarea { 
  width: 100%; 
  padding: 1.2rem; 
  border: 2px solid #333; 
  border-radius: 8px; 
  background: #000; 
  color: #fff; 
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #F0D182;
}
.form-group textarea { height: 140px; resize: vertical; }
.submit-btn { 
  background: linear-gradient(135deg, #F0D182, #F0D182); 
  color: #000; 
  border: none; 
  padding: 1.2rem 2.5rem; 
  border-radius: 8px; 
  font-weight: bold; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  width: 100%; 
  position: relative; 
  overflow: hidden;
  font-size: 1.1rem;
}
.submit-btn:hover { 
  background: linear-gradient(135deg, #F0D182, #F0D182); 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(240, 209, 130, 0.4); 
}
.submit-btn::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: -100%; 
  width: 100%; 
  height: 100%; 
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); 
  transition: left 0.5s; 
}
.submit-btn.glisten::before { left: 100%; }

/* Footer */
.footer { background: #000; color: #ccc; padding: 3rem 0 1rem; border-top: 2px solid #F0D182; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { color: #F0D182; margin-bottom: 1rem; font-weight: 600; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a { color: #ccc; text-decoration: none; transition: color 0.3s ease; }
.footer-section ul li a:hover { color: #F0D182; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { color: #F0D182; font-size: 1.5rem; transition: transform 0.3s ease; }
.social-links a:hover { transform: scale(1.2); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; color: #666; }

/* Property Detail Page Styles */
.property-detail {
  padding: 8rem 0 5rem;
  background: #000;
  min-height: 100vh;
}

.property-hero {
  position: relative;
  height: 60vh;
  margin-bottom: 3rem;
  border-radius: 15px;
  overflow: hidden;
}

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

.property-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 3rem 2rem 2rem;
  color: white;
}

.property-hero-overlay h1 {
  font-size: 2.5rem;
  color: #F0D182;
  margin-bottom: 1rem;
}

.property-hero-overlay .price {
  font-size: 2rem;
  font-weight: bold;
  color: #F0D182;
}

.property-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.property-main {
  background: #111;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #F0D182;
}

.property-sidebar {
  background: #111;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #F0D182;
  height: fit-content;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  background: #000;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #F0D182;
}

.feature-item i {
  color: #F0D182;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-item .value {
  color: #F0D182;
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-item .label {
  color: #ccc;
  font-size: 0.9rem;
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #F0D182;
  border: 2px solid #F0D182;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.back-btn:hover {
  background: rgba(240, 209, 130, 0.1);
  transform: translateY(-2px);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

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

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.image-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #F0D182;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-close:hover {
  transform: scale(1.2);
}

.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(240, 209, 130, 0.2);
  border: 2px solid #F0D182;
  color: #F0D182;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.image-modal-nav:hover {
  background: rgba(240, 209, 130, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.image-modal-prev {
  left: 2rem;
}

.image-modal-next {
  right: 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .image-modal-nav {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .image-modal-prev {
    left: 1rem;
  }

  .image-modal-next {
    right: 1rem;
  }

  .image-modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  /* Reduce section padding for mobile */
  section {
    padding: 3rem 0 2rem;
  }
  
  .services, .about, .contact {
    padding: 3rem 0;
  }
  
  .hero {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .nav-container {
    justify-content: space-between;
    position: relative;
    align-items: center;
  }
  
  .mobile-phone {
    display: none;
    color: #F0D182;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .mobile-phone:hover {
    color: #fff;
  }
  
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .menu-toggle {
    display: block;
    order: 3;
    margin-left: auto;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  
  .nav-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease forwards;
  }
  
  .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
  
  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .contact-info {
    display: none;
  }
  
  .language-selector {
    order: 2;
    margin-right: 1rem;
  }
  
  .mobile-phone {
    display: block;
    order: 1;
  }
  
  .logo img {
    height: 80px;
  }
  
  .hero h1 { font-size: 2.5rem; }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .service-card {
    padding: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .service-card .icon-container {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }
  
  .service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .service-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .about-content, .contact-content { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  
  .about-image {
    height: 250px;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item {
    padding: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .contact-items-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-items-list {
    gap: 1.25rem;
  }
  
  .contact-item {
    gap: 0.75rem;
  }
  
  .contact-item i {
    font-size: 1.3rem;
    width: 20px;
  }
  
  .contact-content {
    gap: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .form-group input, .form-group textarea {
    padding: 1rem;
  }
  
  .property-card { flex: 0 0 280px; }
  .carousel-track { gap: 1rem; padding: 1rem; }
  .carousel-controls { margin: 0.5rem 1rem 0; }
  
  .property-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .property-hero-overlay h1 {
    font-size: 2rem;
  }
  
  .property-hero-overlay .price {
    font-size: 1.5rem;
  }
  
  /* Reduce footer padding */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* Smooth scrolling + brand scrollbar */
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #F0D182; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #F0D182; }
